Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ORA-01000 maximum open cursors exceeded 1

Status
Not open for further replies.

Karen99

Programmer
Joined
Aug 5, 2003
Messages
113
Location
ZA
I get the following error. So I guess I must change the OPEN_CURSORS parameter. The only problem is just that I don't know where or how to do it.

Please help

Thanks
Karen
 
You should change it in init.oa file and restart your instance. But I'd also recommend you to look for a "cursors leak", i.e. for a part of your application that doesn't close unused cursors.

Regards, Dima
 
I don't find OPEN_CURSORS parameter in my init.ora file. Must I just add it ?
 
Yes. You may check current value by
Code:
select value from v$parameter where name='open_cursors'
or by issuing in sql*plus
Code:
show parameter open_cursors

Regards, Dima
 
Thanks, I just added the parameter to my init.ora file and made the value 600. Now it works. :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top