Home Posts Topics Members FAQ
Post your question to a community of 467,917 developers. It's quick & easy.
Depending on the version of SQL Server you're working on, there's a table called sysobjects. If you're working with SQL 2005, there's a view called sys.tables So, try the following: Expand|Select|Wrap|Line Numbers select * from sys.tables select * from sysobjects -- CK
Sign in to post your reply or Sign up for a free account.