博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SET IDENTITY_INSERT 和 DBCC CHECKIDENT
阅读量:5302 次
发布时间:2019-06-14

本文共 1020 字,大约阅读时间需要 3 分钟。

Allows explicit values to be inserted into the identity column of a table.

 

Remarks

 At any time, only one table in a session can have the IDENTITY_INSERT property set to ON. If a table already has this property set to ON, and a SET IDENTITY_INSERT ON statement is issued for another table, SQL Server returns an error message that states SET IDENTITY_INSERT is already ON and reports the table it is set ON for.

If the value inserted is larger than the current identity value for the table, SQL Server automatically uses the new inserted value as the current identity value.

The setting of SET IDENTITY_INSERT is set at execute or run time and not at parse time.  

 

DBCC CHECKIDENT (Transact-SQL)

Checks the current identity value for the specified table in SQL Server 2017 and, if it is needed, changes the identity value.

You can also use DBCC CHECKIDENT to manually set a new current identity value for the identity column.

可以使用这个功能进行reseed,也可以用来检查current identify value

 

转载于:https://www.cnblogs.com/chucklu/p/9802704.html

你可能感兴趣的文章
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
eclipse的调试方法的简单介绍
查看>>
加固linux
查看>>
IPSP问题
查看>>
(转)Java中的String为什么是不可变的? -- String源码分析
查看>>
HNU 10362 A+B for Input-Output Practice (II)
查看>>
十. 图形界面(GUI)设计9.列表和组合框
查看>>
10.17动手动脑
查看>>
js index of()用法
查看>>
WPF中Image显示本地图片
查看>>
哈希表等概率情况下查找成功和查找不成功的平均查找长度的计算
查看>>
Windows Phone 7你不知道的8件事
查看>>
脚本删除文件下的文件
查看>>
实用拜占庭容错算法PBFT
查看>>
java b组 小计算器,简单计算器..
查看>>