Enterprise Manager Generic (MOSC)

MOSC Banner

Get Email notification alerts through OEM / Scheduler

edited May 28, 2015 8:53AM in Enterprise Manager Generic (MOSC) 1 comment

1)---First, we need to configure DBMS_SCHEDULER so that it knows how to send mail – where the mailserver is, and what the sender’s email address is. You can find out if these are configured with the following script: note that if they’re NULL, email will not work. This quick script will print out all of the attributes. In this example, we’re really only checking the EMAIL_SENDER, EMAIL_SERVER, and MAX_JOB_SLAVE_PROCESSES.

declare

  v_value varchar2(2000);

begin

  dbms_scheduler.get_scheduler_attribute('current_open_window',v_value);

  dbms_output.put_line('current open window '||v_value);

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center