Session.BreakExecution ORA-12612

MasterEng

Member
Is Long Query(TOracleDataSet)

I call
Session.BreakExecution
receive
ORA-12612 and Closed Session (Session.Connected = False)
 
So the session for which you call BreakExecution is not Connected?

------------------
Marco Kalter
Allround Automations
 
duration query (2-3min)
0-2min - call
Session.BreakExecution - work OK
- receive ORA-01013

2-3min - call
Session.BreakExecution -
- receive ORA-12612
and session may be closed

I decide catch exception
(ExceptObject as EOracleError).ErrorCode in [1013, 12612])
and after - check Session.Connected
 
Back
Top