How can I transfer the particular database diagram from one SQL Server
to another? Answer:
This is the example to move the Relationships diagram
from the Northwind database into Example database.
insert into
Example..dtproperties (objectid, value, lvalue, version, property)
select
objectid, value, lvalue, version, property
from
Northwind..dtproperties
where objectid =
(select objectid from dtproperties where value = 'Relationships')