Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 264 Bytes

File metadata and controls

13 lines (11 loc) · 264 Bytes

Stored Procedure'ler içerisinde kelime arama

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 '%abc%';