It can become quite frustrating when you cannot remember the name of an SQL stored procedure, especially if you have quite a few of them. But, let’s say that you can remember some text inside the stored procedure in question, but not its name. You can use the following SQL to find all Stored Procedures containing the specified text:
SELECT DISTINCT objects.name, objects.type_descFROM sys.sql_modules modules INNER JOIN sys.objects objectsON modules.object_id = objects.object_id WHERE modules.definition Like '%text_to_search%'
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.




















