Thursday, 2 May 2024

Text, content, table name search in all store procedure and find out store procedure name

  SELECT DISTINCT

       o.name AS Object_Name,

       o.type_desc

  FROM sys.sql_modules m

       INNER JOIN

       sys.objects o

         ON m.object_id = o.object_id

 WHERE m.definition Like '%AddCookiesLead%';

No comments:

Post a Comment