System Packages Oracle PLSQL

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