I'm trying to change the protection level on sde.DEFAULT version for a branch versioning, but I get the error:
Error 160228: The user does not have permission to execute the operation.
This makes sense because there is no user sde in the geodatabase. It was created as a dbo schema database.
The traditional versioning default is dbo.DEFAULT and changing the permissions on this still works.
Should I change the owner of the Default branch version to dbo? Will it break the geodatabase?
update dbo.sde_branches set owner = 'dbo' where name= 'DEFAULT'
Does the branch version expect an SDE-owned schema?