sql List all tables within a database

USE slickcms
SELECT * FROM sys.Tables

/*List user tables:*/
SELECT * FROM sys.Tables Where is_ms_shipped = 0 Order By name Asc
Lists all tables within a specified (USE) database.

Updated: Wednesday 25th May 2011, 13:04am

There are 0 comments

Leave a comment of your own

Comments are currently closed.