码迷,mamicode.com
首页 > 数据库 > 详细

sql server新增自增列有重复值(2005 9.0.1399)

时间:2020-06-18 17:51:04      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:serve   ima   option   select   identity   prim   alt   src   图片   

测试代码
;with a as (
select 1 as id1 ,2 as id2 
union all
select id1+1,id2+1 from a
where id1<=10000000
)

select * into  test6  from a option(maxrecursion 0)

 

 前提:
sql server2005  9.0.1399
管理员权限
test6表为1000W行数据表,有id1,id2 2个 int 型字段
想要添加自增列主键:
alter table test6 add  id6 int identity(1,1) primary key
技术图片 
  技术图片

 

 

解决:高版本

或者修改重复值的数据

sql server新增自增列有重复值(2005 9.0.1399)

标签:serve   ima   option   select   identity   prim   alt   src   图片   

原文地址:https://www.cnblogs.com/gered/p/13158826.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!