日期:2014-05-17 浏览次数:20964 次
use 数据库名
declare @str varchar(max)
set @str=''
select @str=@str+' truncate table '+quotename(name,'')+';'
from sysobjects where xtype='U' and category=0
--and name not in('table','user','return','order','客户信息')
--print @str
exec(@str)
use [数据库名]
go
exec sp_MSforeachtable "truncate table ?"
--删除当前数据库所有表中的数据
sp_MSforeachtable @command1='Delete from ?'
sp_MSforeachtable @command1 = "TRUNCATE TABLE ?"
declare @sql nvarchar(4000);
set @sql = ''
select @sql = @sql + 'truncate table [' + t.name + '];'
from sys.tables t
--输出语句
select @sql
exec(@sql)