What is the best way to get the names of all of the tables in a specific database on SQL Server?
feedback
|
|
SQL Server 2005 or 2008:
SQL Server 2000:
| ||||
|
feedback
|
Here is a list of other object types you can search for as well:
| |||
|
feedback
|
or Sys.Tables | |||||
feedback
|
|
SELECT name FROM sysobjects WHERE xtype='U' ORDER BY name (sql2000 standard, still supported in 2005) | |||
|
feedback
|
| |||
|
feedback
|