Collections:
Who Is the Owner of a Schema in SQL Server
Who Is the Owner of a Schema in SQL Server?
✍: FYIcenter.com
When you create a schema in a database, SQL Server will assign a owner (a database user) to this schema. If your login name is mapped to the owner of a schema at the database level, you have the full permission on all objects in this schema.
The following tutorial exercise shows you how to see who is the owner of a schema:
-- Login with "sa" USE FyiCenterData; GO SELECT s.name, u.name AS owner FROM sys.schemas s, sys.database_principals u WHERE s.principal_id = u.principal_id; GO name owner ------------------- -------------------- dbo dbo fyi dbo guest guest ...
The last query shows that schema "fyi" is owned by "dbo".
⇒ "ALTER AUTHORIZATION" - Changing the Ownership of a Schema in SQL Server
⇐ Default Schema of Your Login Session in SQL Server
2016-10-22, 2467🔥, 0💬
Popular Posts:
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
What Is the Difference Between GETDATE() and GETUTCDATE() in SQL Server Transact-SQL? The difference...
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...