您的位置:首页 > 数据库

列出当前数据库中所有表的大小的SQL语句

2007-01-30 20:49 411 查看
select object_name(id),rowcnt from sysindexes where indid<2 and objectproperty(id,'isusertable')=1
order by 2 desc 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  数据库 sql object