我是靠谱客的博主 开放野狼,最近开发中收集的这篇文章主要介绍sqlserver通用的删除服务器上的所有相同后缀的临时表,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

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通用的删除服务器上的所有相同后缀的临时表的全部内容,希望文章能够帮你解决sqlserver通用的删除服务器上的所有相同后缀的临时表所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(135)

评论列表共有 0 条评论

立即
投稿
返回
顶部