Collections:
"ALTER AUTHORIZATION" - Changing the Ownership of a Schema in SQL Server
How To Change the Ownership of a Schema in SQL Server?
✍: FYIcenter.com
If you want to change the owner of a schema, you can use the "ALTER AUTHORIZATION" statement using the following syntax:
ALTER AUTHORIZATION ON SCHEMA::schema_name TO user_name
The following tutorial example shows you how to change ownership of schema "fyi" to "fyi_user":
-- Login with "sa" USE FyiCenterData; GO ALTER AUTHORIZATION ON SCHEMA::fyi TO fyi_user 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 Fyi_User guest guest ...
⇒ Accessing a Schema Not Owned by You in SQL Server
⇐ Who Is the Owner of a Schema in SQL Server
2016-10-22, 2623🔥, 0💬
Popular Posts:
How To Change the Password for Your Own User Account in MySQL? If you want to change the password of...
Why I Can Not Enter 0.001 Second in DATETIME values in SQL Server Transact-SQL? If you enter millise...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...