set serveroutput onDECLARE v_AlertName VARCHAR2(30) := 'MyAlert';BEGIN DBMS_ALERT.SIGNAL(v_AlertName, 'Alert! Alert! Alert!'); COMMIT;END;/--