A comparison of geodatabase owners in SQL Server

Geodatabases stored in Microsoft SQL Server can be owned by a user named sde or a user who is dbo in the database.

The sde user is a database or Windows-authenticated user. The sde user must be granted permissions that allow the user to do administrative tasks in the geodatabase.

The dbo user is any user in SQL Server who is a member of the sysadmin fixed server role. For example, sa is a sysadmin and, therefore, a dbo user. This user automatically has the permissions needed to do administrative tasks in the geodatabase.

You choose which user owns the geodatabase when you create it by choosing either a dbo or sde schema geodatabase.

If the system tables are stored in the schema of the sde user, the geodatabase is referred to as an sde-schema geodatabase. If the system tables are stored in the schema of a dbo user, the geodatabase is referred to as a dbo-schema geodatabase.

NoteNote:

Any user who owns data, including geodatabase system tables, must have a schema with the same name as the user name.

There is no difference in the performance or functionality between the two types of geodatabase schemas. Each has benefits and drawbacks. Choose the user best suited to your system.

The following is a comparison of the two types of schemas:

Related Topics


8/19/2013