SQL Server Aggregator

TSQL methods to display the owner of schema in a database.

You can use 2 methods to get information about owner of a particular schema or set of schema(s) within the database. Using INFORMATION_SCHEMA views method (which I prefer most of the times): USE <DBName> GO SELECT * FROM INFORMATION_SCHEMA.SCHEMATA Read More...
Published Wednesday, August 15, 2007 7:23 PM by SSQA.net
Anonymous comments are disabled