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

8 Answers

up vote 42 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
Please note that this will also include VIEWS, not only tables – Nathan Koop Apr 23 at 15:02
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 sobjects.name
FROM sysobjects sobjects
WHERE sobjects.xtype = 'U'
link|improve this answer
feedback
SELECT name 
FROM sysobjects 
WHERE xtype='U' 
ORDER BY name;

(SQL Server 2000 standard; still supported in SQL Server 2005.)

link|improve this answer
feedback
select * from sys.tables;

OR

SELECT * FROM INFORMATION_SCHEMA.TABLES 

OR

SELECT * FROM sysobjects WHERE 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.