日期:2012-06-27 04:58:00 来源:本站整理
sqlserver通用的删除服务器上的全部相同后缀的暂时表[MSSQL防范]
本文“sqlserver通用的删除服务器上的全部相同后缀的暂时表[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
复制代码 代码以下:
use tempdb
if object_id('tempdb..#table') is not null drop table tempdb..#table
select name into tempdb..#table
from (select * from sysobjects where xtype='U') a where
a.name like '%test_select'
declare @table varchar(100),@count int
select @count=count(name) from tempdb..#table
while(@count>0)
begin
select top 1 @table=name from tempdb..#table
exec('
if object_id('''+@table+''') is not null drop table '+@table+'
delete from tempdb..#table where name='''+@table+'''
')
set @count=@count-1
end
drop table tempdb..#table
倡议:尽大概不要大量利用暂时表,因为利用tempdb库会使系统的负载加大.
以上是“sqlserver通用的删除服务器上的全部相同后缀的暂时表[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论