System Views and Catalog views

SP_TABLES

EXEC sp_tables @table_type = “‘TABLE’”;

Image

 

Image

 

sysobjects

SELECT * FROM sysobjects
WHERE xtype = ‘U’;

Image

Sys.tables

SELECT * FROM sys.tables;

Image

Tags: ,

Post a Comment