Home > Database > Mysql Tutorial > 查看MSSQL 数据库 用户每个表 占用的空间大小

查看MSSQL 数据库 用户每个表 占用的空间大小

WBOY
Release: 2016-06-07 17:44:11
Original
1125 people have browsed it

最近做项目需要查看数据用户表的大小,包括记录条数和占用的磁盘空间数目。在网上找了很久其中查看MSSQL数据库每个表占用的空间大小 相对还可以。 不过它的2、3中方法返回的数据比较多,有些是我们不关心的数据,我在AdventureWorks2012数据上做的测试。其中

最近做项目需要查看数据用户表的大小,服务器空间,包括记录条数和占用的磁盘空间数目。在网上找了很久其中查看MSSQL数据库每个表占用的空间大小 相对还可以。

不过它的2、3中方法返回的数据比较多,香港服务器租用,有些是我们不关心的数据,我在AdventureWorks2012数据上做的测试。其中第二种方法代码如下:

View Code

(dbo.sysobjects ) ) = 1) (nameinfo varchar(50) , rowsinfo int , reserved varchar(20) , datainfo varchar(20) , index_size varchar(20) , unused varchar(20) ) ((500) o.name ) o.name o.name OPEN Info_cursor Info_cursor (dbo.sysobjects (id, N) = 1) execute sp_executesql N, N, Info_cursor Info_cursor DEALLOCATE Info_cursor sp_spaceused tablespaceinfo () desc ,香港空间

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template