Sending an alert through DBMS_ALERT. : DBMS_ALERT « System Packages « Oracle PL / SQL
- Oracle PL / SQL
- System Packages
- DBMS_ALERT
Sending an alert through DBMS_ALERT.
set serveroutput on
DECLARE
v_AlertName VARCHAR2(30) := 'MyAlert';
BEGIN
DBMS_ALERT.SIGNAL(v_AlertName, 'Alert! Alert! Alert!');
COMMIT;
END;
/
--
Related examples in the same category