Is there a way to get the schema from SQL Server in tabular view?
am 03.12.2004 15:47:24 von Support
I want to get a schema of all the tables in a database for
documentation purposes, is it possible to retrieve the
column name and datatype in sql server similiar to this:
Column Data Type
username varchar(40)
human int
password varchar(40)
email varchar(80)
role varchar(40)
Re: Is there a way to get the schema from SQL Server in tabular view?
am 03.12.2004 16:21:05 von unknown
http://www.aspfaq.com/search.asp?q=schema%3A
http://www.aspfaq.com/show.asp?id=2177
Ray at work
"James Johnson" wrote in message
news:0fbb01c4d947$00883b50$a401280a@phx.gbl...
> I want to get a schema of all the tables in a database for
> documentation purposes, is it possible to retrieve the
> column name and datatype in sql server similiar to this:
>
> Column Data Type
> username varchar(40)
> human int
> password varchar(40)
> email varchar(80)
> role varchar(40)
>