Here I have a sql script which retrieves all stored procedures and it's parameters.
select *
from sys.parameters
inner join sys.procedures on parameters.object_id = procedures.object_id
inner join sys.types on parameters.system_type_id = types.system_type_id
and parameters.user_type_id = types.user_type_id
--where procedures.name = 'STORED_PROC_NAME'
What I want to do is to be able to grab the stored procedures output parameters this way if at all possible.
If someone could point me to where in the sys catalog views I can find this information, it would be appreciated! Thanks!