SQL Server 2005 - 使用 IDENTITY 列

发布于 2024-08-09 22:32:52 字数 169 浏览 4 评论 0原文

我正在处理 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撞了怀 2024-08-16 22:32:52

如果添加标识列,所有现有记录都将根据您在新列上建立的种子值获得计算的增量值。

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.

牵强ㄟ 2024-08-16 22:32:52

首先确保您有良好的备份。

下面是一个示例:

alter table mydatabase.dbo.mytest 
add id int identity (1,1)

表将被锁定,直到完成添加 tidentity 列,因此不要在高峰时段执行此操作。一如既往,首先测试开发。

如果要将现有列更改为更难的标识。

First make sure you havea a good backup.

Here is an example:

alter table mydatabase.dbo.mytest 
add id int identity (1,1)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文