Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On the project that I am working on I have a couple of databases. Each table and each column in the database has a description set (as an extended property in SQL 2005). As a part of the documentation going to the client we need to produce a data dictionary showing all of the tables and columns along with a collection of meta data (data-type, optionality, constraints).

Is anyone using a tool to automatically create this kind of document? If so, which tools do you use? I have used Data Dictionary Creator which is awesome but it doesn't seem to do data types or optionality (unless you want to add in custom fields and fill them in yourself).

share|improve this question

6 Answers

up vote 7 down vote accepted

These are all very SQL Server 2000+ specific

Free / Open source

SQL XML Documentation

DBdoc: automated CHM documentation for a SQL Server 2000 database

SQLDoc Sharp

Commercial

Apex SQL Doc

RedGate SQL Doc

Visio (Only for diagramming ERD's)

Some of these tools are GUI driven which prohibits their usage in continuous integration style development. I hear good things abouts Red Gate and have used Apex SQL once before with success.

The thing that bugs me is when it comes to interpreting comments etc in databases. There appears to be no agreed standard for SQL documentation. I'd love a standard like the XML comments for C#/VB code whereby running a process like sandcastle across your code/comments generates useful documentation. Some of the commercial vendors have their own proprietary approach.

share|improve this answer

The open source tool Schema Spy works well. Sample output is available here. If your working with oracle databases, Oracle has a free SQL Developer Tool that generates schema documentation very similar to the output of schema spy.

share|improve this answer

From the Schema Spy documentation it supports multiple databases (see below). It also supports data types, constraints and maps relationships up to two degrees of separation.

The Samples are well worth looking at.

Schema Spy Supported Databases

IBM DB2 with the 'App' Driver,IBM DB2 with the 'Net' Driver, Firebird, HSQLDB Server, Microsoft SQL Server, MySQL, Oracle with OCI8 Driver, Oracle with Thin Driver, PostgreSQL, Sybase Server with JDBC3 Driver, Sybase Server with JDBC2 Driver, DB2 UDB Type 4 Driver

share|improve this answer

Toad Data Modeller from Quest Software does this and is quite reasonably priced.

share|improve this answer

Red Gate SQL Doc is very good. It can create a Word document or series of HTML pages that users can navigate.

share|improve this answer

If you use Firebird or InterBase, there's a tool called IBDesc that does a great job.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.