User 7b0ee04e66
29-06-2006 09:11:17
Hi
I am trying to run the query below
and get the error message below
When I run the same query (below) without the left join, it works fine
The table is quite large (over 1 million smiles)
I have tried with a small subset of the table and both queries work fine.
Do you have any ideas why this happens?
Thanks
Catherine
I am using JChem 3.1.7
I am trying to run the query below
Code: |
SELECT table1.PCN_No,table1.PMF, table1.PMWT,smilestable.SMILES AS table1_SMILES FROM table1 LEFT JOIN smilestable ON smilestable.DB_NO = table1.DB_No WHERE jc_compare(smilestable.SMILES, 'CCC1OC1','t:s') = 1 |
and get the error message below
Code: |
ORA-29532: Java call terminated by uncaught Java exception: oracle.jdbc.driver.OracleSQLException: ORA-00942: table or view does not exist ORA-06512: at "JCHEM.JCHEM_CORE_PKG", line 0 ORA-06512: at "JCHEM.COMPARE_FUNC", line 28 |
When I run the same query (below) without the left join, it works fine
Code: |
SELECT table1.PCN_No,table1.PMF, table1.PMWT,smilestable.SMILES AS table1_SMILES FROM table1 JOIN smilestable ON smilestable.DB_NO = table1.DB_No WHERE jc_compare(smilestable.SMILES, 'CCC1OC1','t:s') = 1 |
The table is quite large (over 1 million smiles)
I have tried with a small subset of the table and both queries work fine.
Do you have any ideas why this happens?
Thanks
Catherine
I am using JChem 3.1.7