Select All User Tables

Posted: October 22, 2008 in SQL Server 2005

To get a list of all the user tables in a database, open a new query window and execute the following line of code:

SELECT *
FROM   [Sys].[Tables];

Leave a comment