您的位置:首页 > 数据库

SQL Server查看表空间占用情况

2013-10-11 14:53 141 查看
查看数据库中各表的占用空间情况:
 

create table tablesize (name varchar(50),rows int,reserved varchar(50),
data varchar(50),index_size varchar(50),unused varchar(50))
insert into tablesize (name,rows,reserved,
data,index_size,unused) exec sp_msforeachTable @Command1="sp_spaceused '?'"

update tablesize set data=replace(data,'KB','')

select *,convert(int,data) as a from tablesize order by A desc

drop table tablesize


来源:http://www.cnblogs.com/GarfieldTom/archive/2012/01/13/2322070.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: