程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 查找數據庫中的空表

查找數據庫中的空表

編輯:關於SqlServer
由於在工作中經常需要檢查數據庫中的表有沒有數據,所以寫了下面的代碼,以方便檢查空表。


declare @juzi varchar(max)
declare @temp varchar(max)

set @juzi = 'select n,c from (select ''n'' n, 0 c'
DECLARE MyCursor CURSOR FOR
select 'select '''+b.name+'.'+a.name+''' n,count(*) c from  '+b.name+'.'+a.name from sys.objects a
inner join  sys.schemas b on a.schema_id=b.schema_id
where type='U'
open MyCursor

FETCH NEXT FROM MyCursor
INTO @temp
while @@fetch_status = 0
begin

    set @juzi = @juzi + ' union ' + @temp + ''
    fetch next from MyCursor into @temp
end
close MyCursor
deallocate MyCursor
set @juzi = @juzi + ') t'
select @juzi

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved