Avatar of Prardhan N
Prardhan N
Flag for India asked on

SQL0501N The cursor specified in a FETCH statement or CLOSE statement is not open or a cursor variable in a cursor scalar function reference is not open. SQLSTATE=24501

SQL0501N  The cursor specified in a FETCH statement or CLOSE statement is not
open or a cursor variable in a cursor scalar function reference is not open.
SQLSTATE=24501

I am facing the above error while executing a Db2 procedure.

Can you please help me to solve this.
DB2

Avatar of undefined
Last Comment
Prardhan N

8/22/2022 - Mon
Panagiotis Toumpaniaris

From here :

Explanation

The program attempted to do one of:

    FETCH using a cursor at a time when the specified cursor was not open.
    CLOSE a cursor at a time when the specified cursor was not open.
    Reference a cursor variable in an OPEN statement and the cursor variable is not open.
    Reference a cursor scalar function, such as CURSOR_ROWCOUNT function, and the cursor variable is not open.

The statement cannot be processed.


User response

Check for a previous message (SQLCODE) that may have closed the cursor. Note that after the cursor is closed, any fetches or close cursor statements receive SQLCODE -501.

If no previous SQLCODEs have been issued, correct the application program to ensure that the cursor is open when the FETCH or CLOSE statement is executed.

If a cursor variable is referenced in a cursor scalar function, verify that that the cursor is not null, is defined, and is open, else replace the cursor variable with one that is in that state.
Prardhan N

ASKER
i could see this help from db2 ? SQL0501N

Can you pls elaborate more?

i am attaching the file with code.

Can you please guide me more.

Thanks a lot for your help
Gary Patterson, CISSP

No code attachment.
Your help has saved me hundreds of hours of internet surfing.
fblack61
Gary Patterson, CISSP

Usually this just means that you tried to FETCH or CLOSE a cursor that isn't open.  Usually this is due to a defect in your code.  Maybe the OPEN failed and you didn't detect it, for example.
Prardhan N

ASKER
Yes, i have changed my for cursor statements to while cursor and error is not throwing now.

but i need to know how to use the data studio to trace the particular order value (i mean for a particular data value) for step by step
tracing of my procedure code.
Gary Patterson, CISSP

Here is a great tutorial on debugging IBM i DB2 stored stored procedures in IBM Data Studio:

https://www.ibm.com/developerworks/ibmi/library/i-debugger-db2-i/index.html
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Prardhan N

ASKER
I have the requirement of dynamic cursor to store a single column with 2 to 3 record values and iterate with in that single column to process.

I have to declare the dynamic cursor with in a while loop. Please help me with respect to this.

Do i need to use refcursor?
ASKER CERTIFIED SOLUTION
Kent Olsen

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Prardhan N

ASKER
The current transaction has been rolled back because of a deadlock or timeout.  Reason code "68".. SQLCODE=-911, SQLSTATE=40001, DRIVER=4.18.60
The current transaction has been rolled back because of a deadlock or timeout.  Reason code "68".. SQLCODE=-911, SQLSTATE=40001, DRIVER=4.18.60

facing this error while compiling the Procedure.

I have cleared the locks. but still same issue while compilation. Is this happening while prepare
Kent Olsen

Can you post the SQL that you're trying to compile?
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
Gary Patterson, CISSP

By my count, this is the third different question posted in this single thread.  Please close this question and open a new one - you may get more experts to respond.
Prardhan N

ASKER
Thanks for all your help with this regard. Appreciating your efforts.