使用sysobjects可以快速查看数据库中表、视图、存储过程、触发器、约束等的信息。
大牛文章:http://www.cnblogs.com/atree/p/SQL-Server-sysobjects.html
如,查询所有的表: select * from sysobjects where type='U'
查询所有的触发器:select * from sysobjects where type='TR'
查询所有的存储过程:select * from sysobjects where type='P'
......
这样就很容易知道在某一个数据库中有多少张表了.
查看sql语句的执行时间,如下: