1. 程式人生 > >將sql Server 的table的列 ,由非自增長改為自增長

將sql Server 的table的列 ,由非自增長改為自增長

ans rop nvarchar test tablockx log tab blog lock

轉載:http://www.thinksaas.cn/topics/0/423/423869.html

Demo

/**************** 準備環境********************/

--判斷是否存在test表
if object_id(Ntest,NU) is not null
drop table test

--創建test表
create table test
(
id int not null,
name varchar(20) not null
)

--插入臨時數據
insert into test values (1,成龍)
insert into test values (
3,章子怡) insert into test values (4,劉若英) insert into test values (8,王菲) select * from test /**************** 實現更改自動增長列********************/ begin transaction create table test_tmp ( id int not null identity(1,1), name varchar(20) not null ) go set identity_insert test_tmp on go if exists(select
* from test) exec( insert into test_tmp(id, name ) select id, name from test with(holdlock tablockx)) go set identity_insert test_tmp off go drop table test go exec sp_rename Ntest_tmp ,Ntest , OBJECT go commit GO /****************驗證結果*****************/ insert into test values (張曼) select
* from test

實例:

/**************** 實現更改自動增長列********************/

begin transaction

create table test_tmp
(
UserGradeID int not null identity(1,1),
UserGrade nvarchar(8) not null,
[Status] int not null,
Remark nvarchar(128) ,
adduser nvarchar(32) ,
upduser nvarchar(32) ,
addtime datetime2(7) ,
updtime datetime2(7)  
)
go

set identity_insert test_tmp on
go

if exists(select * from m_usergrade)


exec( insert into test_tmp(UserGradeID,UserGrade,[Status],Remark,adduser,upduser,addtime,updtime ) 
select UserGradeID,UserGrade,[Status],Remark,adduser,upduser,addtime,updtime from m_usergrade with(holdlock tablockx))
go

set identity_insert test_tmp off
go

drop table m_usergrade
go

exec sp_rename Ntest_tmp ,Nm_usergrade , OBJECT
go

commit

GO

將sql Server 的table的列 ,由非自增長改為自增長