所有的鸟儿他们都知道, 他们的巢应该筑在什么地方, 鸟儿知道自己该在什么地方筑巢, 那就意味着他们了解他们自己的使命。 我们身为万物之灵的人类, 怎么会不知道,连鸟儿都知道的道理呢?
sql server 统计每张表所占用的空间.sql
sql server 统计每张表所占用的空间.sql

sql server 统计每张表所占用的空间.sql

 declare tables cursor for select name from sysobjects where xtype = ‘U’;

declare @table nvarchar(255);
open tables 
fetch next FROM tables into @table
while @@fetch_status = 0
begin
exec sp_spaceused  @table;
fetch next FROM tables into @table
end 
 
close tables;
DEALLOCATE tables;

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注