Only happens in WebSphere 6.0.
DB2 v 8.2. FP12.
Only against 1 database. I have other databases in this database
instance, but they don't seem to have this problem.
Looked up SQLCODE: -805. It said either
a) the client and server versions don't match (which doesn't make
sense, because we've run the same versions since May with no problem)
b) There was an SQL PKG missing, which doesn't seem right, because
you'd think it would be missing from the other databases in the same
instance.
I also tried rebinding everything from SP 12 for DB2, and restarted the
db, with no success.
Any info would be appreciated.
Joel
--------------------------
2006-10-04 09:03:15,263 ERROR [NodeHeartbeatThread]
net.ubiquity.conference.server.confapp.nodeservices.NodeServiceController
- DatabaseException: node service controller fails to update heart
beat
com.ibm.db2.jcc.b.SqlException: DB2 SQL error: SQLCODE: -805, SQLSTATE:
51002, SQLERRMC: NULLID.SYSLH205 0X5359534C564C3031
running com.ibm.db2.jcc.b.SqlException: DB2 SQL error: SQLCODE: -805,
SQLSTATE: 51002, SQLERRMC: NULLID.SYSLH205 0X5359534C564C3031
at
net.ubiquity.conference.server.confapp.dbcontrol.impl.NodeServiceDbControllerImpl.updateNodeLease(NodeServiceDbControllerImpl.java(Compiled
Code))
at
net.ubiquity.conference.server.confapp.nodeservices.NodeServiceController$NodeHeartbeatThread.run(NodeServiceController.java(Compiled
Code))
---------------------------------
db2 "bind db2clipk.bnd blocking all grant public clipkg 30"
cheers...
Shashi Mannepalli
> Stack trace below.
>
> Only happens in WebSphere 6.0.
> DB2 v 8.2. FP12.
>
> Only against 1 database. I have other databases in this database
> instance, but they don't seem to have this problem.
>
> Looked up SQLCODE: -805. It said either
> a) the client and server versions don't match (which doesn't make
> sense, because we've run the same versions since May with no problem)
> b) There was an SQL PKG missing, which doesn't seem right, because
> you'd think it would be missing from the other databases in the same
> instance.
>
> I also tried rebinding everything from SP 12 for DB2, and restarted the
> db, with no success.
You are using JDBC, right? JDBC is based on CLI. And if you do not close
your statements properly, it may happen that you run out of CLI statement
handles. There is an excellent article here that explains it in more
detail: http://tinyurl.com/pwq66
--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Cheers!
> yes we had this issue a few days back. I did a rebind with clipkg 25
> which solved it.
Just be aware that this doesn't really solve the problem - it just delays
the point when you run out of packages. Maybe the delay is big enough that
you don't hit the issue any longer, but this is not a sure thing.