views:

51

answers:

2

Hi,

I'm searching for a way to retrieve all the triggers where there is an action linked to a specific table. I don't want to read manually all the triggers I have on the server as there are too many.

Any ideas?

Thanks

+3  A: 
SELECT * FROM USER_TRIGGERS WHERE TABLE_NAME = 'NAME_OF_YOUR_TABLE';
The chicken in the kitchen
You might want to use `ALL_TRIGGERS` instead of `USER_TRIGGERS` if you are interested in schemas others than your own.
René Nyffenegger
Great thank you!
Tami
A: 

If you mean what Peter Lang indicated then look into the view dba_dependencies (or all_dependencies or user_dependencies of course).

Jo Holvoet