[转]MSSQL 判断临时表是否存在
原文来自:http://www.cnblogs.com/szfhquan/p/4229150.html
方法一:
1 if exists (select * from tempdb.dbo.sysobjects where id = object_id(N'tempdb..#tempcitys') and type='U') 2 drop table #tempcitys
注意tempdb后面是两个. 不是一个的
方法二:
if object_id('tempdb..#tem') is not null
begin
print 'exists'
end
else
begin
print 'not exists'
end
查询 MSSQL 索引使用情况:
SELECT * FROM sys.dm_db_index_usage_stats
更多索引使用参考:https://www.jb51.net/article/248614.htm
浙公网安备 33010602011771号