Unix Technical Forum

Problem with package not found

This is a discussion on Problem with package not found within the DB2 forums, part of the Database Server Software category; --> Running Db2 8.1 w Fixpack 9. Recently upgraded to this level. An application attempting a load receives the following ...


Go Back   Unix Technical Forum > Database Server Software > DB2

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-27-2008, 06:43 AM
datapro01@yahoo.com
 
Posts: n/a
Default Problem with package not found

Running Db2 8.1 w Fixpack 9.

Recently upgraded to this level.

An application attempting a load receives the following error

Error Error 1 2005-12-29 14:55:26 SQLError: sqlstate 51002: [IBM][CLI
Driver][DB2/6000] SQL0805N Package "NULLID.SYSLH103
0X5359534C564C3031" was not found. SQLSTATE=51002

Have done a rbind all, also

db2 "bind @db2ubind.lst blocking all grant public"
and
db2 "bind @db2cli.lst blocking all grant public"

In the /sqllib/bnd directory I've done a grep for SYSLH103 and
anything close but its not there.

Also no package coming back from a query to syscat.packages with that
name.

Any suggestions would be appreciated.

Thanks in advance.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-27-2008, 06:43 AM
Gert van der Kooij
 
Posts: n/a
Default Re: Problem with package not found

In article <1136315671.991456.196240@z14g2000cwz.googlegroups .com>,
datapro01@yahoo.com (datapro01@yahoo.com) says...
> Running Db2 8.1 w Fixpack 9.
>
> Recently upgraded to this level.
>
> An application attempting a load receives the following error
>
> Error Error 1 2005-12-29 14:55:26 SQLError: sqlstate 51002: [IBM][CLI
> Driver][DB2/6000] SQL0805N Package "NULLID.SYSLH103
> 0X5359534C564C3031" was not found. SQLSTATE=51002
>
> Have done a rbind all, also
>
> db2 "bind @db2ubind.lst blocking all grant public"
> and
> db2 "bind @db2cli.lst blocking all grant public"
>
> In the /sqllib/bnd directory I've done a grep for SYSLH103 and
> anything close but its not there.
>


You most likely also need to run the 'db2jdbcbind' command. Search
the online docs at http://tinyurl.com/bslng for it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-27-2008, 06:43 AM
m0002a@yahoo.com
 
Posts: n/a
Default Re: Problem with package not found

Check out this link for a possible solution:
http://www-1.ibm.com/support/docview...1208123&loc=en

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-27-2008, 06:43 AM
datapro01@yahoo.com
 
Posts: n/a
Default Re: Problem with package not found

I ran the suggested command
db2 bind @db2cli.lst blocking all grant public sqlerror continue CLIPKG
5


Now the job is failing looking for package nullid.SYSLH106

Is there anyway of determining how many packages this app will need?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-27-2008, 06:43 AM
Gert van der Kooij
 
Posts: n/a
Default Re: Problem with package not found

In article <1136396553.024146.136060@o13g2000cwo.googlegroups .com>,
datapro01@yahoo.com (datapro01@yahoo.com) says...
> I ran the suggested command
> db2 bind @db2cli.lst blocking all grant public sqlerror continue CLIPKG
> 5
>
>
> Now the job is failing looking for package nullid.SYSLH106
>
> Is there anyway of determining how many packages this app will need?
>


Count the number of needed handles, there's a description about CLI
handles in the DB2 docs at http://tinyurl.com/7m9hc
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-27-2008, 06:43 AM
datapro01@yahoo.com
 
Posts: n/a
Default Re: Problem with package not found

Thanks..this is very good information. It seems to be saying that I
would need to know the number of packges the app is using in order to
determine the best value to set CLIPKG value. Is that correct?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-27-2008, 06:43 AM
Gert van der Kooij
 
Posts: n/a
Default Re: Problem with package not found

In article <1136400707.216427.164530@f14g2000cwb.googlegroups .com>,
datapro01@yahoo.com (datapro01@yahoo.com) says...
> Thanks..this is very good information. It seems to be saying that I
> would need to know the number of packges the app is using in order to
> determine the best value to set CLIPKG value. Is that correct?
>
>


As far as I understand you have to count the number of handles needed
by your application. I'm not familiar with CLI programming but maybe
the application allocates handles and doesn't release them when they
are not needed anymore.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-27-2008, 06:44 AM
Ian
 
Posts: n/a
Default Re: Problem with package not found

datapro01@yahoo.com wrote:
> I ran the suggested command
> db2 bind @db2cli.lst blocking all grant public sqlerror continue CLIPKG
> 5
>
>
> Now the job is failing looking for package nullid.SYSLH106
>
> Is there anyway of determining how many packages this app will need?
>


This doesn't happen to be a perl application, does it? I ran into a
situation using an older build ActivePerl with DBD:B2 that had the
same issue -- no matter how many CLI packages I bound I would eventually
run out. The only way we could figure out how to release the handles
was to disconnect and reconnect after X transactions.

However, after we upgraded to the most current release of perl (but
using the same DBI and DBD:B2 modules) the problem was resolved.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-27-2008, 06:44 AM
datapro01@yahoo.com
 
Posts: n/a
Default Re: Problem with package not found

Thanks...not Its not perl. We've opened an SR with Siebel as this
happened after a recent Siebel upgrade.

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 09:06 PM.


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