Comparing Database Diagrams
SeanEnnis
Posts: 3
Is there a way to compare Database Diagrams yet?
I've found some discussion that Red Gate was working on it a couple years ago, but nothing recently.
I've found some discussion that Red Gate was working on it a couple years ago, but nothing recently.
Comments
SQL Compare does not have this feature.
If this is a feature you would like to see added to SQL Compare, I recommend that create a post in the User Voice forum for SQL Compare using this LINK.
The more votes the request receives from other SQL Compare users it receives, better the chances you will see it in a future version of the product.
Many Thanks
Eddie
Senior Product Support Engineer
Redgate Software Ltd
Email: support@red-gate.com
For the next guy, while we wait for it to make it to the top of the pile, here's what I did manually
UPDATE MyDB.dbo.sysdiagrams
SET definition = (
SELECT definition
from MyOtherDB.dbo.sysdiagrams
WHERE name = MyDB')
WHERE name = 'MyDB'
(that works on the same server - different servers may be more challenging)