iis服务器助手广告广告
返回顶部
首页 > 资讯 > 数据库 >Sqlserver查询出所有表的大小使用情况
  • 912
分享到

Sqlserver查询出所有表的大小使用情况

2024-04-02 19:04:59 912人浏览 安东尼
摘要

第一种方法: 先查询出源表数据: select 'insert into @tmp exec sp_spaceused '+name From sys.tables with(nolock) &n

第一种方法:
先查询出源表数据:
select 'insert into @tmp exec sp_spaceused '+name From sys.tables with(nolock)  order by create_date desc;

创建临时表并把查询出来的源表数据insert进入临时表,再查询出来最后临时表里面的数据:
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

得出最后想要的数据结果。

第二种方法:
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







您可能感兴趣的文档:

--结束END--

本文标题: Sqlserver查询出所有表的大小使用情况

本文链接: https://www.lsjlt.com/news/46938.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作