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

Making a MS SQL Database Offline

How is Deadlock Different From a Blocking Situation in SQL Server ...

How to Learn MS SQL Server Version

Getting List of All Stored Procedures in Database in MS SQL

Disable All Triggers in MS SQL Server Table