|
Does anyone know of an automated way of creating an ERD from an existing MS SQL 2008 Database? I've been tasked recently with supporting a third party tool and need more info on the back end. Any help is appreciated.
(comments are locked)
|
|
I use ModelRight as a modeling tool, while SSMS as pointed out by Tim will get you started. I think that you can get a 30 day trial on ModelRight, and probably any number of other modeling tools. Some others are mentioned here: http://stackoverflow.com/questions/419276/data-modeling-tool-for-sql-server
(comments are locked)
|
|
It is not a proper ERD, but you can come close using the database diagram tool available in SSMS. You can certainly use that as a starting point to tweak into a true ERD.
(comments are locked)
|
|
If you have access to visio, you can generate an erd directly from schema with that...
(comments are locked)
|
|
I use Sybase PowerDesigner or Visio.
(comments are locked)
|
|
how to do? I have an existing database in MS SQL SERVER 2008.. I want to generate an ERD from my existing database. How to do? pls help Use tools like ERstudio to reverse engineer the diagram from the database. Also You can also try this opensource DB designer http://sourceforge.net/projects/dbdesigner-fork/
Jun 07 '10 at 03:06 PM
DaniSQL
(comments are locked)
|
1 2 next page »


Thanks for all the suggestions. I'm thinking I'll try putting a python script together that dumps to xml queries on information schema views. Failing that, I'll probably try out DeZign for Databases which was mentioned in the StackOverflow question. One of the db admins here also recommends it.