[20230108]ORA-00600 and Session Disconnected.txt
[20230108]ORA-00600 and Session Disconnected.txt
--//http://ksun-oracle.blogspot.com/2022/07/plsql-ora-00600-by-jdbc-call-exception.html
--//測試:ORA-00600 and Session Disconnected
1.環境:
SCOTT@test01p> @ver1
PORT_STRING VERSION BANNER CON_ID
------------------------------ -------------- -------------------------------------------------------------------------------- ----------
IBMPC/WIN_NT64-9.1.0 12.2.0.1.0 Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production 0
2.測試指令碼:
--//drop table test_tab_disconnet;
create table test_tab_disconnet(id number, label varchar2(10));
insert into test_tab_disconnet(id, label) values(1, 'label');
commit;
create or replace procedure test_ora_600_disconnet as
begin
savepoint sp;
update test_tab_disconnet set label = label where id = 1;
execute immediate '
begin
raise_application_error(-20000, ''error-sp'');
exception
when others then
rollback to savepoint sp;
update test_tab_disconnet set label = label where id = 1;
raise;
end;';
end;
/
3.測試:
SCOTT@test01p> exec test_ora_600_disconnet
BEGIN test_ora_600_disconnet; END;
*
ERROR at line 1:
ORA-00603: ORACLE server session terminated by fatal error
ORA-00600: internal error code, arguments: [4156], [], [], [], [], [], [], [], [], [], [], []
ORA-20000: error-sp
ORA-06512: at line 8
ORA-06512: at line 3
Process ID: 5376
Session ID: 170 Serial number: 51363
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2933492/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20230108]ORA-00600 and Session Disconnected 2.txtSession
- ORA-00600 [925]
- ORA-00600[KZSRGPW]
- ORA-00600 kcratr_nab_less_than_odr ORA-00600 [4194]
- ORA-00600: [qksdsInitSample:2]
- ORA-00600: [OSDEP_INTERNAL]
- EXP時遭遇ORA-00600 [729]
- ORA-00600 [729], [12284], [space leak],
- session和v$session說明Session
- laravel session 與 php session配置LaravelSessionPHP
- ORA-00600 kcrf_resilver_log_1CRF
- ORA-00600: internal error code, arguments: [13011]Error
- [20220106]ora-00600 kokasgi1.txt
- SessionSession
- Oracle recover current redo ORA-00600:[4193] (oracle 故障恢復current redo日誌ORA-00600:[4193]報錯)Oracle
- ORACLE ONLINE PATCH & ORA-00600[kcbgtcr_13]Oracle
- ORA-00600[kluinit:new add column in directpath 2]UI
- cookie sessionCookieSession
- Session案例Session
- Spring SessionSpringSession
- session switchSession
- cookie & sessionCookieSession
- session 共享Session
- Cloud Foundry Session Affinity(Sticky Session)的實現CloudSession
- [20181106]模擬ora-00600[4194]錯誤.txt
- [20181204]模擬ora-00600[4194]錯誤.txt
- [20181204]模擬ora-00600[4193]錯誤.txt
- ORA-00600: internal error code, arguments: [2131], [9], [8]Error
- ORA-00600: internal error code, arguments: [qosdExpStatRead: expcnt mismatch], [Error
- [20180918]disconnect session和kill session的區別.txtSession
- 從koa-session原始碼解讀session原理Session原始碼
- spring-sessionSpringSession
- cookie 和 sessionCookieSession
- R session AbortedSession
- Media Session APISessionAPI
- Oracle session traceOracleSession
- Session 簡介Session
- 10.17 V$SESSIONSession