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'
Guide pratiche di Linux, Windows, Database, Sviluppo Web e molto 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'