RE: SQL Exception: Container xxx not found

2007-05-14 Thread Parker, Patricia \(LNG-CON\)
gt; > -Original Message- > From: Stanley Bradbury [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 10, 2007 3:18 PM > To: Derby Discussion > Subject: Re: SQL Exception: Container xxx not found > > Hi Patty - > I fear this will be a hard one to solve without a reproducible

Re: SQL Exception: Container xxx not found

2007-05-11 Thread Mike Matrigali
tanceof SQLException) { printSQLError((SQLException) e); } else { e.printStackTrace(); } } return conn; } -Original Message- From: Stanley Bradbury [mailto:[EMAIL PROTECTED] Sent:

RE: SQL Exception: Container xxx not found

2007-05-11 Thread Parker, Patricia \(LNG-CON\)
Bryan, I've done just that. Thanks Patty -Original Message- From: Bryan Pendleton [mailto:[EMAIL PROTECTED] Sent: Friday, May 11, 2007 4:33 PM To: Derby Discussion Subject: Re: SQL Exception: Container xxx not found > events, and it appears that the problem is that the bulk l

Re: SQL Exception: Container xxx not found

2007-05-11 Thread Bryan Pendleton
events, and it appears that the problem is that the bulk load CALL SYSCS_UTIL.SYSCS_IMPORT_DATA (?,?,?,?,?,?,?,?,?) is not entirely finishing before I try to query the table it is populating. I would expect to get a locking exception, or something of that nature, but the I think I would expect

RE: SQL Exception: Container xxx not found

2007-05-11 Thread Parker, Patricia \(LNG-CON\)
To: Derby Discussion Subject: Re: SQL Exception: Container xxx not found Hi Patty - I fear this will be a hard one to solve without a reproducible test case. Before going that route (I assume it will be difficult to provide a test case) I suggest seeing if this might be system related. The odde

Re: SQL Exception: Container xxx not found

2007-05-10 Thread Stanley Bradbury
n.setAutoCommit(true); conn.setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED); } catch (Throwable e) { log.debug("exception thrown:"); if (e instanceof SQLException) { printSQLError((SQLException) e); }

Re: SQL Exception: Container xxx not found

2007-05-09 Thread Stanley Bradbury
Parker, Patricia (LNG-CON) wrote: Hi, I am developing an application that does bulk loading and inserting into tables that are created on-the-fly. I create four tables and bulk-load data into them. Then I run a process that creates four tables and selectively inserts data from the bulk-loade