清空數據庫中一切表記載 記載ID恢復從0開端。本站提示廣大學習愛好者:(清空數據庫中一切表記載 記載ID恢復從0開端)文章只能為提供參考,不一定能成為您想要的結果。以下是清空數據庫中一切表記載 記載ID恢復從0開端正文
1.搜刮出一切表名,結構為一條SQL語句
declare @trun_name varchar(8000)
set @trun_name=''
select @trun_name=@trun_name + 'truncate table ' + [name] + ' ' from sysobjects where xtype='U' and status > 0
exec (@trun_name)
該辦法合適表不長短常多的情形,不然表數目過量,跨越字符串的長度,不克不及停止完整清算.
2.應用游標清算一切表
declare @trun_name varchar(50)
declare name_cursor cursor for
select 'truncate table ' + name from sysobjects where xtype='U' and status > 0
open name_cursor
fetch next from name_cursor into @trun_name
while @@FETCH_STATUS = 0
begin
exec (@trun_name)
print 'truncated table ' + @trun_name
fetch next from name_cursor into @trun_name
end
close name_cursor
deallocate name_cursor
這是我本身結構的,可以做為存儲進程挪用, 可以或許一次清空一切表的數據,而且還可以停止有選擇的清空表.
3.應用微軟未地下的存儲進程
exec sp_msforeachtable "truncate table ?"
該辦法可以一次清空一切表,但不克不及加過濾前提.