Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Trigger error: Too many open cursors
Not at all
Too many open cursors is ora-1000
However you have linked your own exception to ora-1000 by this
statement
PRAGMA EXCEPTION_INIT(EOraDatumAuszerhalb, -1000);
You need to use
raise_application_error(-<num>,text)
where num is anything greater than 20000.
Hth
-- Sybrand Bakker Senior Oracle DBAReceived on Tue Jan 17 2006 - 05:19:33 CST
![]() |
![]() |