Find a search string in stored procedures -TSQL


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



Copy this code and paste it in your HTML
  1. SELECT Name
  2. FROM sys.procedures
  3. WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%Employee%'
  4. GO

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.