up vote 15 down vote favorite
5
share [g+] share [fb]

What is the best way to get the names of all of the tables in a specific database on SQL Server?

link|improve this question

Dup? This question comes up a lot... – DJ. Feb 13 '09 at 23:19
Quite true. However, I believe this is quite possibly the first time it was asked (unless someone can find an even older question that asks the same thing) – Ray Vega Feb 14 '09 at 0:13
feedback

7 Answers

up vote 26 down vote accepted

SQL Server 2005 or 2008:

SELECT * FROM information_schema.tables

SQL Server 2000:

SELECT * FROM sysobjects WHERE xtype='U'
link|improve this answer
feedback
SELECT sobjects.name
FROM sysobjects sobjects
WHERE sobjects.xtype = 'U'

Here is a list of other object types you can search for as well:

  • C: Check constraint
  • D: Default constraint
  • F: Foreign Key constraint
  • L: Log
  • P: Stored procedure
  • PK: Primary Key constraint
  • RF: Replication Filter stored procedure
  • S: System table
  • TR: Trigger
  • U: User table
  • UQ: Unique constraint
  • V: View
  • X: Extended stored procedure
link|improve this answer
Very nice answer. – DiGi Oct 6 '08 at 20:01
feedback
SELECT * FROM INFORMATION_SCHEMA.TABLES 

or Sys.Tables

link|improve this answer
This is the most database-agnostic way to do it :) – ranomore Oct 6 '08 at 18:01
Just a note that (as mentioned in other answers) sys.tables is only available in 2005 onwards – Rob Oct 6 '08 at 18:03
feedback
exec sp_msforeachtable 'print ''?'''
link|improve this answer
feedback

select * from sysobjects where xtype='U'

link|improve this answer
feedback

SELECT name FROM sysobjects WHERE xtype='U' ORDER BY name

(sql2000 standard, still supported in 2005)

link|improve this answer
feedback
SELECT sobjects.name
FROM sysobjects sobjects
WHERE sobjects.xtype = 'U'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.