溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ORA-00600: 內(nèi)部錯(cuò)誤代碼, 參數(shù): [qosdDirRead: dircnt mismatch], [809], [808],

發(fā)布時(shí)間:2020-08-08 08:19:03 來源:ITPUB博客 閱讀:270 作者:raysuen 欄目:關(guān)系型數(shù)據(jù)庫

問題描述:

        上午一套R(shí)AC實(shí)例頻繁報(bào)警ORA-00600: 內(nèi)部錯(cuò)誤代碼, 參數(shù): [qosdDirRead: dircnt mismatch], [809], [808]。經(jīng)過MOS查詢只發(fā)現(xiàn)在12.1中存在bug,但在12.2中已經(jīng)被修復(fù)了。

數(shù)據(jù)庫的版本:12.2.0.1

服務(wù)器OS版本:redhat 7.3

處理過程:

        無奈只能提交SR,通過SR的指示操作,問題解決。下面是操作過程

SQL> col dir_own# for 9999999999999999
SQL> with aa as (select count(*) aa_cnt,dir_own# from opt_directive$ group by dir_own#)
select * from aa,opt_directive_own$ bb
where aa.dir_own#(+)=bb.dir_own#
and dir_cnt<>aa.aa_cnt;
    AA_CNT        DIR_OWN#          DIR_OWN#      DIR_CNT
---------- ----------------- ----------------- ----------
       809 ################# #################          808
SQL> col dir_own# for 99999999999999999999
SQL> /
    AA_CNT        DIR_OWN#          DIR_OWN#      DIR_CNT
---------- --------------------- --------------------- ----------
       809  11352894694518622562  11352894694518622562          808
SQL> update opt_directive_own$ a set dir_cnt=(select count(*) from opt_directive$ b where a.dir_own#=b.dir_own#)
where dir_own#=11352894694518622562;
  2  
1 row updated.
SQL> commit;
Commit complete.
SQL>  with aa as (select count(*) aa_cnt,dir_own# from opt_directive$ group by dir_own#)
select * from aa,opt_directive_own$ bb
where aa.dir_own#(+)=bb.dir_own#
and dir_cnt<>aa.aa_cnt;
  2    3    4  
no rows selected
SQL>
SQL> with aa as (select count(*) aa_cnt,dir_own# from opt_directive$ group by dir_own#)
select * from aa,opt_directive_own$ bb
where aa.dir_own#(+)=bb.dir_own#
and aa.dir_own#=11352894694518622562;
  2    3    4  
    AA_CNT        DIR_OWN#          DIR_OWN#      DIR_CNT
---------- --------------------- --------------------- ----------
       809  11352894694518622562  11352894694518622562          809

 

    

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI