Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > DB2

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-26-2008, 03:36 PM
Marcel
 
Posts: n/a
Default Sometimes SQLCODE: -805 appears

Hi Everyone,

I've got a db2 problem.
My Java program connects to a IBM Db2 8.1.3 database.

There's only 1 active connection to the database via JDBC type 4 driver.
A prepared statement is used to insert 100 to 1000 records in one sequence.
Most of the time everything works great, but sometimes an error occurs,
the -805 error.

The error description says that a package is corrupt or gone, in this
case SYSLH205 (but it's always different). I don't know what it is or
why it appears. I only use an insert statement. I never throwed anything
away.
It occurs on the production and testdatabase. So I don't think that it
has nothing to do with the installation of the database. Or that I've to
bind a package.

Has anybody a explanation why it happens? And better how it can be
solved (with a workarround is als good).

Thanx in advance,
Marcel Rokers

The code:

....
SQLins =
"INSERT INTO "
+ Constants.DB2SCHEMA
+ ".VALUE (MeasureID, Time, Value, shiftID) VALUES (?, ?, ?, ?)";

insertStmt = db2.getConnection().prepareStatement(SQLins);

while (...) {
...
insertStmt.setInt(1, measureID);
insertStmt.setTimestamp(2, time);
insertStmt.setFloat(3, value);
insertStmt.setInt(4, shiftID);
insertStmt.executeUpdate();
...
}
insertStmt.close();
....

The error message that occurs:

SEVERE: DB2 SQL error: SQLCODE: -805, SQLSTATE: 51002, SQLERRMC:
NULLID.SYSLH205 0X5359534C564C3031
com.ibm.db2.jcc.a.SqlException: DB2 SQL error: SQLCODE: -805, SQLSTATE:
51002, SQLERRMC: NULLID.SYSLH205 0X5359534C564C3031
at com.ibm.db2.jcc.a.co.e(co.java:1361)
at com.ibm.db2.jcc.b.bd.o(bd.java:545)
at com.ibm.db2.jcc.b.bd.g(bd.java:124)
at com.ibm.db2.jcc.b.bd.a(bd.java:42)
at com.ibm.db2.jcc.b.r.a(r.java:31)
at com.ibm.db2.jcc.b.bp.g(bp.java:103)
at com.ibm.db2.jcc.a.co.g(co.java:968)
at com.ibm.db2.jcc.a.cp.T(cp.java:1378)
at com.ibm.db2.jcc.a.cp.d(cp.java:1781)
at com.ibm.db2.jcc.a.cp.K(cp.java:316)
at com.ibm.db2.jcc.a.cp.executeQuery(cp.java:299)
at com.vge.pps.domain.Value.saveToDisk(Value.java:65)
at com.vge.pps.domain.ValueList.saveToDisk(ValueList. java:200)
at com.vge.pps.background.CurrentMeasure.saveToDisk(C urrentMeasure.java:98)
at
com.vge.pps.background.CurrentMeasureList.transfer All(CurrentMeasureList.java:113)
at com.vge.pps.background.MeasureThread.run(MeasureTh read.java:58)

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-26-2008, 03:38 PM
Mark Yudkin
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

Mixed client versions (fix levels)?
"Marcel" <mr_nospam@vgelder.com> wrote in message
news:3f82b9da$0$28892$1b62eedf@news.euronet.nl...
> Hi Everyone,
>
> I've got a db2 problem.
> My Java program connects to a IBM Db2 8.1.3 database.
>
> There's only 1 active connection to the database via JDBC type 4 driver.
> A prepared statement is used to insert 100 to 1000 records in one

sequence.
> Most of the time everything works great, but sometimes an error occurs,
> the -805 error.
>
> The error description says that a package is corrupt or gone, in this
> case SYSLH205 (but it's always different). I don't know what it is or
> why it appears. I only use an insert statement. I never throwed anything
> away.
> It occurs on the production and testdatabase. So I don't think that it
> has nothing to do with the installation of the database. Or that I've to
> bind a package.
>
> Has anybody a explanation why it happens? And better how it can be
> solved (with a workarround is als good).
>
> Thanx in advance,
> Marcel Rokers
>
> The code:
>
> ...
> SQLins =
> "INSERT INTO "
> + Constants.DB2SCHEMA
> + ".VALUE (MeasureID, Time, Value, shiftID) VALUES (?, ?, ?, ?)";
>
> insertStmt = db2.getConnection().prepareStatement(SQLins);
>
> while (...) {
> ...
> insertStmt.setInt(1, measureID);
> insertStmt.setTimestamp(2, time);
> insertStmt.setFloat(3, value);
> insertStmt.setInt(4, shiftID);
> insertStmt.executeUpdate();
> ...
> }
> insertStmt.close();
> ...
>
> The error message that occurs:
>
> SEVERE: DB2 SQL error: SQLCODE: -805, SQLSTATE: 51002, SQLERRMC:
> NULLID.SYSLH205 0X5359534C564C3031
> com.ibm.db2.jcc.a.SqlException: DB2 SQL error: SQLCODE: -805, SQLSTATE:
> 51002, SQLERRMC: NULLID.SYSLH205 0X5359534C564C3031
> at com.ibm.db2.jcc.a.co.e(co.java:1361)
> at com.ibm.db2.jcc.b.bd.o(bd.java:545)
> at com.ibm.db2.jcc.b.bd.g(bd.java:124)
> at com.ibm.db2.jcc.b.bd.a(bd.java:42)
> at com.ibm.db2.jcc.b.r.a(r.java:31)
> at com.ibm.db2.jcc.b.bp.g(bp.java:103)
> at com.ibm.db2.jcc.a.co.g(co.java:968)
> at com.ibm.db2.jcc.a.cp.T(cp.java:1378)
> at com.ibm.db2.jcc.a.cp.d(cp.java:1781)
> at com.ibm.db2.jcc.a.cp.K(cp.java:316)
> at com.ibm.db2.jcc.a.cp.executeQuery(cp.java:299)
> at com.vge.pps.domain.Value.saveToDisk(Value.java:65)
> at com.vge.pps.domain.ValueList.saveToDisk(ValueList. java:200)
> at

com.vge.pps.background.CurrentMeasure.saveToDisk(C urrentMeasure.java:98)
> at
>

com.vge.pps.background.CurrentMeasureList.transfer All(CurrentMeasureList.jav
a:113)
> at com.vge.pps.background.MeasureThread.run(MeasureTh read.java:58)
>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-26-2008, 03:39 PM
Marcel
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

Hello Mark,

That's indeed the case. The testdatabase is 8.1.3 + 8.1.2 client. The
productiondatabase is 8.1.0 + 8.1.2 client.

I'll try it right away and come back with the answer.

Thanx for your help.
Marcel

Mark Yudkin wrote:
> Mixed client versions (fix levels)?
> "Marcel" <mr_nospam@vgelder.com> wrote in message
> news:3f82b9da$0$28892$1b62eedf@news.euronet.nl...
>
>>Hi Everyone,
>>
>>I've got a db2 problem.
>>My Java program connects to a IBM Db2 8.1.3 database.
>>
>>There's only 1 active connection to the database via JDBC type 4 driver.
>>A prepared statement is used to insert 100 to 1000 records in one

>
> sequence.
>
>>Most of the time everything works great, but sometimes an error occurs,
>>the -805 error.
>>
>>The error description says that a package is corrupt or gone, in this
>>case SYSLH205 (but it's always different). I don't know what it is or
>>why it appears. I only use an insert statement. I never throwed anything
>>away.
>>It occurs on the production and testdatabase. So I don't think that it
>>has nothing to do with the installation of the database. Or that I've to
>>bind a package.
>>
>>Has anybody a explanation why it happens? And better how it can be
>>solved (with a workarround is als good).
>>
>>Thanx in advance,
>>Marcel Rokers
>>
>>The code:
>>
>>...
>>SQLins =
>> "INSERT INTO "
>>+ Constants.DB2SCHEMA
>>+ ".VALUE (MeasureID, Time, Value, shiftID) VALUES (?, ?, ?, ?)";
>>
>>insertStmt = db2.getConnection().prepareStatement(SQLins);
>>
>>while (...) {
>>...
>>insertStmt.setInt(1, measureID);
>>insertStmt.setTimestamp(2, time);
>>insertStmt.setFloat(3, value);
>>insertStmt.setInt(4, shiftID);
>>insertStmt.executeUpdate();
>>...
>>}
>>insertStmt.close();
>>...
>>
>>The error message that occurs:
>>
>>SEVERE: DB2 SQL error: SQLCODE: -805, SQLSTATE: 51002, SQLERRMC:
>>NULLID.SYSLH205 0X5359534C564C3031
>>com.ibm.db2.jcc.a.SqlException: DB2 SQL error: SQLCODE: -805, SQLSTATE:
>>51002, SQLERRMC: NULLID.SYSLH205 0X5359534C564C3031
>>at com.ibm.db2.jcc.a.co.e(co.java:1361)
>>at com.ibm.db2.jcc.b.bd.o(bd.java:545)
>>at com.ibm.db2.jcc.b.bd.g(bd.java:124)
>>at com.ibm.db2.jcc.b.bd.a(bd.java:42)
>>at com.ibm.db2.jcc.b.r.a(r.java:31)
>>at com.ibm.db2.jcc.b.bp.g(bp.java:103)
>>at com.ibm.db2.jcc.a.co.g(co.java:968)
>>at com.ibm.db2.jcc.a.cp.T(cp.java:1378)
>>at com.ibm.db2.jcc.a.cp.d(cp.java:1781)
>>at com.ibm.db2.jcc.a.cp.K(cp.java:316)
>>at com.ibm.db2.jcc.a.cp.executeQuery(cp.java:299)
>>at com.vge.pps.domain.Value.saveToDisk(Value.java:65)
>>at com.vge.pps.domain.ValueList.saveToDisk(ValueList. java:200)
>>at

>
> com.vge.pps.background.CurrentMeasure.saveToDisk(C urrentMeasure.java:98)
>
>>at
>>

>
> com.vge.pps.background.CurrentMeasureList.transfer All(CurrentMeasureList.jav
> a:113)
>
>>at com.vge.pps.background.MeasureThread.run(MeasureTh read.java:58)
>>

>
>
>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-26-2008, 03:41 PM
Mark Yudkin
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

Yes, that'll cause the problem.

OTOH, package versioning in DB2 V8 was supposed to finally get rid of these
issues. You may like to open a PMR.

"Marcel" <mr_nospam@vgelder.com> wrote in message
news:3f8a72ce$0$64179$1b62eedf@news.euronet.nl...
> Hello Mark,
>
> That's indeed the case. The testdatabase is 8.1.3 + 8.1.2 client. The
> productiondatabase is 8.1.0 + 8.1.2 client.
>
> I'll try it right away and come back with the answer.
>
> Thanx for your help.
> Marcel
>
> Mark Yudkin wrote:
> > Mixed client versions (fix levels)?
> > "Marcel" <mr_nospam@vgelder.com> wrote in message
> > news:3f82b9da$0$28892$1b62eedf@news.euronet.nl...
> >
> >>Hi Everyone,
> >>
> >>I've got a db2 problem.
> >>My Java program connects to a IBM Db2 8.1.3 database.
> >>
> >>There's only 1 active connection to the database via JDBC type 4 driver.
> >>A prepared statement is used to insert 100 to 1000 records in one

> >
> > sequence.
> >
> >>Most of the time everything works great, but sometimes an error occurs,
> >>the -805 error.
> >>
> >>The error description says that a package is corrupt or gone, in this
> >>case SYSLH205 (but it's always different). I don't know what it is or
> >>why it appears. I only use an insert statement. I never throwed anything
> >>away.
> >>It occurs on the production and testdatabase. So I don't think that it
> >>has nothing to do with the installation of the database. Or that I've to
> >>bind a package.
> >>
> >>Has anybody a explanation why it happens? And better how it can be
> >>solved (with a workarround is als good).
> >>
> >>Thanx in advance,
> >>Marcel Rokers
> >>
> >>The code:
> >>
> >>...
> >>SQLins =
> >> "INSERT INTO "
> >>+ Constants.DB2SCHEMA
> >>+ ".VALUE (MeasureID, Time, Value, shiftID) VALUES (?, ?, ?, ?)";
> >>
> >>insertStmt = db2.getConnection().prepareStatement(SQLins);
> >>
> >>while (...) {
> >>...
> >>insertStmt.setInt(1, measureID);
> >>insertStmt.setTimestamp(2, time);
> >>insertStmt.setFloat(3, value);
> >>insertStmt.setInt(4, shiftID);
> >>insertStmt.executeUpdate();
> >>...
> >>}
> >>insertStmt.close();
> >>...
> >>
> >>The error message that occurs:
> >>
> >>SEVERE: DB2 SQL error: SQLCODE: -805, SQLSTATE: 51002, SQLERRMC:
> >>NULLID.SYSLH205 0X5359534C564C3031
> >>com.ibm.db2.jcc.a.SqlException: DB2 SQL error: SQLCODE: -805, SQLSTATE:
> >>51002, SQLERRMC: NULLID.SYSLH205 0X5359534C564C3031
> >>at com.ibm.db2.jcc.a.co.e(co.java:1361)
> >>at com.ibm.db2.jcc.b.bd.o(bd.java:545)
> >>at com.ibm.db2.jcc.b.bd.g(bd.java:124)
> >>at com.ibm.db2.jcc.b.bd.a(bd.java:42)
> >>at com.ibm.db2.jcc.b.r.a(r.java:31)
> >>at com.ibm.db2.jcc.b.bp.g(bp.java:103)
> >>at com.ibm.db2.jcc.a.co.g(co.java:968)
> >>at com.ibm.db2.jcc.a.cp.T(cp.java:1378)
> >>at com.ibm.db2.jcc.a.cp.d(cp.java:1781)
> >>at com.ibm.db2.jcc.a.cp.K(cp.java:316)
> >>at com.ibm.db2.jcc.a.cp.executeQuery(cp.java:299)
> >>at com.vge.pps.domain.Value.saveToDisk(Value.java:65)
> >>at com.vge.pps.domain.ValueList.saveToDisk(ValueList. java:200)
> >>at

> >
> > com.vge.pps.background.CurrentMeasure.saveToDisk(C urrentMeasure.java:98)
> >
> >>at
> >>

> >
> >

com.vge.pps.background.CurrentMeasureList.transfer All(CurrentMeasureList.jav
> > a:113)
> >
> >>at com.vge.pps.background.MeasureThread.run(MeasureTh read.java:58)
> >>

> >
> >
> >

>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-26-2008, 03:42 PM
Marcel
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

Mark,

This is the solution. The -805 doesn't occur anymore in production and
in the testenvironment.

In test I now use 8.1.3 + 8.1.3 JDBC client.
In production I now use 8.1.0 + 8.1.0 JDBC client.

But now I can't have the complete program packaged anymore inluding the
JDBC driver. But you can't have it all......

Thanx a lot,
this problem has cost me serious headtroubles.
Marcel

PS. What means a PMR (a bugreport I asume?)???

Mark Yudkin wrote:

> Yes, that'll cause the problem.
>
> OTOH, package versioning in DB2 V8 was supposed to finally get rid of these
> issues. You may like to open a PMR.
>
> "Marcel" <mr_nospam@vgelder.com> wrote in message
> news:3f8a72ce$0$64179$1b62eedf@news.euronet.nl...
>
>>Hello Mark,
>>
>>That's indeed the case. The testdatabase is 8.1.3 + 8.1.2 client. The
>>productiondatabase is 8.1.0 + 8.1.2 client.
>>
>>I'll try it right away and come back with the answer.
>>
>>Thanx for your help.
>>Marcel
>>
>>Mark Yudkin wrote:
>>
>>>Mixed client versions (fix levels)?
>>>"Marcel" <mr_nospam@vgelder.com> wrote in message
>>>news:3f82b9da$0$28892$1b62eedf@news.euronet.nl. ..
>>>
>>>
>>>>Hi Everyone,
>>>>
>>>>I've got a db2 problem.
>>>>My Java program connects to a IBM Db2 8.1.3 database.
>>>>
>>>>There's only 1 active connection to the database via JDBC type 4 driver.
>>>>A prepared statement is used to insert 100 to 1000 records in one
>>>
>>>sequence.
>>>
>>>
>>>>Most of the time everything works great, but sometimes an error occurs,
>>>>the -805 error.
>>>>
>>>>The error description says that a package is corrupt or gone, in this
>>>>case SYSLH205 (but it's always different). I don't know what it is or
>>>>why it appears. I only use an insert statement. I never throwed anything
>>>>away.
>>>>It occurs on the production and testdatabase. So I don't think that it
>>>>has nothing to do with the installation of the database. Or that I've to
>>>>bind a package.
>>>>
>>>>Has anybody a explanation why it happens? And better how it can be
>>>>solved (with a workarround is als good).
>>>>
>>>>Thanx in advance,
>>>>Marcel Rokers
>>>>
>>>>The code:
>>>>
>>>>...
>>>>SQLins =
>>>> "INSERT INTO "
>>>>+ Constants.DB2SCHEMA
>>>>+ ".VALUE (MeasureID, Time, Value, shiftID) VALUES (?, ?, ?, ?)";
>>>>
>>>>insertStmt = db2.getConnection().prepareStatement(SQLins);
>>>>
>>>>while (...) {
>>>>...
>>>>insertStmt.setInt(1, measureID);
>>>>insertStmt.setTimestamp(2, time);
>>>>insertStmt.setFloat(3, value);
>>>>insertStmt.setInt(4, shiftID);
>>>>insertStmt.executeUpdate();
>>>>...
>>>>}
>>>>insertStmt.close();
>>>>...
>>>>
>>>>The error message that occurs:
>>>>
>>>>SEVERE: DB2 SQL error: SQLCODE: -805, SQLSTATE: 51002, SQLERRMC:
>>>>NULLID.SYSLH205 0X5359534C564C3031
>>>>com.ibm.db2.jcc.a.SqlException: DB2 SQL error: SQLCODE: -805, SQLSTATE:
>>>>51002, SQLERRMC: NULLID.SYSLH205 0X5359534C564C3031
>>>>at com.ibm.db2.jcc.a.co.e(co.java:1361)
>>>>at com.ibm.db2.jcc.b.bd.o(bd.java:545)
>>>>at com.ibm.db2.jcc.b.bd.g(bd.java:124)
>>>>at com.ibm.db2.jcc.b.bd.a(bd.java:42)
>>>>at com.ibm.db2.jcc.b.r.a(r.java:31)
>>>>at com.ibm.db2.jcc.b.bp.g(bp.java:103)
>>>>at com.ibm.db2.jcc.a.co.g(co.java:968)
>>>>at com.ibm.db2.jcc.a.cp.T(cp.java:1378)
>>>>at com.ibm.db2.jcc.a.cp.d(cp.java:1781)
>>>>at com.ibm.db2.jcc.a.cp.K(cp.java:316)
>>>>at com.ibm.db2.jcc.a.cp.executeQuery(cp.java:299)
>>>>at com.vge.pps.domain.Value.saveToDisk(Value.java:65)
>>>>at com.vge.pps.domain.ValueList.saveToDisk(ValueList. java:200)
>>>>at
>>>
>>>com.vge.pps.background.CurrentMeasure.saveToDis k(CurrentMeasure.java:98)
>>>
>>>
>>>>at
>>>>
>>>
>>>

> com.vge.pps.background.CurrentMeasureList.transfer All(CurrentMeasureList.jav
>
>>>a:113)
>>>
>>>
>>>>at com.vge.pps.background.MeasureThread.run(MeasureTh read.java:58)
>>>>
>>>
>>>
>>>

>
>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-26-2008, 03:43 PM
Marcel
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

Hi,

In a current discussion (16-5-2003) about -805 error I found the command:
db2jdbcbind -url jdbc:db2://127.0.0.1:50000/xxx -user xxx -password xxxx
-size 20

I used it in testenvironment (never known it before) and a lot of
packages where created. So I think that it's the real solution.
I'm going to mix clientversion and see the effect on it.

Greetz,
Marcel

Marcel wrote:

> Mark,
>
> This is the solution. The -805 doesn't occur anymore in production and
> in the testenvironment.
>
> In test I now use 8.1.3 + 8.1.3 JDBC client.
> In production I now use 8.1.0 + 8.1.0 JDBC client.
>
> But now I can't have the complete program packaged anymore inluding the
> JDBC driver. But you can't have it all......
>
> Thanx a lot,
> this problem has cost me serious headtroubles.
> Marcel
>
> PS. What means a PMR (a bugreport I asume?)???
>
> Mark Yudkin wrote:
>
>> Yes, that'll cause the problem.
>>
>> OTOH, package versioning in DB2 V8 was supposed to finally get rid of
>> these
>> issues. You may like to open a PMR.
>>
>> "Marcel" <mr_nospam@vgelder.com> wrote in message
>> news:3f8a72ce$0$64179$1b62eedf@news.euronet.nl...
>>
>>> Hello Mark,
>>>
>>> That's indeed the case. The testdatabase is 8.1.3 + 8.1.2 client. The
>>> productiondatabase is 8.1.0 + 8.1.2 client.
>>>
>>> I'll try it right away and come back with the answer.
>>>
>>> Thanx for your help.
>>> Marcel
>>>
>>> Mark Yudkin wrote:
>>>
>>>> Mixed client versions (fix levels)?
>>>> "Marcel" <mr_nospam@vgelder.com> wrote in message
>>>> news:3f82b9da$0$28892$1b62eedf@news.euronet.nl...
>>>>
>>>>
>>>>> Hi Everyone,
>>>>>
>>>>> I've got a db2 problem.
>>>>> My Java program connects to a IBM Db2 8.1.3 database.
>>>>>
>>>>> There's only 1 active connection to the database via JDBC type 4
>>>>> driver.
>>>>> A prepared statement is used to insert 100 to 1000 records in one
>>>>
>>>>
>>>> sequence.
>>>>
>>>>
>>>>> Most of the time everything works great, but sometimes an error
>>>>> occurs,
>>>>> the -805 error.
>>>>>
>>>>> The error description says that a package is corrupt or gone, in this
>>>>> case SYSLH205 (but it's always different). I don't know what it is or
>>>>> why it appears. I only use an insert statement. I never throwed
>>>>> anything
>>>>> away.
>>>>> It occurs on the production and testdatabase. So I don't think that it
>>>>> has nothing to do with the installation of the database. Or that
>>>>> I've to
>>>>> bind a package.
>>>>>
>>>>> Has anybody a explanation why it happens? And better how it can be
>>>>> solved (with a workarround is als good).
>>>>>
>>>>> Thanx in advance,
>>>>> Marcel Rokers
>>>>>
>>>>> The code:
>>>>>
>>>>> ...
>>>>> SQLins =
>>>>> "INSERT INTO "
>>>>> + Constants.DB2SCHEMA
>>>>> + ".VALUE (MeasureID, Time, Value, shiftID) VALUES (?, ?, ?, ?)";
>>>>>
>>>>> insertStmt = db2.getConnection().prepareStatement(SQLins);
>>>>>
>>>>> while (...) {
>>>>> ...
>>>>> insertStmt.setInt(1, measureID);
>>>>> insertStmt.setTimestamp(2, time);
>>>>> insertStmt.setFloat(3, value);
>>>>> insertStmt.setInt(4, shiftID);
>>>>> insertStmt.executeUpdate();
>>>>> ...
>>>>> }
>>>>> insertStmt.close();
>>>>> ...
>>>>>
>>>>> The error message that occurs:
>>>>>
>>>>> SEVERE: DB2 SQL error: SQLCODE: -805, SQLSTATE: 51002, SQLERRMC:
>>>>> NULLID.SYSLH205 0X5359534C564C3031
>>>>> com.ibm.db2.jcc.a.SqlException: DB2 SQL error: SQLCODE: -805,
>>>>> SQLSTATE:
>>>>> 51002, SQLERRMC: NULLID.SYSLH205 0X5359534C564C3031
>>>>> at com.ibm.db2.jcc.a.co.e(co.java:1361)
>>>>> at com.ibm.db2.jcc.b.bd.o(bd.java:545)
>>>>> at com.ibm.db2.jcc.b.bd.g(bd.java:124)
>>>>> at com.ibm.db2.jcc.b.bd.a(bd.java:42)
>>>>> at com.ibm.db2.jcc.b.r.a(r.java:31)
>>>>> at com.ibm.db2.jcc.b.bp.g(bp.java:103)
>>>>> at com.ibm.db2.jcc.a.co.g(co.java:968)
>>>>> at com.ibm.db2.jcc.a.cp.T(cp.java:1378)
>>>>> at com.ibm.db2.jcc.a.cp.d(cp.java:1781)
>>>>> at com.ibm.db2.jcc.a.cp.K(cp.java:316)
>>>>> at com.ibm.db2.jcc.a.cp.executeQuery(cp.java:299)
>>>>> at com.vge.pps.domain.Value.saveToDisk(Value.java:65)
>>>>> at com.vge.pps.domain.ValueList.saveToDisk(ValueList. java:200)
>>>>> at
>>>>
>>>>
>>>> com.vge.pps.background.CurrentMeasure.saveToDisk(C urrentMeasure.java:98)
>>>>
>>>>
>>>>
>>>>> at
>>>>>
>>>>
>>>>

>> com.vge.pps.background.CurrentMeasureList.transfer All(CurrentMeasureList.jav
>>
>>
>>>> a:113)
>>>>
>>>>
>>>>> at com.vge.pps.background.MeasureThread.run(MeasureTh read.java:58)
>>>>>
>>>>
>>>>
>>>>

>>
>>

>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-26-2008, 03:44 PM
xixi
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

Hello,

i have the same error happend after i run our application for a while.
my server is db2 v8.1 windows 64 bit with fix pack3. it asks for
package SYSLH203.i don't think there is one exist. i have tried to do
db2jdbcbind for size 60, the maxappls is 60. what else i can do to fix
this problem? i don't know what is jdbc client. our application just
use db2jcc driver to connect to server database. is this problem
related to client? i am using db2jcc jar come from the fix pack.
please help !!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-26-2008, 03:45 PM
Mark Yudkin
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

If a BIND doesn't help (i.e. SYSLH203 doesn't exist), you'll have to open a
PMR.
"xixi" <dai_xi@yahoo.com> wrote in message
news:c0f33a17.0310170713.6c82f7@posting.google.com ...
> Hello,
>
> i have the same error happend after i run our application for a while.
> my server is db2 v8.1 windows 64 bit with fix pack3. it asks for
> package SYSLH203.i don't think there is one exist. i have tried to do
> db2jdbcbind for size 60, the maxappls is 60. what else i can do to fix
> this problem? i don't know what is jdbc client. our application just
> use db2jcc driver to connect to server database. is this problem
> related to client? i am using db2jcc jar come from the fix pack.
> please help !!!



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-26-2008, 03:46 PM
xixi
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

sorry, we are just have DB2 trial version. is there we still can
submit the PMR? (what does it represent?)

thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-26-2008, 03:46 PM
Blair Adamache
 
Posts: n/a
Default Re: Sometimes SQLCODE: -805 appears

You need a valid service and support contract to submit a problem report
(PMR). If it is definitely a DB2 defect, and you can submit a test case
which we can easily reproduce, we can look at getting this officially
recognized as a an APAR (Authorized Program Analysis Report - fancy word
for defect). But, it will be very hard to provide you with fixes or
problem analysis until you purchase the support contract.

xixi wrote:

> sorry, we are just have DB2 trial version. is there we still can
> submit the PMR? (what does it represent?)
>
> thanks


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 03:11 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378