Where can I find information about stored procedure parameters? In my situation I need to know only the input parameters of given store procedure.
In the sys.o
sys.o
SELECT * FROM INFORMATION_SCHEMA.PARAMETERS WHERE SPECIFIC_NAME='proc_name' ORDER BY ORDINAL_POSITION
(tested with MSSQL 2014)