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 Use of Dedicated Admin Connection ?

What is a Control Flow Inside SSIS ?

MS SQL Getting a Random Row in a Table

Getting List of MS SQL User-Created Tables

What is the Maximum Number of Columns a Table in SQL Server ?