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

Eseguire una query su Oracle per i dettagli dell'errore del codice ORA

Non è accessibile da SQL ma all'interno di PL/SQL, puoi usare SQLERRM funzione.

Ad esempio

SQL> ed
Wrote file afiedt.buf

  1  begin
  2    dbms_output.put_line( sqlerrm(0) );
  3    dbms_output.put_line( sqlerrm(-1041) );
  4* end;
SQL> /
ORA-0000: normal, successful completion
ORA-01041: internal error. hostdef extension doesn't exist

PL/SQL procedure successfully completed.

Ovviamente potresti creare un ora_code_desc funzione che ha preso una stringa, ha rimosso i primi tre caratteri, ha passato il numero risultante a SQLERRM e ha restituito il risultato

SQL> ed
Wrote file afiedt.buf

  1  create or replace function ora_code_desc( p_code in varchar2 )
  2    return varchar2
  3  is
  4    l_str varchar2(1000);
  5  begin
  6    l_str := sqlerrm( substr(p_code, 4 ) );
  7    return l_str;
  8* end;
SQL> /

Function created.

SQL> select ora_code_desc( 'ORA-00000' ) from dual;

ORA_CODE_DESC('ORA-00000')
--------------------------------------------------------------------------------
ORA-0000: normal, successful completion

Oracle fornisce anche un'utilità sulle piattaforme Unix oerr che fornisce maggiori dettagli, in particolare la causa e l'azione che stai cercando. Se vuoi davvero anche quei dati, potresti scrivere una stored procedure Java che richiamasse una shell del sistema operativo, eseguisse un oerr comando e restituito il risultato. Ciò ti darebbe più dati ma, ovviamente, sarebbe molto più complesso.