Dump database structure

Posted on: November 8, 2011 Posted by: JJ Comments: 0

Dump database structure

How do you get a full database structure from Microsoft SQL Server?
[sql]
select * from INFORMATION_SCHEMA.COLUMNS
[/sql]