Get data type of column
am 17.08.2005 15:53:24 von MikeHow do I get a textual description of the data type of a SQL Server table
column?
(Returned to ASP preferably)
How do I get a textual description of the data type of a SQL Server table
column?
(Returned to ASP preferably)
SELECT data_type
FROM information_schema.columns
WHERE table_schema = 'dbo'
AND table_name = 'table_name'
AND column_name = 'col' ;
--
David Portas
SQL Server MVP
--
Mike wrote:
> How do I get a textual description of the data type of a SQL Server
> table column?
>
> (Returned to ASP preferably)
It depends on if you want the T-SQL datatype, or the vbscript datatype, or
the jscript datatype if you are using jscript.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Hi,
Execute the system procedure
sp_columns
Thanks
Hari
SQL Server MVP
"Mike"
news:OaxhvLzoFHA.3828@TK2MSFTNGP12.phx.gbl...
> How do I get a textual description of the data type of a SQL Server table
> column?
>
> (Returned to ASP preferably)
>