Zeroanarchy
Technical User
Hi all,
I am currently using the following method to determine if a table in being used in a list of functions.
Does anyone know of a way of determining if a field value is being used in a list of functions?
Cheers
ZeroAnarchy
Experience is a wonderful thing. It enables you to recognize a mistake
when you make it again.
I am currently using the following method to determine if a table in being used in a list of functions.
Code:
select referenced_owner, referenced_name, type, owner, name
from all_dependencies
where referenced_owner in ('Database1')
and referenced_name in ('PRODUCT')
order by name
Does anyone know of a way of determining if a field value is being used in a list of functions?
Cheers
ZeroAnarchy
Experience is a wonderful thing. It enables you to recognize a mistake
when you make it again.