I've looked at the threads in this forum and have not found what I'm looking for.
I would like to create a proc that returns the following information about a single stored procedure:
The column name of all the columns inputs
The column data type
The column Lenght
The resultset would look something like:
I've been messing around in the "sys" tables but I just don't know them very well so any help would be much appreciated.
Thanks
Rich
I would like to create a proc that returns the following information about a single stored procedure:
The column name of all the columns inputs
The column data type
The column Lenght
The resultset would look something like:
Code:
ColumnName DataType Length
---------------- ----------- ----------
ID int 4
FKID int 4
Name varchar 30
LastUpdate datetime 8
Thanks
Rich