January 17, 2010 at 5:23 pm
Could anyone tell me how I could search for like text or table/view name within multiple sp/function !? ( I tried "dependencies" but do not work)
January 17, 2010 at 6:08 pm
there is a suite of views that you can search the "definition" column from,
for example this might get you started:
select *
from sys.all_sql_modules
where definition like '%myTableName%'
you can use this view to find stuff in the bodies of procedures,functions,trigger bodies or views.
Lowell
January 17, 2010 at 7:21 pm
Thanks.:-)
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply