Using Database entries to dynamically create a visio diagram - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T13:21:47Z http://stackoverflow.com/feeds/question/168831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/168831/using-database-entries-to-dynamically-create-a-visio-diagram 2 Using Database entries to dynamically create a visio diagram Kolten 2008-10-03T20:47:46Z 2008-10-10T18:01:36Z <p>Is this possible? </p> <p>We have a Configuration Management Database that stores information such as our servers, what datacentre they're stored in, applications that reside on them, as well as interfaces that send data from one application to another.</p> <p>We would like to use Visio to connect to our SQL 2005 database, and automatically generate a flow diagram that details these dependancies and relationships.</p> <p>So again - is this possible? If so, does anyone know of some documentation that details how to do this?</p> http://stackoverflow.com/questions/168831/using-database-entries-to-dynamically-create-a-visio-diagram/168851#168851 3 Answer by Vijesh VP for Using Database entries to dynamically create a visio diagram Vijesh VP 2008-10-03T20:52:14Z 2008-10-03T20:52:14Z <p>Is <strong><a href="http://msdn.microsoft.com/en-us/library/bb267248.aspx" rel="nofollow">this</a></strong> what you are looking out for?</p> http://stackoverflow.com/questions/168831/using-database-entries-to-dynamically-create-a-visio-diagram/192475#192475 0 Answer by Kolten for Using Database entries to dynamically create a visio diagram Kolten 2008-10-10T18:01:36Z 2008-10-10T18:01:36Z <p>Ok, so I've been looking, but I can't find out how to accurately convey a representation of my data. Perhaps a quick break-down of our Configuration Management Database may help:</p> <pre><code>Application -&gt; stored in -&gt; datacenter -&gt; stored in -&gt; server name -&gt; is support by -&gt; employee name -&gt; feeds data to -&gt; application (or interface) -&gt; pulls data from -&gt; application (or interface) </code></pre> <p>basically, these types of relationships exist in the database undercolumns like "originalconfigitemid" and "destinationitemid" and "relationshiptypeid" etc...</p> <p>It's a very basic database with these types of relationships.</p> <p>How can I accurately represent the data? I've looked at reverse engineering, pivot tables, etc. but I can't represent the data appropriately. </p> <p>Will I be required to code up some C# to get it to do what I want?<br /> What do I want the diagram to look like? I want: -Application name at top -relational 'line' to "is supported by" with employee names underneath -relation 'line' to 'is stored in' with servers underneath -relational 'line' to 'feeds data to' with interfaces or apps underneath -relational 'line' to 'pulls data from' with interfaces or apps underneath</p> <p>...a simple visio diagram that I could create for a single application in 2 minutes... but we have hundreds of apps. It would be nice to do this dynamically. What am I missing here? What is the best solution?</p>