Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I use TOP 3.2 with Oracle 8.1.7 database.
I created Rule which includes JOIN between a table and a view in the same oracle account. The generated SQL for the rule is :
SELECT COUNT(*) FROM "ADCO_GLOBAL"."WELL_DIR_SRVY_PTS" JOIN "WELL_DIR_SRVY_PTS_MAX_ANGLE" ON ( "WELL_DIR_SRVY_PTS". "UWI" = "WELL_DIR_SRVY_PTS_MAX_ANGLE". "UWI" ) JOIN "WELL_DIR_SRVY_PTS_MAX_ANGLE" ON ( "WELL_DIR_SRVY_PTS". "DIR_SRVY_ID" = "WELL_DIR_SRVY_PTS_MAX_ANGLE". "DIR_SRVY_ID" ) JOIN "WELL_DIR_SRVY_PTS_MAX_ANGLE" ON ( "WELL_DIR_SRVY_PTS". "DEVIATION_ANGLE" = "WELL_DIR_SRVY_PTS_MAX_ANGLE". "MAX_DEVIATION_ANGLE" ) WHERE (uwi like 'HU%') AND (uwi like '%H' and deviation_angle > 86 )
the error message is
ORA:00933 SQL Command Not Properly Ended
I think the generated SQL can not be executed on my oracle 8.1.7. I tried to used other versions of JDBC drivers but still have the same problem.
please help me to solve this.
thanks
Arafat