Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
xpandre
Posting Yak Master
212 Posts |
Posted - 2002-05-03 : 10:38:17
|
| hi,Is there any way of getting list of all the input parameters for a stored proc?(as we get in the object browser in query analyzer)tahnxsam |
|
|
YellowBug
Aged Yak Warrior
616 Posts |
Posted - 2002-05-03 : 10:54:49
|
| sp_help 'up_myproc'ORselect * from INFORMATION_SCHEMA.PARAMETERS ORselect O.name, C.*from sysobjects O INNER JOIN syscolumns C ON O.id = C.idwhere O.type = 'P' |
 |
|
|
xpandre
Posting Yak Master
212 Posts |
Posted - 2002-05-03 : 11:16:53
|
| thanx a lot!!:D |
 |
|
|
MichaelP
Jedi Yak
2489 Posts |
Posted - 2002-05-03 : 13:45:45
|
| Like I posted on your other postsp_helptext ProcNamemight help you as well.Michael |
 |
|
|
|
|
|