Printing Table's structure/schema - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T17:50:36Z http://stackoverflow.com/feeds/question/549799 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/549799/printing-tables-structure-schema 0 Printing Table's structure/schema Malfist 2009-02-14T21:04:23Z 2009-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#549811 3 Answer by rwarren for Printing Table's structure/schema rwarren 2009-02-14T21:12:26Z 2009-02-21T14:01:36Z <p>try: </p> <pre><code>sp_help &lt;table_name&gt; </code></pre> http://stackoverflow.com/questions/549799/printing-tables-structure-schema/549815#549815 0 Answer by Alex Reitbort for Printing Table's structure/schema Alex Reitbort 2009-02-14T21:14:09Z 2009-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#549818 1 Answer by Ash for Printing Table's structure/schema Ash 2009-02-14T21:16:25Z 2009-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#551202 0 Answer by marc_s for Printing Table's structure/schema marc_s 2009-02-15T16:56:42Z 2009-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>