views:

125

answers:

2

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)

+3  A: 

you can try codeproject Script SQL Server 2005 diagrams to a file

volody
+2  A: 

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.

Garett