[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
- [20170621]Session Cursor Caching 2.txtSession
- [20220531]inactive session等待事件2.txtSession事件
- Entity Framework Tutorial Basics(22):Disconnected EntitiesFramework
- ERR_INTERNET_DISCONNECTED devtool 設定offline 忘了關。。。。dev
- ORA-00600: [qksdsInitSample:2]
- laravel session 與 php session配置LaravelSessionPHP
- session和v$session說明Session
- memcached-session-manager session共享Session
- SessionSession
- ORA-00600錯誤分析
- ORA-00600: internal error codeError
- Session分散式共享 = Session + Redis + NginxSession分散式RedisNginx
- session bean中的session如何理解?SessionBean
- 玩轉跟蹤(to owner session、other session)Session
- ORA-00600:: [ttcgcshnd-1], [0], [], [], [], [], [], []GC
- oracle錯誤之ORA-00600Oracle
- ORA-00600 [2103]的分析
- session switchSession
- session 共享Session
- Session案例Session
- cookie & sessionCookieSession
- cookie sessionCookieSession
- Cookies & SessionCookieSession
- Session 使用Session
- V$SESSIONSession
- Java SessionJavaSession
- session容器Session
- kill sessionSession
- BDC SESSIONSession
- Cloud Foundry Session Affinity(Sticky Session)的實現CloudSession
- 【kill session】Oracle 徹底 kill session(轉載)SessionOracle
- 【Oracle】-【v$session】v$session的SNIPED狀態OracleSession
- 要 kill session 例子,session多,報錯如下Session
- v$session的blocking_session含義SessionBloC
- disconnect session和kill session的區別Session
- [20210828]如何實現2.txt
- [20170503]]函式COALESCE優於NVL 2.txt函式