Steffi1013
MIS
I need to compile a list of all of the calls from scheduled jobs (or other places) that select/insert into a specific table... is there a simple way of doing this without opening up every job and looking at it?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT * FROM information_schema.routines r WHERE charindex('table_name_here', r.ROUTINE_DEFINITION)>0