Is there a chance to find all stored procedures which have a specified parameter x?
In my belief (pseudo code):
select * from master where objectType = 'storedprocedure' and parameter='x'
Where are the meta information about the stored procs stored (in the master database)?
I have to use Microsoft SQL Server.
Thanks for your help.
Kind regards, patrick
The relevant
INFORMATION_SCHEMAview that you could use isPARAMETERS. This query will list all stored procedures that have such a parameter: