溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Sqlserver查詢出所有表的大小使用情況

發(fā)布時間:2020-08-09 06:08:12 來源:ITPUB博客 閱讀:372 作者:ywxj_001 欄目:關(guān)系型數(shù)據(jù)庫
第一種方法:
先查詢出源表數(shù)據(jù):
select 'insert into @tmp exec sp_spaceused '+name From sys.tables with(nolock)  order by create_date desc;

創(chuàng)建臨時表并把查詢出來的源表數(shù)據(jù)insert進入臨時表,再查詢出來最后臨時表里面的數(shù)據(jù):
declare @tmp table(tbname varchar(255),tbrows int,reserved varchar(255),datatb varchar(255),index_size varchar(255),unused varchar(255))
insert into @tmp exec sp_spaceused table1
insert into @tmp exec sp_spaceused table2
insert into @tmp exec sp_spaceused table3
insert into @tmp exec sp_spaceused table4
insert into @tmp exec sp_spaceused table5
insert into @tmp exec sp_spaceused table6
insert into @tmp exec sp_spaceused table7
insert into @tmp exec sp_spaceused table8
insert into @tmp exec sp_spaceused table9
insert into @tmp exec sp_spaceused table10
select * from @tmp order by cast(replace(reserved,' KB','') as bigint) desc

得出最后想要的數(shù)據(jù)結(jié)果。

第二種方法:
select 
         tb.name as tbname
         ,ps.reserved_page_count * 8 as KB
         ,ps.row_count
From 
         sys.dm_db_partition_stats ps with(nolock) 
         ,sys.tables tb with(nolock)
where 
         ps.object_id=tb.object_id
         and tb.create_date >= '2017-10-23 21:44:15.010'
order by 
         ps.reserved_page_count desc







向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI