Oracle/SQL: Check If Trigger Enabled/Disabled
Asked Answered
C

2

15

How do you check if a specific trigger is enabled or disabled in Oracle/SQL?

The following specifies if my trigger is valid or not -- but not enabled or disabled

SELECT *
FROM   ALL_OBJECTS
WHERE  OBJECT_TYPE = 'TRIGGER' AND OBJECT_NAME = 'the_trigger_name';

My Oracle Database version: 12c - Enterprise Edition v12.1.0.2.0 - 64bit


I have checked StackOverflow and came across the following posts, but didn't find an answer specific to Oracle/SQL:

Conure answered 29/3, 2018 at 13:31 Comment(0)
C
24

user_triggers is the table where all triggers created, specific to the schema, are located.

So,

SELECT STATUS FROM USER_TRIGGERS WHERE TRIGGER_NAME = 'the_trigger_name';

will fetch the status of either ENABLED or DISABLED.

Also, to fetch ALL triggers and their statuses--

SELECT TRIGGER_NAME, STATUS FROM USER_TRIGGERS;
Conure answered 29/3, 2018 at 13:31 Comment(0)
D
1

This query also worked for me:

SELECT trigger_name,status
FROM dba_triggers
WHERE trigger_name = upper ('TRIGGERNAME');
Denomination answered 30/12, 2021 at 10:27 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.