在 SQL Server 2000 中以编程方式重命名表 - sp_rename 是唯一的解决方案吗?
最近,我必须在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
sp_rename 是执行此操作的正确方法。
sp_rename is the correct way to do it.
呀
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 "
也许不是唯一的:我想你总是可以玩弄主数据库并更新其中的表名 - 但这是非常不推荐的。
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.
有一个解决方案可以让您同时使用旧版本和新版本的表。 如果您的数据是通过客户端界面复制和/或访问的(这意味着旧版本的客户端界面仍将使用旧表名称),这一点尤其重要:
”修改表上的约束(包括 FK) ALTER TABLE
”命令不要更改表名称或
字段名称,但创建一个视图,例如
如:
选择 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):
ALTER TABLE
" commandDo 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.