[20230108]ORA-00600 and Session Disconnected 2.txt
[20230108]ORA-00600 and Session Disconnected 2.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 type t_char100_varray50_test force;
create or replace noneditionable type t_char100_varray50_test as varray(50) of varchar2(100)
/
--//drop table test_tab_disconnet_no cascade constraints;
create table test_tab_disconnet_no as select level id, t_char100_varray50_test('a', 'b', 'c') vary
from dual connect by level <= 1e4;
alter table test_tab_disconnet_no add constraint test_tab_disconnet_no#p primary key (id);
create or replace procedure test_ora_600_disconnet_no as
begin
for c in (
select /*+ parallel(4) index(t test_tab_disconnet_no#p) */ t.id, count(*)
from test_tab_disconnet_no t, table(t.vary) v
where rownum <= 3000
group by t.id)
loop
null;
end loop;
end;
/
3.測試:
SCOTT@test01p> exec test_ora_600_disconnet_no;
BEGIN test_ora_600_disconnet_no; END;
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [qernsRowP], [1], [], [], [], [], [], [], [], [], [], []
--//如果取消並行,錯誤消失!!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2933493/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20230108]ORA-00600 and Session Disconnected.txtSession
- [20220531]inactive session等待事件2.txtSession事件
- ERR_INTERNET_DISCONNECTED devtool 設定offline 忘了關。。。。dev
- 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
- [20180625]oradebug peek 2.txt
- [20191011]拆分rowid 2.txt
- Oracle recover current redo ORA-00600:[4193] (oracle 故障恢復current redo日誌ORA-00600:[4193]報錯)Oracle
- ARC105 D.Let‘s Play Nim,E.Keep Graph Disconnected題解
- 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
- [20181113]Logical Standby建立2.txt
- [20231027]Index ITL Limit 2.txtIndexMIT
- [20190102]塊內重整2.txt
- [20220322]探究oracle sequence 2.txtOracle
- [20210828]如何實現2.txt
- [20210223]bbed itl ktbitflg 2.txt
- Cloud Foundry Session Affinity(Sticky Session)的實現CloudSession
- [20181106]模擬ora-00600[4194]錯誤.txt
- [20181204]模擬ora-00600[4194]錯誤.txt
- [20181204]模擬ora-00600[4193]錯誤.txt