Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting below exception, when trying to insert a batch of rows to an existing table

ORA-00942: table or view does not exist

I can confirm that the table exists in db and I can insert data to that table using oracle sql developer. But when I try to insert rows using preparedstatement in java, its throwing table does not exist error.

Please find the stack trace of error below

java.sql.SQLException: ORA-00942: table or view does not exist

    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289) 
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:573) 
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1889)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1093)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2047)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1940) 
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout>>(OracleStatement.java:2709)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:589)
    at quotecopy.DbConnection.insertIntoDestinationDb(DbConnection.java:591)
    at quotecopy.QuoteCopier.main(QuoteCopier.java:72) 

Can anyone suggest the reasons for this error ?

Update : Issue solved

There was no problem with my database connection properties or with my table or view name. The solution to the problem was very strange. One of the columns that I was trying insert was of Clob type. As I had a lot of trouble handling clob data in oracle db before, gave a try by replacing the clob setter with a temporary string setter and the same code executed with out any problems and all the rows were correctly inserted!!!.

ie. peparedstatement.setClob(columnIndex, clob)

was replaced with

peparedstatement.setString(columnIndex, "String")

Why an error table or view does exist error was throws for error in inserting clob data. Could anyone of you please explain ?

Thanks a lot for your answers and comments.

share|improve this question
1  
Well, i suppose "table or view does not exist". Can you show us the table definition and also your statement? – Howard Jul 3 '11 at 7:31
@aquero: Perhaps printing (and showing here) the query that produces this error will help. – ypercube Jul 3 '11 at 8:25
1  
@aquero: Please show us the Java code you're using. – Codo Jul 3 '11 at 8:36
1  
For [BC]Lob's in oracle I think you have to insert a new record with a null Lob first and update it with the Lob data directly afterwards. (It's been while so I'm not entirely sure>) – rsp Jul 3 '11 at 11:51
@rsp - that was true of very old versions of the database. I suppose it may still be true with JDBC calls. – APC Jul 3 '11 at 14:30
show 1 more comment

7 Answers

Oracle will also report this error if the table exists, but you don't have any privileges on it. So if you are sure that the table is there, check the grants.

share|improve this answer
up vote 4 down vote accepted

There was no problem with my database connection properties or with my table or view name. The solution to the problem was very strange. One of the columns that I was trying insert was of Clob type. As I had a lot of trouble handling clob data in oracle db before, gave a try by replacing the clob setter with a temporary string setter and the same code executed with out any problems and all the rows were correctly inserted!!!.

ie. peparedstatement.setClob(columnIndex, clob)

was replaced with

peparedstatement.setString(columnIndex, "String")

share|improve this answer

There seems to be some issue with setCLOB() that causes an ORA-00942 under some circumstances when the target table does exist and is correctly privileged. I'm having this exact issue now, I can make the ORA-00942 go away by simply not binding the CLOB into the same table.

I've tried setClob() with a java.sql.Clob and setCLOB() with an oracle.jdbc.CLOB but with the same result.

As you say, if you bind as a string the problem goes away - but this then limits your data size to 4k.

From testing it seems to be triggered when a transaction is open on the session prior to binding the CLOB. I'll feed back when I've solved this...checking Oracle support.

share|improve this answer

Can anyone suggest the reasons for this error ?

The possible reasons include:

  • You are talking to the wrong database server.
  • You are talking to the wrong database.
  • You've misspelled the table or view name.
  • Someone has changed the table name or view.
  • Someone has deleted the table name or view.
  • Due to some configuration issue, application bug or whatever, the server, database, table or whatever name that you are using is different to what you think it is.

In short ... the name is wrong.

share|improve this answer
1  
Yes, there must have been some messup in the code, you might have misspelled the table name in the code. – Rakesh Jul 3 '11 at 7:54
1  
bt when I made a normal insert query using the same details, in which the column values are hardcoded, i was able to insert data into the table successfully. But when I am using preparedstatement and setters its throwing table or view does not exist error. Thats reason why I said I can confirm that the table names and connection details are correct. – aquero Jul 3 '11 at 8:16
@aquero - that "confirmation" is not convincing. – Stephen C Jul 3 '11 at 9:09
@Stephen - Sorry, I cant paste the whole code here to make it more convincing. Since I had no idea on how to solv this one, gave as much details as I can and all of them were true. If you find it unconvincing, cant do anything. – aquero Jul 3 '11 at 10:31
@aquero - Fine. I'm not the one who should (perhaps) not have been convinced so easily ... – Stephen C Jul 3 '11 at 14:37

Is your script providing the schema name, or do you rely on the user logged into the database to select the default schema?

It might be that you do not name the schema and that you perform your batch with a system user instead of the schema user resulting in the wrong execution context for a script that would work fine if executed by the user that has the target schema set as default schema. Your best action would be to include the schema name in the insert statements:

INSERT INTO myschema.mytable (mycolums) VALUES ('myvalue')

update: Do you try to bind the table name as bound value in your prepared statement? That won't work.

share|improve this answer
I changed my insert query to include the schema, but still getting the same exception – aquero Jul 3 '11 at 8:18
@aquero, can you edit your question and include the statement and the Java code that prepares, binds the values and executes? – rsp Jul 3 '11 at 8:48
@aquero, see update. – rsp Jul 3 '11 at 10:32
please find the comments added in my question above, It was in issue in inserting clob data. But the exception thrown was table does not exist error. Thanks a lot for your help..:) – aquero Jul 3 '11 at 11:30

@unbeli is right. Not having appropriate grants on a table will result in this error. For what it's worth, I recently experienced this. I was experiencing the exact problem that you described, I could execute insert statements through sql developer but would fail when using hibernate. I finally realized that my code was doing more than the obvious insert. Inserting into other tables that did not have appropriate grants. Adjusting grant privileges solved this for me.

Note: Don't have reputation to comment, otherwise this may have been a comment.

share|improve this answer

I found how to solve this problem without using JDBC's setString() method which limits the data to 4K.

What you need to do is to use preparedStatement.setClob(int parameterIndex, Reader reader). At least this is what that worked for me. Thought Oracle drivers converts data to character stream to insert, seems like not. Or something specific causing an error.

Using a characterStream seems to work for me. I am reading tables from one db and writing to another one using jdbc. And i was getting table not found error just like it is mentioned above. So this is how i solved the problem:

case Types.CLOB:   //Using a switch statement for all columns, this is for CLOB columns
        Clob clobData = resultSet.getClob(columnIndex); // The source db
        if (clobData != null) {
            preparedStatement.setClob(columnIndex, clobData.getCharacterStream());
        } else {
            preparedStatement.setClob(columnIndex, clobData);
        }
        clobData = null;
        return;

All good now.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.