I am using the JTOpen JDBC driver for the DB2 Universal database. I have very little SQL experience beyond simple instructions.
From this question , I see that the error I get (SQL7008) occurs when I try to "insert / update rows in a non-journal table during a transaction" (rephrased).
In accordance with the project management, our database is not logged and will not be soon (do not ask me why I am not a database administrator). However, I am working on a project in which it is possible to commit
everything at once (and not AutoCommit-ing with each call to execute) is almost necessary (not required completely, but it solves a lot of problems the way).
Is there a way to work with erorr SQL7008 without enabling Journalling?
source share