sql >> Database >  >> RDS >> Oracle

Hoe kan ik de positie van een fout in de Oracle SQL-query krijgen?

Na wat omzwervingen toen ik bijna de hoop verloor, vond ik (dankzij de correcte zoekreeks in Google) de volgende link: https://forums.oracle.com/thread/1000551

SQL> DECLARE
  2     c   INTEGER := DBMS_SQL.open_cursor ();
  3  BEGIN
  4     DBMS_SQL.parse (c, 'select * form dual', DBMS_SQL.native);
  5
  6     DBMS_SQL.close_cursor (c);
  7  EXCEPTION
  8     WHEN OTHERS THEN
  9        DBMS_OUTPUT.put_line ('Last Error: ' || DBMS_SQL.LAST_ERROR_POSITION ());
 10        DBMS_SQL.close_cursor (c);
 11        RAISE;
 12  END;
 13  /
Last Error: 9
DECLARE
*
ERROR at line 1:
ORA-00923: FROM keyword not found where expected
ORA-06512: at line 11


  1. Postgres dynamische queryfunctie

  2. Hoe rijnummers weergeven in PostgreSQL-query?

  3. JDBC-transactie met gebruikersinvoer

  4. Het totale aantal gewerkte uren op een dag weergeven mysql