"ERROR at line" on simple SQL... how?

Grego

Member
hello
i'm using sql window to make a simple query.
Once an error is found when trying to execute, the program only informs the error but not the line where it is.
Example to reproduce:
executing
select dummy+1
from dual
on SqlPlus, it says... error AT LINE 1: invalid number.
Pl/sql developer says only... invalid number... but... what is the line?
how can i show that information inside pl/sql developer?

thanks
 
For runtime errors you will not get error positions. You only get the error position for parse errors. I'm not quite sure where SQL*Plus is getting this information, but we'll look into it.
 
Back
Top