查询数据库中所有用户表或表的个数的方法
use dbname
select * from sysobjects where type = 'U'
系统表的个数
select count(*) from sysobjects where type = 'S'
存储过程:type = 'P'
视图: type = 'V'
查询数据库中所有用户表或表的个数的方法
use dbname
select * from sysobjects where type = 'U'
系统表的个数
select count(*) from sysobjects where type = 'S'
存储过程:type = 'P'
视图: type = 'V'