用于从列添加和删除自动增量属性的脚本
对于我正在处理的 SQL 脚本,我需要以编程方式删除现有表中列的标识、标识种子和标识增量,然后将它们添加回脚本末尾的表中。有人有关于如何执行此操作的参考或示例吗?
For a sql script I'm working on, I need to programmatically remove the identity, identity seed, and identity increment for a column in an existing table, then add them back to the table at the end of the script. Does anyone have a reference or an example on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该这样做:
有关更多详细信息,请参阅 MSDN。
You should do this:
For more details look in the MSDN.
是的,您只需执行以下操作:
然后返回:
这将允许您在身份列中输入手动数据。
http://msdn.microsoft.com/en-us/library/ms188059.aspx
Yes, you just do this:
And then back on:
This will allow you to enter manual data in the identity column.
http://msdn.microsoft.com/en-us/library/ms188059.aspx