当前位置: 数据库>sqlserver
清空数据库所有表中数据的sql语句
来源: 互联网 发布时间:2014-08-29
本文导语: 本文介绍三种清空方法,数据库为MS SQL SERVER。 方法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...
本文介绍三种清空方法,数据库为MS SQL SERVER。
方法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)
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
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 ?"
可以一次清空所有表,不可以加过滤条件。
就是这些了,至于哪种方法好用,试了才知道哦。