Printing Table's structure/schema - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T17:50:36Zhttp://stackoverflow.com/feeds/question/549799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/549799/printing-tables-structure-schema0Printing Table's structure/schemaMalfist2009-02-14T21:04:23Z2009-02-21T14:01:36Z
<p>I have like 20 or so tables in the database RentalEase and I want to print them out (physically) so I can look at them easier. I don't care too much about what data is in them, just their structure. How can I do this?</p>
<p>It's an SQL Express server and I'm using Microsoft SQL Server Management Studio Express to manage it. I remember back when I was using MySQL and PHP I could use a DESCRIBE to print it out but I don't remember how I did it. There doesn't seem to be a DESCRIBE for SQL Server</p>
http://stackoverflow.com/questions/549799/printing-tables-structure-schema/549811#5498113Answer by rwarren for Printing Table's structure/schemarwarren2009-02-14T21:12:26Z2009-02-21T14:01:36Z<p>try: </p>
<pre><code>sp_help <table_name>
</code></pre>
http://stackoverflow.com/questions/549799/printing-tables-structure-schema/549815#5498150Answer by Alex Reitbort for Printing Table's structure/schemaAlex Reitbort2009-02-14T21:14:09Z2009-02-14T21:14:09Z<p>You can use Database Schema Diagram Design Tool. Just drop all the tables there, and you will get the diagram of you database including all keys</p>
http://stackoverflow.com/questions/549799/printing-tables-structure-schema/549818#5498181Answer by Ash for Printing Table's structure/schemaAsh2009-02-14T21:16:25Z2009-02-14T21:16:25Z<p>In Management Studio, </p>
<ol>
<li>Go to the Tables view for your
database </li>
<li>select all tables (on the
right hand side list view) </li>
<li>right click </li>
<li>Script table As -> Create To</li>
<li>File or Clipboard</li>
</ol>
<p>This will produce a script file containing all of the selected file schema definitions.</p>
http://stackoverflow.com/questions/549799/printing-tables-structure-schema/551202#5512020Answer by marc_s for Printing Table's structure/schemamarc_s2009-02-15T16:56:42Z2009-02-15T16:56:42Z<p>You can always inspect the INFORMATION_SCHEMA views to find all the interesting information about tables and their columns.</p>
<p>It's not called "describe" per se - but this query will show you lots of information:</p>
<pre><code>select * from Information_schema.Columns
where table_name = '(your table here)'
</code></pre>
<p>Marc</p>