在 SQL Server 2000 中以编程方式重命名表 - sp_rename 是唯一的解决方案吗?

发布于 2024-07-07 07:01:11 字数 168 浏览 4 评论 0原文

最近,我必须在 SQL Server 2000 中重命名一个表(以及一个列和 FK/PK 约束),而不会丢失数据。 似乎没有明显的 DDL T-SQL 语句来执行此操作,因此我使用 sp_rename 直接修改对象名称。

这是解决问题的唯一方法吗? (除了首先给表指定正确的名称之外 - 哦!)

I recently had to rename a table (and a column and FK/PK contraints) in SQL Server 2000 without losing an data. There did not seem to be an obvious DDL T-SQL statements for performing this action, so I used sp_rename to directly fiddle with object names.

Was this the only solution to the problem? (other, than give the table the correct name in the first place - doh!)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

情泪▽动烟 2024-07-14 07:01:12

sp_rename 是执行此操作的正确方法。

EXEC sp_rename 'Old_TableName', 'New_TableName'

sp_rename is the correct way to do it.

EXEC sp_rename 'Old_TableName', 'New_TableName'
淡紫姑娘! 2024-07-14 07:01:12


EXEC sp_rename '旧表名', '新表名'
工作正常,但有任何关键词吗
“将表旧名称更改为新名称”

Ya
EXEC sp_rename 'Old_TableName', 'New_TableName'
work fine but are any key word like
"alter tabel old_name to new_name "

贪恋 2024-07-14 07:01:12

也许不是唯一的:我想你总是可以玩弄主数据库并更新其中的表名 - 但这是非常不推荐的。

Maybe not the only: I guess you could always toy with the master database and update the table name there - but this is highly unrecommendable.

新人笑 2024-07-14 07:01:12

有一个解决方案可以让您同时使用旧版本和新版本的表。 如果您的数据是通过客户端界面复制和/或访问的(这意味着旧版本的客户端界面仍将使用旧表名称),这一点尤其重要:

  1. 通过“”修改表上的约束(包括 FK) ALTER TABLE”命令
  2. 不要更改表名称或
    字段名称,但创建一个视图,例如
    如:

    选择 oldTable.oldField1 作为 newField1, ...

    将其另存为 newTable(如果需要,将其分发到不同的服务器上)


请注意,您不能通过这种方式修改您的 PK。

There is a solution that can let you work concurrently with both old and new versions of the table. This is particularly important if your data is replicated and/or is accessed through client interface (meaning old versions of the client interface will still work with the old table name):

  1. Modify the constraints (including FKs) on your table through "ALTER TABLE" command
  2. Do not change table name or
    field name but create a view such
    as:

    SELECT oldTable.oldField1 as newField1, ...

    save it as newTable (and, if requested, distribute it on your different servers)


Note that you cannot modify your PK this way.

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