Click here to Skip to main content
15,888,454 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to get stored procedure details such as
Parameters, parameter data type, Is parameter has default value or not.
Also, i want to get stored procedure resulting column names.

Please help.
Posted

Hello ,
if you want to see the parameters, number of data types of any sp then simple select it and
press alt+F1 besides it if you want to get the definition of the sp then
sp_helptext 'sp_name'

thanks
 
Share this answer
 
Comments
Ganesh11021423 2-Sep-14 7:10am    
Thanks Animesh.
Animesh Datta 2-Sep-14 7:21am    
welcome
Try sp_help <procedurename>, if thats what you are after
 
Share this answer
 
Comments
Ganesh11021423 2-Sep-14 7:11am    
Thanks Rocket-Star.
Excellent!!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900