SQL - SSMS2005 - 如何将数据库图表复制到另一个数据库?
是否有一种简单的方法将数据库图表从一个数据库服务器复制到另一个数据库服务器?
我有一个开发服务器上的图表需要移动到生产服务器。
谢谢
(Sql server 2005、SSMS2005 Express)
Is there a simple method for copying a database diagram from one database server to another?
I have a diagram on a development server that needs to be moved to the production server.
Thanks
(Sql server 2005, SSMS2005 Express)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试 codeproject 将 SQL Server 2005 图表脚本写入文件
you can try codeproject Script SQL Server 2005 diagrams to a file
在 SQL Server 2005 中,数据库图表存储在 sysdiagrams 表中。您应该能够使用导入/导出向导将图表数据从一台服务器复制到另一台服务器。我进行了快速测试,并能够使用向导将图表从一个数据库复制到同一服务器的另一个数据库。这是在 SQL Server 2005 Standard 安装上进行测试的。
In SQL Server 2005, database diagrams are stored in the sysdiagrams table. You should be able to use the Import/Export wizard to copy the diagram data from one server to another. I ran a quick test and was able to copy a diagram from one database to another of the same server using the wizard. This was tested on a SQL Server 2005 Standard installation.