如何使用新名称创建 SQL Server 存储过程或视图的重复副本?
假设我有一个存储过程 proc_MyTestProc。
我想创建一个名为 proc_MyTestProc_{timestamp} 的过程的备份副本,并在其位置创建该过程的新实例。这是我当前的方法:
- 在 proc_MyTestProc 上运行 sp_rename,附加时间戳。
- 为新版本的 proc_MyTestProc 运行新的 CREATE 脚本。
此方法的问题是它不适用于复制。原始过程保留相同的对象 ID。我想要将步骤 #2 中创建的过程复制到另一个数据库,但它具有新的对象 ID,因此无法复制。
是否有替代 SP_RENAME 的方法来创建具有新对象 ID 的对象副本?
我正在运行 SQL Server 2005。
Suppose I have a stored procedure proc_MyTestProc.
I want to create a backup copy of this proc called proc_MyTestProc_{timestamp}, and create a new instance of this proc in its place. Here is my current method:
- Run sp_rename on proc_MyTestProc, appending the timestamp.
- Run the new CREATE script for the new version of proc_MyTestProc.
The problem with this method is that it doesn't work with replication. The original procedure retains the same object ID. The procedure created in step #2 is what I want to be replicated to another DB, yet it has a new object ID, so it doesn't replicate.
Is there an alternative to SP_RENAME that creates a copy of the object with a new object ID?
I am running SQL Server 2005.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你总是可以做这样的事情......
You can always do something like this...