清空数据库中所有表记录 记录ID恢复从0开始

前端之家收集整理的这篇文章主要介绍了清空数据库中所有表记录 记录ID恢复从0开始前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.搜索出所有表名,构造为一条sql语句
<div class="codetitle"><a style="CURSOR: pointer" data="24889" class="copybut" id="copybut24889" onclick="doCopy('code24889')"> 代码如下:

<div class="codebody" id="code24889">
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.利用游标清理所有表
<div class="codetitle"><a style="CURSOR: pointer" data="16603" class="copybut" id="copybut16603" onclick="doCopy('code16603')"> 代码如下:
<div class="codebody" id="code16603">
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.利用微软未公开的存储过程
<div class="codetitle"><a style="CURSOR: pointer" data="94577" class="copybut" id="copybut94577" onclick="doCopy('code94577')"> 代码如下:
<div class="codebody" id="code94577">
exec sp_msforeachtable "truncate table ?"

方法可以一次清空所有表,但不能加过滤条件.

原文链接:https://www.f2er.com/mssql/64075.html
清空清空记录记录记录

猜你在找的MsSQL相关文章