在线咨询
QQ咨询
服务热线
服务热线:13125520620
TOP

【T-SQL】清空所有表记录的存储过程-数据库

发布时间:2011-11-12 浏览:5040

天天用,就贴出来吧

use 你要清空的库
go
declare @tbname varchar(250)
declare #tb cursor for select name from sysobjects where objectproperty(id,'IsUserTable')=1
open #tb
fetch next from #tb into @tbname
while @@fetch_status=0
begin
  exec('delete from ['+@tbname+']')
  fetch next from #tb into @tbname
end
close #tb
deallocate #tb

TAG
软件定制,软件开发,瀚森HANSEN,辽宁,沈阳,抚顺
0
该内容对我有帮助