473,657 Members | 2,378 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Package "NULLID.SYSLN31 E 0X5359534C564C3 031" was not found

we r getting Package "NULLID.SYSLN31 E 0X5359534C564C3 031" was not
found error in our production server..

when v check with "select * from syscat.packages ".. that package
SYSLN31E is not listed there..

if v restart the DB, for 2 days it is working fine, then again it is
giving the same error..

is it a problem of web portal server?

is there any solution for this?

Oct 29 '07 #1
2 4222
"kavin" <ka************ *@gmail.comwrot e in message
news:11******** **************@ v23g2000prn.goo glegroups.com.. .
we r getting Package "NULLID.SYSLN31 E 0X5359534C564C3 031" was not
found error in our production server..

when v check with "select * from syscat.packages ".. that package
SYSLN31E is not listed there..

if v restart the DB, for 2 days it is working fine, then again it is
giving the same error..

is it a problem of web portal server?

is there any solution for this?
You are getting a -805 I assume.

In this case it means that no more large cursors are available for the
package. The default is 3 large cursors (SYSLN300, SYSLN301, and SYSLN302)
but since it cannot find (-805) cursor 31 (1E is 30 and the first package is
SYSLN300) then that means some has already rebound that package with the
maximum number of large cursors that can be defined (30).

If this is a production server, the cause of this is sloppy programming. Too
many cursors are open at one time. Since most programmers rely on java or
some java tool to create their SQL, that means they are not closing their
transactions and/or not committing frequently enough. The DB2 Application
Development Guide has examples of how to close a transaction in java.

Send it back to the programmers and tell them they need to learn how to
write programs properly.

If this is happening on a development server where you are using RAD, etc in
debug mode (which may not close transactions in debug mode) ask the
programmers to reboot their workstations at least daily and to shut down RAD
when they are not using it.
Oct 29 '07 #2
On Oct 28, 11:55 pm, kavin <kavinilammur.. .@gmail.comwrot e:
we r getting Package "NULLID.SYSLN31 E 0X5359534C564C3 031" was not
found error in our production server..

when v check with "select * from syscat.packages ".. that package
SYSLN31E is not listed there..

if v restart the DB, for 2 days it is working fine, then again it is
giving the same error..

is it a problem of web portal server?

is there any solution for this?
I had a smiliar situation. This means the app is not closing the
dynamic sql cursors properly. Its either left at a hanging state and
not released or not closed proplerly. Its an application problem.
DB2PD can help you identify how many cursors are open at the time of
error. If its a prod app and its erroring out with -805 increase the
CLIPKG to a higher number. This is a band aid to the problem to get
you out of the problem. You can also db2 a DB2JDBCBIND to increase the
number of cursor handles too.
Basically the above two temporarily solutions are to get you out of
the problem for time being, but the application dev. needs to fix the
code.

HTH

Roger

Oct 29 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3313
by: Vidyadharan | last post by:
Hi , I encounter package not found NULLID.SYSLN304 while i try to execute a PreparedStatement using the Websphere Application Server data source. The same runs fine when its run stand alone. When i run "list packages for all" i cant find this package listed...How can i get this listed...Its fails in other machines too and this particluar package is not listed in any of the db2 setup...
5
4970
by: Jurgen Haan | last post by:
can anyone give me any information about this message? SQL State: 51002 Native: -805 Message: SQL0805N Package "NULLID.SYSLH203 0X5359534C564C3031" was not found. SQLSTATE=51002 - Error state:51002 Error code:-805 obviously a system package can not be found. But I don't know why, where has it gone? How do I get it back? I'm scared :'(
9
6802
by: datapro01 | last post by:
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: SQL0805N Package "NULLID.SYSLH103 0X5359534C564C3031" was not found. SQLSTATE=51002 Have done a rbind all, also
7
14228
by: anilcool | last post by:
Hi all. I am running a stored procedure in a loop -- this Stored procedure inserts one record at a time. After inserting about 1326 records, my thread crashes and I get the following error: "Got database error. SQL0805N Package "NULLID.SYSLH203 0X5359534C564C3031" was not found. SQLSTATE=51002"
0
2569
by: Michael Rudolph | last post by:
Hi newsgroup, I try to connect to a host db2 (DB2 OS/390 7.1.2) from my db2 client on windows (DB2/NT 8.2.3). Using interactive mode everything works fine (db2, connect to abc user x using y, select z from schema.tablename). But for automation I would like to put my query in an SQL file and run it using db2sql92.exe db2sql92.exe -d abc -f "C:\test.sql" -a user/pass -r c:\query.out
2
6556
by: chrisg | last post by:
Can anyone please help me and explain: 3e70982f WSRdbDataSour I DSRA8203I: Database product name : OS2 3e70982f WSRdbDataSour I DSRA8204I: Database product version : DB2 UDB 6.1 3e70982f WSRdbDataSour I DSRA8205I: JDBC driver name : IBM DB2 JDBC Universal Driver Architecture
4
14798
by: jason.awlt | last post by:
Greetings, I recently being bugged by the following error on my DB2. SQL0902C SQLSTATE = 58005 Reason Code = 14 This error comes out everytime i tried to insert some record to a table (consist of BLOB datatype) called BINSCHEMA.BINARYIMG. I use VB6 to do
3
3297
by: Jurgen Haan | last post by:
Hi hi. I'd like to gain some knowledge on packages. We're getting an error "SQL0805N Package "NULLID.SYSLH214 0X5359534C564C3031" was not found. SQLSTATE=51002" On our production database. And as suspected, SYSLH214 is not in the packages catalog. Afaik, there are only a few packages available per connection? If so, how can I increase this number?
2
3054
by: Prassi | last post by:
Hi All, I am getting this error Package "NULLID.SYSLN30F 0X5359534C564C3031" was not found in my application, Application is a Websphere portet and we normally get this error after executing a specific SQL from the application. How do I add this specific package, I have used the db2 bind and db2rbind but these still do not create the package needed by this application.
0
8399
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8732
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8504
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8606
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7337
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4159
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4318
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2732
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1959
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.