
Carlosdl
21920 pts. |
Are you talking about the datatypes of the stored procedure’s parameters ?

TlogP
15 pts. |
I need to know what datatype i.e. char, varchar, text, nchar…. the SP is passing to the database table. I am able to view this in QA but I have about a 1000 db i need to check on. I wanted to write something like what i posted to do this. what i posted returns the datatype or metadata for a table.
thanks for your help.

mrdenny
41270 pts. |
The datatypes that the stored procedure is passing to the table will be what ever datatypes the table is setup for. You can’t exactly stuff a varchar value into an INT column.