How can I dump my MS SQL Server Database Schema to a human readable & printable format?

Posted by Kyle West on Stack Overflow See other posts from Stack Overflow or by Kyle West
Published on 2010-06-10T01:22:43Z Indexed on 2010/06/10 1:32 UTC
Read the original article Hit count: 363

Filed under:

I want to generate something like the following:

LineItems

  • Id
  • ItemId
  • OrderId
  • Price

Orders

  • Id
  • CustomerId
  • DateCreated

Customers

  • Id
  • FirstName
  • LastName
  • Email

I don't need all the relationships, the diagram that will never print correctly, the metadata, anything. Just a list of the tables and their columns in a simple text format.

Has anyone done this before? Is there a simple solution?

Thanks,

Kyle

© Stack Overflow or respective owner

Related posts about sql-server