vote up 0 vote down star

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?

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

flag

4 Answers

vote up 0 vote down

You can always inspect the INFORMATION_SCHEMA views to find all the interesting information about tables and their columns.

It's not called "describe" per se - but this query will show you lots of information:

select * from Information_schema.Columns
where table_name = '(your table here)'

Marc

link|flag
vote up 1 vote down

In Management Studio,

  1. Go to the Tables view for your database
  2. select all tables (on the right hand side list view)
  3. right click
  4. Script table As -> Create To
  5. File or Clipboard

This will produce a script file containing all of the selected file schema definitions.

link|flag
vote up 0 vote down

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

link|flag
vote up 3 vote down

try:

sp_help <table_name>
link|flag
I use this daily, but you can drop the EXEC – banjollity Feb 19 at 19:53
No fair! You edited it... – banjollity Feb 21 at 17:21

Your Answer

Get an OpenID
or

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