I see the following in one of my database scripts:
CREATE SCHEMA [ContosoSchema] AUTHORIZATION [ContosoDeveloper]
GO
My question:
In SQL Server 2008, what does it mean to grant a user "AUTHORIZATION" over a schema?
I see the following in one of my database scripts:
CREATE SCHEMA [ContosoSchema] AUTHORIZATION [ContosoDeveloper]
GO
My question:
In SQL Server 2008, what does it mean to grant a user "AUTHORIZATION" over a schema?
It appears that AUTHORIZATION
confers ownership of a database-contained entity.