- This topic has 6 replies, 6 voices, and was last updated 19 years ago by snpe.
-
AuthorPosts
-
NielsMemberwhen i try to execute a join query using the sql editor in db explorer i am getting an ORA-01000 maximum number of cursors exceeded error.
me-ide: 4.0M2
eclipse: Version: 3.1.0
Build id: I20050627-1435
Jdk: 1.4.2_08
4 pde plugins
Riyad KallaMemberI will look into this.
support-michaelKeymasterCan you post more details:
1) ORA version
2) the query or a translated example query for the ORA HR example schema
3) usage context (e.g., it happens on 1st attempt or after using the DBExplorer for an extended period)Most of my experience with “out of cursors” has been the result of improperly handling statements such as failing to close them. Any help you can provide us to replicate and isolate this problem will be greatly appreciated.
Michael
NielsMemberOriginally I had right clicked on a table to populate an sql editor with the default select statement on that table. I did not run the default query. Then I replaced the default query with a query on a different table(s). When I clicked the run icon to run it I immediately got the ORA-01000 error. I’m not sure the issue is specific to join queries, as I have not used the db explorer extensively. I’ll try a simple alternative query to see what happens and post the outcome.
ahansen42MemberHate to post a “me too” but… “me too.” ora-01000 when using the hibernate synchronizer. Tried to generate hbms. It’s only a dozen tables in the schema.
Brian FernandesModeratorIn the last few releases, we have fixed a few cursor issues.
ahansen,
Hibernate synchronizer is not part of the MyEclipse distrobution – did you mean something else?Best,
Brian.
snpeMembermaximum cursor error is known error – oracle set default value for oracle_cursors too very small
you can increase it in init.ora file
set like thisoracle_cursors = 6000
you can set more (default is small, about 200-300)
this is same for every oracle version
-
AuthorPosts