亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

sqlserver通用的刪除服務(wù)器上的所有相同后綴的臨時表

 更新時間:2012年05月27日 23:08:37   作者:  
因為項目需要,必須使用大量臨時表,因此編寫批量刪除臨時表的通用語句
復(fù)制代碼 代碼如下:

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庫會使系統(tǒng)的負載加大。

相關(guān)文章

最新評論