To search stored procedures using MS-SQL you can use the snippet below.
https://www.youtube.com/watch?v=qbHT5HYyTKg
Sample MSSQL
SELECT Name FROM sys.procedures WHERE name LIKE '%StoredProcName%'
All the Code Snippets and Samples you need
To search stored procedures using MS-SQL you can use the snippet below.
https://www.youtube.com/watch?v=qbHT5HYyTKg
SELECT Name FROM sys.procedures WHERE name LIKE '%StoredProcName%'