SQL查询数据库中每张表的记录数!

来源:互联网 发布:windows 桌面更新 编辑:程序博客网 时间:2024/06/05 21:00
declare   @tbName     nvarchar(500)
declare   @ct      int   
declare   @csql   nvarchar(500)   
declare   #tb   cursor   for  SELECT OBJECT_NAME (id) As TableName FROM sysobjects WHERE xtype = 'U' AND OBJECTPROPERTY (id, 'IsMSShipped') = 0
open   #tb 
 fetch   next   from   #tb   into   @tbName
 while   @@fetch_status=0 
 begin  
  set @csql = N'Select @ct= Count(*)  From ' + @tbName
  Exec dbo.sp_executesql  @csql,N'@ct   int   output',@ct   output 
  Print @tbName + '---' + Cast(@ct  As  nvarchar(500))
 fetch   next   from   #tb   into   @tbName
 end     
close   #tb 
deallocate   #tb
 
原创粉丝点击