Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Dup? This question comes up a lot... – DJ. Feb 13 '09 at 23:19

8 Answers

up vote 103 down vote accepted

SQL Server 2005 or 2008:

SELECT * FROM information_schema.tables

SQL Server 2000:

SELECT * FROM sysobjects WHERE xtype='U'
share|improve this answer
4  
Please note that this will also include VIEWS, not only tables – Nathan Koop Apr 23 '12 at 15:02
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
share|improve this answer
Very nice answer. – DiGi Oct 6 '08 at 20:01
msdn for all xtype - msdn.microsoft.com/en-us/library/ms177596.aspx – gmaran23 Mar 13 at 10:18
SELECT * FROM INFORMATION_SCHEMA.TABLES 

or Sys.Tables

share|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
exec sp_msforeachtable 'print ''?'''
share|improve this answer

select * from sysobjects where xtype='U'

share|improve this answer
SELECT sobjects.name
FROM sysobjects sobjects
WHERE sobjects.xtype = 'U'
share|improve this answer
SELECT name 
FROM sysobjects 
WHERE xtype='U' 
ORDER BY name;

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

share|improve this answer
select * from sys.tables;

OR

SELECT * FROM INFORMATION_SCHEMA.TABLES 

OR

SELECT * FROM sysobjects WHERE xtype='U'
share|improve this answer

protected by Kev Aug 31 '12 at 9:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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