Get data type of column

Get data type of column

am 17.08.2005 15:53:24 von Mike

How do I get a textual description of the data type of a SQL Server table
column?

(Returned to ASP preferably)

Re: Get data type of column

am 17.08.2005 15:55:59 von David Portas

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
--

Re: Get data type of column

am 17.08.2005 16:28:53 von reb01501

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.

Re: Get data type of column

am 17.08.2005 21:37:19 von Hari Prasad

Hi,

Execute the system procedure

sp_columns

Thanks
Hari
SQL Server MVP



"Mike" wrote in message
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)
>