SQL SERVER | Ricercare un testo in tutte le stored procedure
SELECT o.Name AS 'StoredProcedure' FROM SysObjects AS o INNER JOIN SysComments AS c ON o.ID = c.ID WHERE c. LIKE '%testo da ricercare%' AND o. = 'P'
Appunti, stralci di programmazione e altro
SELECT o.Name AS 'StoredProcedure' FROM SysObjects AS o INNER JOIN SysComments AS c ON o.ID = c.ID WHERE c. LIKE '%testo da ricercare%' AND o. = 'P'