Link to home
Start Free TrialLog in
Avatar of Agent909
Agent909

asked on

How to print table definition in SQL Server Management Studio

Is there a way to print a table definition in SQL Server Management Studio?  I am using SQLExpress 2008.  I can print the tables in my database by going to DatabaseDiagrams, but it does not give me the type of the field or the length.

Thanks
Avatar of Deepak Lakkad
Deepak Lakkad
Flag of India image

Hi

You can do it in following manner

- Open Table in Modify Mode
- Select All Columns
- Click Edit > Copy
- Paste the Content to Ms Word or Other Editor
- Take print of the document


Deepak Lakkad


ASKER CERTIFIED SOLUTION
Avatar of joriszwaenepoel
joriszwaenepoel
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Agent909
Agent909

ASKER

Thank you!!