最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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)文章

最新評論

卓尼县| 读书| 安宁市| 蒙城县| 高平市| 葵青区| 平遥县| 施甸县| 塔河县| 金山区| 台州市| 凤山市| 三明市| 中宁县| 洞头县| 安康市| 文山县| 图木舒克市| 赤城县| 南溪县| 汝城县| 华蓥市| 济南市| 安丘市| 周宁县| 阿坝| 百色市| 枣强县| 广元市| 锦州市| 荆州市| 凤冈县| 家居| 舞阳县| 运城市| 洞口县| 彰武县| 内黄县| 夹江县| 区。| 麻江县|