0

I have a few packages which begin with the name ´LTR_´. I'm trying to clean up my codebase and would like to find if there are any unused functions and procedures.

Is it possible to query the data-dictionary to find any methods in the LTR_ packages that are not referenced from anywhere else in the DB? Is this possible without the use of a third-party tool or auditing? Thanks.

Mridang Agarwalla
  • 43,201
  • 71
  • 221
  • 382

1 Answers1

0

You can find all references with
select * from all_source where upper(text) like '%LTR_METHODNAME%'

Egor Skriptunoff
  • 23,359
  • 2
  • 34
  • 64