TSQL > To view user tables
Created On: 1/14/2004 10:55:00 PM
To view the tables in a database type any of the following:exec sp_help;ORselect * from sysobjects where type= 'U'