使用 DTS 传输表具有多个所有者的数据库架构
我有一个 SQL 2005 数据库架构,我想将其复制到 SQL 2000 服务器。 它包含具有多个所有者的表。 当我尝试创建 DTS 包来传输架构时,我遇到冲突,因为某些表具有相同的名称(但所有者不同)。 看起来它正在尝试使所有表都归 dbo 所有。
有没有办法保留目标服务器上的所有权?
I have a database schema in SQL 2005 that I want to copy to a SQL 2000 server. It contains tables that have multiple owners. When I try to create a DTS package to transfer the schema I get conflicts because some of the tables have the same name (but different owners). It looks like it is trying to make all the tables to be owned by dbo.
Is there a way to preserve the ownership on the destination server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎没有办法通过 DTS 来做到这一点,所以我最终编写了数据库脚本并从该脚本重新创建它。
It seems like there is no way to do this via DTS so I ended up scripting the database and recreating it from that script.