User 0908c5ccdd
30-04-2008 08:59:42
I am attempting to insert structures into my JChem structures table. I have a PL/SQL procedure that includes a call to the JC_INSERT function but it is giving me the error message below:
The line giving the error is:
The COMPOUNDS table does exist and the PL/SQL is called from within the same schema. Any ideas where I might be going wrong here?
Code: |
* ERROR at line 1: ORA-29532: Java call terminated by uncaught Java exception: oracle.jdbc.driver.OracleSQLException: ORA-00903: invalid table name ORA-06512: at "JCHEM.JCHEM_TABLE_PKG", line 30 ORA-06512: at "JCHEM.JCHEM_TABLE_PKG", line 19 ORA-06512: at "JCHEM.SID", line 561 ORA-06512: at "JCHEM.SID", line 766 ORA-06512: at line 1 |
The line giving the error is:
Code: |
aCDReturn := jchem_table_pkg.jc_insert(vSmiles, 'compounds', null, 'false', 'false', ''); iCDNum := aCDReturn(1); |
The COMPOUNDS table does exist and the PL/SQL is called from within the same schema. Any ideas where I might be going wrong here?