Listing Metadata of MS SQL Server Internal Tables

In MS SQL Server, internal tables are created as a by-product of a user action and are often inaccessible. Data in internal tables cannot be changed. However, the metadata of the internal tables can be viewed using the following query.

SELECT * FROM Sys.Objects WHERE Type='IT'


You May Interest

What is the Difference Between Update Lock and Exclusive Lock in ...

What are the INTERSECT Operators in SQL Server ?

What is Failover Clustering in SQL Server ?

Deleting Columns From a Table with a Query in MS SQL

How to Optimize Stored Procedure in SQL Server ?