SQL Server 2005 - 使用 IDENTITY 列
我正在处理 SQL Server 2005 表。这里我需要添加一个名为“ID”的列作为“IDENTITY”列(起始值和递增值分别为 1、1)。
现在我的问题是这些表已经有数千条记录。那么您能否建议执行这项工作的最佳且最简单的方法?
非常感谢,
问候。
阿努沙。
I am working on SQL Server 2005 tables. Here I need to add a column named ‘ID’ as ‘IDENTITY’ column (With starting and incrementing values as 1, 1).
Now my problem is that these tables already have thousands of records. So could you please suggest the best and easy way to perform this job?
Many Thanks,
Regards.
Anusha.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果添加标识列,所有现有记录都将根据您在新列上建立的种子值获得计算的增量值。
If you add an identity column all the existing records will get calculated incremental values based on the seed value you establish on the new column.
首先确保您有良好的备份。
下面是一个示例:
表将被锁定,直到完成添加 tidentity 列,因此不要在高峰时段执行此操作。一如既往,首先测试开发。
如果要将现有列更改为更难的标识。
First make sure you havea a good backup.
Here is an example:
Table will be locked up until it finishes adding the tidentity columns so don;t do this during high peak hours. As always test of dev first.
If you want to change an existing column to an identity that is harder.