jiseller wrote:
My issue is that our physical files on the iSeries are NOT journaled. That means I can not have transactions. This limits me in what I can do. Would you have any suggestions how to get around this type of issue?
There is no way you can have transactions (well on DB2 for iSeries at least, who knows for other things), without having your physical files journalled. This is because the transaction has to do eitehr a commit or a rollback depending on whether it worked or not, the job has to be running under commitment control (you don't have to worry about that, the JT400 JDBC driver handles all that for you).
Setting up journalling on tables is a very trivial task - what's the issue with them not being journalled ?
This may be teaching you to suck eggs, but if you want to journal them, creat a journal receiver using CRTJRNRCV, create a journal using CRTJRN, specifying the journal receiver you just created, then start journalling on each table via the STRJRNPF command. If you set up a PDM option to start journalling that will make things easier.