Collections:
"sys.objects" - Listing All Objects in a Given Schema in SQL Server
How To List All Objects in a Given Schema in SQL Server?
✍: FYIcenter.com
If you are wonder what objects are stored in a given schema as an object container, you can use view "sys.objects" to get a list of all objects in a schema. The tutorial exercise shows you how to list all objects in schema "fyi" and "dbo":
-- Login with 'sa' USE FyiCenterData; GO -- What is "fyi"? SELECT o.name, o.schema_id, o.type_desc FROM sys.objects o, sys.schemas s WHERE o.schema_id = s.schema_id AND s.name = 'fyi'; GO name schema_id type_desc ------------------------------ ---------- ------------------ test 5 USER_TABLE fyi_links 5 USER_TABLE UQ__fyi_links__4222D4EF 5 UNIQUE_CONSTRAINT DF__fyi_links__creat__4316F928 5 DEFAULT_CONSTRAINT SELECT o.name, o.schema_id, o.type_desc FROM sys.objects o, sys.schemas s WHERE o.schema_id = s.schema_id AND s.name = 'dbo'; GO name s_id type_desc ---------------------------- ---- -------------------------- Welcome 1 SQL_SCALAR_FUNCTION Age_In_Days 1 SQL_SCALAR_FUNCTION Top_Links 1 SQL_INLINE_TABLE_VALUED... Yearly_Stats 1 SQL_TABLE_VALUED_FUNCTION fyi_links_indexed 1 USER_TABLE DF__fyi_links__creat__403A8C 1 DEFAULT_CONSTRAINT fyi_links_copy 1 USER_TABLE fyi_links_dump 1 VIEW fyi_links_view 1 VIEW Show 1 SQL_STORED_PROCEDURE Hello 1 SQL_STORED_PROCEDURE QueryNotificationErrorsQueue 1 SERVICE_QUEUE EventNotificationErrorsQueue 1 SERVICE_QUEUE ServiceBrokerQueue 1 SERVICE_QUEUE DoubleX 1 SQL_SCALAR_FUNCTION ...
Looks like we have a lots of different types objects stored in schema "dbo".
⇒ Default Schema of Your Login Session in SQL Server
⇐ Transferring Tables from One Schema to Another in SQL Server
2016-10-22, 2185🔥, 0💬
Popular Posts:
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...