| Author |
Limiting the Fetch Size
|
Ram Chhabra
Ranch Hand
Joined: Jan 07, 2008
Posts: 48
|
|
Hi,
I need to check that does something exist in some specified table or not. For that i can run query like ... but my problem is that mytable consist 10 Lakhs of records.
I only need to check that is any single record exist or not.... Can i use setFetchSize() or something else... can you please suggest what policy should i opt to improve performance
Thanks
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
Why not limit your results set by specifying conditions in a where or having clause?
(also, what's a Lakh?)
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
Ram Chhabra
Ranch Hand
Joined: Jan 07, 2008
Posts: 48
|
|
|
Thanks for your answer. After putting where clause also i am having 1 million of records. Then how to restrict.
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
|
How about choosing conditions that limit your result set to a smaller size?
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32694
|
|
|
If I remember correctly lakh = 100,000.
|
 |
 |
|
|
subject: Limiting the Fetch Size
|
|
|