Oracle
 sql >> Database >  >> RDS >> Oracle

Il modo migliore per ricevere un'e-mail dopo un errore simultaneo (sql - trigger - applicazione)

Puoi usare double pipe(|| ) come operatori di concatenazione e filtra i risultati in base ai tipi di stato desiderati elencati tra parentesi dopo il IN operatore per la query.

Crea una procedura e inserisci la tua query come cursore e usa utl_http pacchetto all'interno di tale procedura come di seguito:

create or replace procedure pr_mail_me is

  v_email varchar2(100) := '[email protected]';
  v_rep   varchar2(4000);
  v_url   varchar2(4000);

  cursor crs_request is
  select 'The concurrent '||program||' with request_id '||request_id||' ended with status '|| 
           status as message, request_id
    from
    (
       <the subquery>
      )
   where rn = 1
     and status in ('WARNING','ERROR','STAND BY');    

begin

  for c in crs_request
  loop
  begin

    v_url := 'http://www.mycompany.com/path_to/default.aspx?email=' ||
              v_email ||'&out_message='||c.message||'&out_request_id='||c.request_id;
    v_rep := utl_http.request(utl_url.escape(v_url,false,'UTF-8'));

   exception
       when others then
            v_url := 'http://www.mycompany.com/path_to/default.aspx?email=' ||
                      v_email ||'&out_message='||substr(sqlerrm,1,250)||'&out_request_id='||c.request_id;
                      v_rep := utl_http.request(utl_url.escape(v_url,false,'UTF-8'));
        end;
  end loop;
end;

per ricevere e-mail chiamando questa procedura.