ORA-01000:maximum open cursors exceeded for V$ASM_FILE VIEW
(Doc ID 1969682.1)
Last updated on FEBRUARY 20, 2019
Applies to:
Oracle Database - Enterprise Edition - Version 11.2.0.1 and laterOracle Database Cloud Schema Service - Version N/A and later
Oracle Database Exadata Cloud Machine - Version N/A and later
Oracle Cloud Infrastructure - Database Service - Version N/A and later
Oracle Database Cloud Exadata Service - Version N/A and later
Information in this document applies to any platform.
Symptoms
Getting error while executing the below script from database.
declare
cursor c is
select 1 from v$asm_file where rownum = 1;
x number(1);
begin
for i in 1..100 loop
open c;
fetch c into x;
close c;
end loop;
ERROR at line 1:
ORA-01000: maximum open cursors exceeded
ORA-06512: at line 8
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Cause |
Solution |
References |