473,406 Members | 2,345 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

LOB Locator Limit Exceeded

I am trying to read BLOBs from a large table (i.e., greater than 34K
rows) using Java and the IBM JDBC driver (actually through an
Application server).
I get the following:

[IBM][CLI Driver][DB2/LINUX] SQL0429N The maximum number of
concurrent LOB locators has been exceeded. SQLSTATE=54028

I understand that the LOB locators are pointers to the BLOBs, but is
there any way to free them explicitly, or get the server to do it ?

I have tried the workarounds (e.g., cursor hold/commit, set the driver
property materializeLobData to true, read out as binary stream or
bytes, etc.) None of these work.

It is hard to believe that there isn't a way around this. Wouldn't
the situation I have be quite common when working with large datasets
(e.g., spatial data ) ?

Any advice would be graciously accepted...

Thanks...

Mike
Nov 12 '05 #1
6 7338
as far as i know, you can have 32000 concurrent locators.
There is a FREE locator statment you may try.
"tigr" <se*********@yahoo.com> a écrit dans le message de
news:17**************************@posting.google.c om...
I am trying to read BLOBs from a large table (i.e., greater than 34K
rows) using Java and the IBM JDBC driver (actually through an
Application server).
I get the following:

[IBM][CLI Driver][DB2/LINUX] SQL0429N The maximum number of
concurrent LOB locators has been exceeded. SQLSTATE=54028

I understand that the LOB locators are pointers to the BLOBs, but is
there any way to free them explicitly, or get the server to do it ?

I have tried the workarounds (e.g., cursor hold/commit, set the driver
property materializeLobData to true, read out as binary stream or
bytes, etc.) None of these work.

It is hard to believe that there isn't a way around this. Wouldn't
the situation I have be quite common when working with large datasets
(e.g., spatial data ) ?

Any advice would be graciously accepted...

Thanks...

Mike

Nov 12 '05 #2
tigr wrote:
I am trying to read BLOBs from a large table (i.e., greater than 34K
rows) using Java and the IBM JDBC driver (actually through an
Application server).
I get the following:

[IBM][CLI Driver][DB2/LINUX] SQL0429N The maximum number of
concurrent LOB locators has been exceeded. SQLSTATE=54028

I understand that the LOB locators are pointers to the BLOBs, but is
there any way to free them explicitly, or get the server to do it ?

I have tried the workarounds (e.g., cursor hold/commit, set the driver
property materializeLobData to true, read out as binary stream or
bytes, etc.) None of these work.

It is hard to believe that there isn't a way around this. Wouldn't
the situation I have be quite common when working with large datasets
(e.g., spatial data ) ?


If you would be using embedded SQL with EXEC SQL ..., then you have the FREE
LOCATOR statement to explicitly free any LOB locators you handled.

With CLI, things are a bit different. CLI uses locators under the covers to
fetch the LOB data for you. For performance reasons, those locators are by
default not freed right away. But you can change that behaviour by adding
the following line to you sqllib/cfg/db2cli.ini file

PATCH2=50

That will tell CLI to free a LOB locators when the next LOB is to be
fetched. You shouldn't hit the 32K limit that way.

--
Knut Stolze
Information Integration
IBM Germany / University of Jena
Nov 12 '05 #3
chi
"Knut Stolze" wrote:
tigr wrote:
I am trying to read BLOBs from a large table (i.e., greater

than 34K
rows) using Java and the IBM JDBC driver (actually through

an
Application server).
I get the following:

[IBM][CLI Driver][DB2/LINUX] SQL0429N The maximum number of
concurrent LOB locators has been exceeded. SQLSTATE=54028

I understand that the LOB locators are pointers to the

BLOBs, but is
there any way to free them explicitly, or get the server to

do it ?

I have tried the workarounds (e.g., cursor hold/commit, set

the driver
property materializeLobData to true, read out as binary

stream or
bytes, etc.) None of these work.

It is hard to believe that there isn’t a way around this.

Wouldn’t
the situation I have be quite common when working with large

datasets
(e.g., spatial data ) ?


If you would be using embedded SQL with EXEC SQL ..., then you
have the FREE
LOCATOR statement to explicitly free any LOB locators you
handled.

With CLI, things are a bit different. CLI uses locators under
the covers to
fetch the LOB data for you. For performance reasons, those
locators are by
default not freed right away. But you can change that
behaviour by adding
the following line to you sqllib/cfg/db2cli.ini file

PATCH2=50

That will tell CLI to free a LOB locators when the next LOB is
to be
fetched. You shouldn’t hit the 32K limit that way.

--
Knut Stolze
Information Integration
IBM Germany / University of Jena


I have the same SQL0429N error. However I’m using DB2 Version 7.2.5
here. Would patch2=50 apply to this DB2 version?

As I need to confirm the applicabity before I can try the setting,
please help.

--
http://www.dbForumz.com/ This article was posted by author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.dbForumz.com/DB2-LOB-Loca...ict132970.html
Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbForumz.com/eform.php?p=496515
Nov 12 '05 #4
chi wrote:
"Knut Stolze" wrote:
> tigr wrote:
>
> > I am trying to read BLOBs from a large table (i.e., greater

> than 34K
> > rows) using Java and the IBM JDBC driver (actually through

> an
> > Application server).
> > I get the following:
> >
> > [IBM][CLI Driver][DB2/LINUX] SQL0429N The maximum number of
> > concurrent LOB locators has been exceeded. SQLSTATE=54028
> >
> > I understand that the LOB locators are pointers to the

> BLOBs, but is
> > there any way to free them explicitly, or get the server to

> do it ?
> >
> > I have tried the workarounds (e.g., cursor hold/commit, set

> the driver
> > property materializeLobData to true, read out as binary

> stream or
> > bytes, etc.) None of these work.
> >
> > It is hard to believe that there isn’t a way around this.

> Wouldn’t
> > the situation I have be quite common when working with large

> datasets
> > (e.g., spatial data ) ?

>
> If you would be using embedded SQL with EXEC SQL ..., then you
> have the FREE
> LOCATOR statement to explicitly free any LOB locators you
> handled.
>
> With CLI, things are a bit different. CLI uses locators under
> the covers to
> fetch the LOB data for you. For performance reasons, those
> locators are by
> default not freed right away. But you can change that
> behaviour by adding
> the following line to you sqllib/cfg/db2cli.ini file
>
> PATCH2=50
>
> That will tell CLI to free a LOB locators when the next LOB is
> to be
> fetched. You shouldn’t hit the 32K limit that way.
>
> --
> Knut Stolze
> Information Integration
> IBM Germany / University of Jena


I have the same SQL0429N error. However I’m using DB2 Version 7.2.5
here. Would patch2=50 apply to this DB2 version?

As I need to confirm the applicabity before I can try the setting,
please help.


As far as I can see here:
http://www-306.ibm.com/software/data...htm#Header_856
this option is not available on V7. (I just followed the link from the DB2
Information Center to get to this site.)

If you want to compare the list with v8, go here:
http://www-306.ibm.com/software/data...cli/patch2.htm

p.s: Given that V7 goes out of service at the end of this month, it might be
a good idea to upgrade to V8...

--
Knut Stolze
Information Integration
IBM Germany / University of Jena
Nov 12 '05 #5
chi
"Knut Stolze" wrote:
chi wrote:
"Knut Stolze" wrote:

*> > tigr wrote:
*> >
**> > > I am trying to read BLOBs from a large
table (i.e., greater
*> > than 34K
**> > > rows) using Java and the IBM JDBC driver
(actually through
*> > an
**> > > Application server).
**> > > I get the following:
**> > >
**> > > [IBM][CLI Driver][DB2/LINUX] SQL0429N The
maximum number of
**> > > concurrent LOB locators has been exceeded.
SQLSTATE=54028
**> > >
**> > > I understand that the LOB locators are
pointers to the
*> > BLOBs, but is
**> > > there any way to free them explicitly, or
get the server to
*> > do it ?
**> > >
**> > > I have tried the workarounds (e.g., cursor
hold/commit, set
*> > the driver
**> > > property materializeLobData to true, read
out as binary
*> > stream or
**> > > bytes, etc.) None of these work.
**> > >
**> > > It is hard to believe that there isn’t a
way around this.
*> > Wouldn’t
**> > > the situation I have be quite common when
working with large
*> > datasets
**> > > (e.g., spatial data ) ?
*> >
*> > If you would be using embedded SQL with EXEC SQL
..., then you
*> > have the FREE
*> > LOCATOR statement to explicitly free any LOB
locators you
*> > handled.
*> >
*> > With CLI, things are a bit different. CLI uses
locators under
*> > the covers to
*> > fetch the LOB data for you. For performance
reasons, those
*> > locators are by
*> > default not freed right away. But you can change
that
*> > behaviour by adding
*> > the following line to you sqllib/cfg/db2cli.ini
file
*> >
*> > PATCH2=50
*> >
*> > That will tell CLI to free a LOB locators when the
next LOB is
*> > to be
*> > fetched. You shouldn’t hit the 32K limit that way.
*> >
*> > --
*> > Knut Stolze
*> > Information Integration
*> > IBM Germany / University of Jena

I have the same SQL0429N error. However I’m using DB2

Version 7.2.5
here. Would patch2=50 apply to this DB2 version?

As I need to confirm the applicabity before I can try the

setting,
please help.


As far as I can see here:
http://www-306.ibm.com/software/data...htm#Header_856
this option is not available on V7. (I just followed the link
from the DB2
Information Center to get to this site.)

If you want to compare the list with v8, go here:
http://www-306.ibm.com/software/data...cli/patch2.htm

p.s: Given that V7 goes out of service at the end of this
month, it might be
a good idea to upgrade to V8...

--
Knut Stolze
Information Integration
IBM Germany / University of Jena


Thanks for your suggestion. However, it’s a long way before we can
upgrade v7 to v8. I found there’s LOBCACHESIZE which may be helpful
to temperary solve the problem. The thing is I’m not sure the value I
should set for the parameter. There are mainly 4 CLOB types in a DB
table and takes up 1M size for each CLOB.

Can you help to tell me how to estimate the value for this parameter,
please?

Many thanks.

--
http://www.dbForumz.com/ This article was posted by author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.dbForumz.com/DB2-LOB-Loca...ict132970.html
Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbForumz.com/eform.php?p=499804
Nov 12 '05 #6
chi wrote:
As far as I can see here:
http://www-306.ibm.com/software/data...htm#Header_856
this option is not available on V7. (I just followed the link
from the DB2
Information Center to get to this site.)

If you want to compare the list with v8, go here:
http://www-306.ibm.com/software/data...cli/patch2.htm

p.s: Given that V7 goes out of service at the end of this
month, it might be
a good idea to upgrade to V8...


Thanks for your suggestion. However, it’s a long way before we can
upgrade v7 to v8. I found there’s LOBCACHESIZE which may be helpful
to temperary solve the problem. The thing is I’m not sure the value I
should set for the parameter. There are mainly 4 CLOB types in a DB
table and takes up 1M size for each CLOB.

Can you help to tell me how to estimate the value for this parameter,
please?


You might want to read here (V8 documentation):

http://publib.boulder.ibm.com/infoce...d/r0010868.htm

I think that explains rather well the meaning of the parameter. In your
case, you would need to set the LobCacheSize to 4MB or more (assuming that
the column was declared as CLOB(4M).

In general, there are only two ways to free a LOB locator:

(1) call an explicit FREE LOCATOR
(2) run a COMMIT

CLI uses locators under the covers and you can't run a FREE LOCATOR
yourself. So the patch2=50 is available in V8 to tell DB2 to free a
locator before the next lob is retrieved.

That leaves you with firing a COMMIT. You could open the cursor using WITH
HOLD, fetch 32000 rows/lobs (resulting in 32000 LOB locators being
concurrently used by the application), then run a COMMIT and all the
locators will be freed and you can start fetching again where new locators
will be allocated again.

--
Knut Stolze
Information Integration
IBM Germany / University of Jena
Nov 12 '05 #7

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

Similar topics

3
by: Brian Piotrowski | last post by:
Hi All, I'm trying to run a simple query from an ASP page. I want the query to select each individual field in a table and compare it to another table. If the value doesn't exist, I want it...
17
by: Gareth Tuckwell | last post by:
Does anyone if there is a limit on the number of fields or the number of tables in an Access97 database? My code suddenly won't compile after I have added a few fields in one table and I wonder...
2
by: steve | last post by:
I am setting up a huge database in mysql, and I get the above error in Linux. I believe it is related to the size of one of my tables, which is 4,294,966,772 bytes in size. Can someone help. How...
8
by: Peter Ballard | last post by:
Hi all, I've got a C program which outputs all its data using a statement of the form: putchar(ch, outfile); This has worked fine for years until it had to output more than 2GB of data...
3
by: Big Dave | last post by:
Hello All, I was wondering wether anyone could help me solve what is probably a very easy issue. I keep getting this damn "The administrative limit for this request was exceeded" whenever I try to...
1
by: marcelo Cortez | last post by:
Hi folks My application fail with 'Non-superuser connection limit exceeded' error , the client application is connected via ODBC AND GPF MESSAGE appear there. the 'Non-superuser connection...
9
by: eastcoastguyz | last post by:
I wrote a simple program to continue to create a very large file (on purpose), and even though there is plenty of disk space on that device the program aborted with the error message "File Size...
1
by: Gurpal | last post by:
I'm getting this error when I test this page. Here is the error: Response object error 'ASP 0251 : 80004005' Response Buffer Limit Exceeded /test/test4.asp, line 0 Execution of the ASP...
2
by: Victor Lin | last post by:
Hi, I encounter a problem with pickle. I download a html from: ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...
0
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...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.