SQL SERVER 自增列
declare @table_name varchar(60)
set @table_name = '';
if exists(select top 1 1 from sysobjects
where objectproperty(id, 'tablehasidentity') = 1
and upper(name) = upper(@table_name)
)
select 1
else select 0
-- or
if exists(select top 1 1 from sysobjects so
where so.xtype = 'u'
and upper(so.name) = upper(@table_name)
and exists(select top 1 1 from syscolumns sc
where sc.id = so.id
and columnproperty(sc.id, sc.name, 'isidentity') = 1
)
)
select 1
else select 0
判断table是否存在自增列(identity column),并查出自增列相关数据:
declare @table_name varchar(60)
set @table_name = '';
资料引用:
declare @table_name varchar(60)
set @table_name = 'zy_cost_list';
select so.name table_name, --表名字
sc.name iden_column_name, --自增字段名字
ident_current(so.name) curr_value, --自增字段当前值
ident_incr(so.name) incr_value, --自增字段增长值
ident_seed(so.name) seed_value --自增字段种子值
from sysobjects so
inner join syscolumns sc
on so.id = sc.id
and columnproperty(sc.id, sc.name, 'isidentity') = 1
where upper(so.name) = upper(@table_name)
dbcc checkident
检查指定表的当前标识值,如有必要,还对标识值进行更正。
语法
dbcc checkident
( 'table_name'
[ , { noreseed
| { reseed [ , new_reseed_value ] }
}
]
)
参数
'table_name'
是要对其当前标识值进行检查的表名。表名必须符合标识符规则。有关更多信息,请参见使用标识符。指定的表必须包含标识列。
noreseed
指定不应更正当前标识值。
reseed
指定应该更正当前标识值。
new_reseed_value
是在标识列中重新赋值时要使用的值。
注释
如有必要,dbcc checkident 会更正列的当前标识值。然而,如果标识列是使用 not for replication 子句(在 create table 或 alter table 语句中)创建的,则不更正当前标识值。
如果标识列上有主键或唯一键约束,无效标识信息可能会导致错误信息 2627。
对当前标识值所做的具体更正取决于参数规范。
dbcc checkident 语句 | 所做的标识更正 |
---|---|
dbcc checkident ('table_name', noreseed) | 不重置当前标识值。dbcc checkident 返回一个报表,它指明当前标识值和应有的标识值。 |
dbcc checkident ('table_name') 或 dbcc checkident ('table_name', reseed) |
如果表的当前标识值小于列中存储的最大标识值,则使用标识列中的最大值对其进行重置。 |
dbcc checkident ('table_name', reseed, new_reseed_value) | 当前值设置为 new_reseed_value。如果自创建表后没有将行插入该表,则在执行 dbcc checkident 后插入的第一行将使用 new_reseed_value 作为标识。否则,下一个插入的行将使用 new_reseed_value + 1。如果 new_reseed_value 的值小于标识列中的最大值,以后引用该表时将产生 2627 号错误信息。 |
当前标识值可以大于表中的最大值。在此情况下,dbcc checkident 并不自动重置当前标识值。若要在当前标识值大于列中的最大值时对当前标识值进行重置,请使用两种方法中的任意一种:
-
执行 dbcc checkident ('table_name', noreseed) 以确定列中的当前最大值,然后使用 dbcc checkident ('table_name', reseed, new_reseed_value) 语句将该值指定为 new_reseed_value。
- 将 new_reseed_value 置为很小值来执行 dbcc checkident ('table_name', reseed, new_reseed_value),然后运行 dbcc checkident ('table_name', reseed)。
结果集
不管是否指定任何选项(针对于包含标识列的表;下例使用 pubs 数据库的 jobs 表),dbcc checkident 返回以下结果集(值可能会有变化):
checking identity information: current identity value '14', current column value '14'. dbcc execution completed. if dbcc printed error messages, contact your system administrator.
权限
dbcc checkident 权限默认授予表所有者、sysadmin 固定服务器角色和 db_owner 固定数据库角色的成员且不可转让。
示例
a. 如有必要,重置当前标识值
下例在必要的情况下重置 jobs 表的当前标识值。
use pubs go dbcc checkident (jobs) go
b. 报告当前标识值
下例报告 jobs 表中的当前标识值;如果该标识值不正确,并不对其进行更正。
use pubs go dbcc checkident (jobs, noreseed) go
c. 强制当前标识值为 30
下例强制 jobs 表中的当前标识值为 30。
use pubs go dbcc checkident (jobs, reseed, 30) go