SQL Server 查詢資料庫中所有表資料條數

农民小工程师發表於2024-05-06

有的時間我想把資料庫中表的記錄統計一下,如果我們一個一個表的操作可以直接select count(*) from tablename就可以然後一個個相加,但是如果有上百個表有沒有更簡單的方法呢,下面我總結了一些方法有需要的朋友可參考。

如果是要得到中所有表的條數呢?我們來看幾種最常見的方式:

--方法一

程式碼如下 複製程式碼

b.name as tablename ,

c.row_count as datacount

from sys.indexes a ,

sys.objects b ,

sys.dm_db_partition_stats c

where a.[object_id] = b.[object_id]

AND b.[object_id] = c.[object_id]

AND a.index_id = c.index_id

AND a.index_id

AND b.is_ms_shipped = 0


--方法二

程式碼如下 複製程式碼

select b.name as tablename ,

a.rowcnt as datacount

from sysindexes a ,

sysobjects b

where a.id = b.id

and a.indid

and objectproperty(b.id, 'IsMSShipped') = 0


--方法三

程式碼如下 複製程式碼
if exists ( select *
from dbo.sysobjects
where id = object_id(N'[dbo].[TableSpace]')
and objectproperty(id, N'IsUserTable') = 1 )
drop table [dbo].[TableSpace]
go
create table TableSpace
(
TableName varchar(20) ,
RowsCount char(11) ,
Reserved varchar(18) ,
Data varchar(18) ,
Index_size varchar(18) ,
Unused varchar(18)
)
go
declare @sql varchar(500)
declare @TableName varchar(20)
declare mCursor cursor
for
select name from sysobjects where xtype='U'
open mCursor
fetch NEXT from mCursor into @TableName
while @@fetch_status = 0
begin
set @sql = 'insert into TableSpace '
set @sql = @sql + ' exec sp_spaceused ''' + @TableName + ''' '
exec (@sql)
fetch NEXT from mCursor into @TableName
end
close mCursor
deallocate mCursor
go
--顯示結果
select TableName,RowsCount from TableSpace


--建議使用後兩種方式,對於SQL SERVER 2005來說,三種法律時刻方法都好使,如果是其他板本,可以逐一測試一下。


方法四

--==========================================================================
-- 說明: 本指令碼用於查詢當前中所有表格的記錄條數
-- 並將結果存入tableinfo表中,不會刪除以備使用者再做處理與分析
-- 不過,最後請使用者刪除此表。
--==========================================================================

程式碼如下 複製程式碼

if exists (select * from dbo.sysobjects where id = object_id(n[dbo].[tablespace]) and objectproperty(id, nisusertable) = 1)
drop table [dbo].[tablespace]
go

create table tablespace
(
tablename varchar(20),
rowscount char(11),
reserved varchar(18),
data varchar(18),
index_size varchar(18),
unused varchar(18)
)
go

declare @sql varchar(500)
declare @tablename varchar(20)

declare cursor1 cursor
for
select name from sysobjects where xtype=u

open cursor1
fetch next from cursor1 into @tablename

while @@fetch_status = 0
begin
set @sql = insert into tablespace
set @sql = @sql + exec sp_spaceused + @tablename +
exec (@sql)
fetch next from cursor1 into @tablename
end
close cursor1
deallocate cursor1
go


--顯示結果
select * from tablespace
--order by tablename
--order by tablename asc --按表名稱,用於統計表
--order by rowscount desc --按行數量,用於檢視錶行數
--order by reserved desc, data desc --按佔用空間
--order by index_size desc, reserved desc --按索引空間檢視
go

--檢視庫的使用狀況,可以隨時執行的。
--exec sp_spaceused
--go

相關文章