SQL Server - Find text in stored proc


/ Published in: SQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. SELECT ROUTINE_NAME, ROUTINE_DEFINITION
  2. FROM INFORMATION_SCHEMA.ROUTINES
  3. WHERE ROUTINE_DEFINITION LIKE '%foobar%'
  4. AND ROUTINE_TYPE='PROCEDURE'

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.