I'm getting the classic error:
ORA-00918: column ambiguously defined
Usually, I know how to solve it but my problem now is that I'm working with a 700 row query.
Is there a way to identify the column?
Have you tried to do a binary search?
e.g.
If your original query looks like
Select col1
,col2
,col3
,col4
from MyTable
Select col1
,col2
/*,col3
,col4 */
from MyTable
Select col1
/*,col2 */
,col3
,col4
from MyTable
If you still get an error then your problem is with col1
, otherwise you need to change col2
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With