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

How to Show Line Numbers in MS SQL Server ?

Generating Random Letters in MS SQL

What is Partial Cache Mode in SSIS ?

What are Indexed Views inside SQL Server ?

What are OFFLINE Datafiles with SQL Server ?