0

I have a scenario where I would like to know about a particular table in a database as what applications are accessing it to identify the dependency of applications (more than one java project) on this particular table.

Is there a way I can turn on a log feature on a particular table in the database to get more information about that table only, The information I am looking for is dependency on this table (as what applications use this table in their code)

0

1 Answer 1

1

To find out Oracle dependencies you can leverage metadata tables.

  • To find out table dependencies - dba_dependencies
  • To find foreign key constraints - dba_constraints
Sign up to request clarification or add additional context in comments.

1 Comment

Note that the dba_XXX views are usually not accessible for regular users. You should rather use the ALL_XXX or even USER_XXX views

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.