[sql] Oracle: SQL query to find all the triggers belonging to the tables?

how can i find all the triggers that belong to a table?

This question is related to sql oracle

The answer is


Another table that is useful is:

SELECT * FROM user_objects WHERE object_type='TRIGGER';

You can also use this to query views, indexes etc etc



Use the Oracle documentation and search for keyword "trigger" in your browser.

This approach should work with other metadata type questions.