名站网址导航为大家提供关于数据库教程相关的教程网站知识。
SQL Server修改标识列具体相关方法 如自增列的批量化修改
复制具体相关代码 具体相关代码如下:,--允许对系统表进行更新 exec sp_configure 'allow updates',1 reconfigure with override GO --取消标识列标记 update sysco
复制具体相关代码 具体相关代码如下:
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' @table '''
')
set @count=@count-1
end
drop table tempdb..#table
建议:尽量不要大量使用临时表,因为使用tempdb库会使系统的负载加大。 关于数据库教程相关的教程网站知识今天我们就说到这里了,希望可以帮到大家。