在SQL Server上获得特定数据库中所有表的名称的最佳方法是什么?


当前回答

--for oracle
select tablespace_name, table_name from all_tables;

这个链接可以提供更多的信息 主题

其他回答

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

(SQL Server 2000标准;SQL Server 2005仍然支持。)

INFORMATION_SCHEMA的缺点。它还包括系统表,如dtproperties和MSpeer_…表,没有办法把它们和你自己的表区分开来。

我建议使用sys。对象(已弃用的sysobjects视图的新版本),它支持排除系统表:

select *
from sys.objects
where type = 'U'      -- User tables
and is_ms_shipped = 0 -- Exclude system tables
SELECT TABLE_NAME 
FROM INFORMATION_SCHEMA.TABLES 
WHERE TABLE_TYPE='BASE TABLE' 
ORDER BY TABLE_NAME

感谢Ray Vega,他的响应给出了数据库中的所有用户表…

Exec sp_msforeachtable 'print " ?“‘

Sp_helptext显示了底层查询,它总结为…

select * from dbo.sysobjects o 
join sys.all_objects syso on o.id =  syso.object_id  
where OBJECTPROPERTY(o.id, 'IsUserTable') = 1 
and o.category & 2 = 0 
SELECT sobjects.name
FROM sysobjects sobjects
WHERE sobjects.xtype = 'U'