重命名 MS SQL Server 2005 中的列
使用 SQL(MS SQL Server 2005 变体)重命名表列时的最佳实践是什么? 这假设列中有必须保留的数据。
What is the best practice when it comes to renaming a table column using SQL (MS SQL Server 2005 variant)? This assumes that there is data in the column that must be preserved.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用存储过程来重命名列。 以下操作会将您的列从“oldColumnName”重命名为“newColumnName”,而不影响任何数据。
显然,您必须手动更新使用旧名称的任何代码/存储过程/SQL。
You have to use a stored proc to rename a column. The following will rename your column from 'oldColumnName' to 'newColumnName' without affecting any data.
Obviously you'll have to update any code / stored procs / SQL that uses the old name manually.
我今天遇到了同样的问题,解决方案是杀死数据库上的所有进程,因为进程锁定了事务。 我执行了过程sp_rename,但问题没有解决。 所以我杀死了数据库中的进程并且进程正常工作。
I had the same problem today, and the solution was kill all processes on the database, cause the processes was locked the transactions. I was executed the procedure sp_rename, but the problem was not resolved. So i was kill the processes in the database and the proc works.