Remove your registered interest in a DBMS_ALERT. : DBMS_ALERT « System Packages « Oracle PL / SQL
- Oracle PL / SQL
- System Packages
- DBMS_ALERT
Remove your registered interest in a DBMS_ALERT.
SQL> BEGIN
2
3
4 DBMS_ALERT.REMOVE('EVENT_MESSAGE_QUEUE');
5
6 END;
7 /
PL/SQL procedure successfully completed.
Related examples in the same category