ORA-00600: 內部錯誤程式碼, 引數: [qcisSetPlsqlCtx:tzi init]
最近在客戶的開發環境上遇到一個奇怪的問題, 啟動之後,alert日誌中經常出現類似如下的日誌資訊:
Errors in file e:\app\administrator\diag\rdbms\hydeezyg\hydeezyg\trace\hydeezyg_ora_9064.trc (incident=1):
ORA-00600: 內部錯誤程式碼, 引數: [qcisSetPlsqlCtx:tzi init], [], [], [], [], [], [], [], [], [], [], []
Errors in file e:\app\administrator\diag\rdbms\hydeezyg\hydeezyg\trace\hydeezyg_ora_9064.trc:
ORA-00600: 內部錯誤程式碼, 引數: [qcisSetPlsqlCtx:tzi init], [], [], [], [], [], [], [], [], [], [], []
在前端登入時也提示:
ORA-01804: 時區資訊無法初始化。
問題出現背景:
1. 客戶的測試,開發環境的資料庫在同一個資料庫伺服器上,某一天,客戶重灌了作業系統(資料檔案,控制檔案,引數檔案等都在磁碟上,並未丟失)
2. 作業系統重灌完成之後,我們的售後找我把庫拉起來.
3. 我以為開發環境安裝的資料庫軟體是11.2.0.4的版本,安裝11.2.0.4之後嘗試啟動資料庫,提示要startup upgrade
這時我才意識到客戶的資料庫是11.2.0.1的版本
4. 解除安裝11.2.0.4, 重灌11.2.0.1, 其中的一個庫OPEN之後並無問題,另外一個庫提示ORA-00600 qcisSetPlsqlCtx:tzi init]
檢查, 搜尋MOS, 看到了一篇文件:
ORA-600 [qcisSetPlsqlCtx:tzi init] after Database Restart (文件 ID 362036.1)
A) Oracle version 11.2 and higher:
A.1) check if the required DSt patch is applied/available in the $ORACLE_HOME
In 11.2 there are no timezlrg.dat and timezone.dat, this is normal and intended.
please do NOT make any symbolic links for timezlrg.dat and timezone.dat or copy any of the files in \oracore\zoneinfo\ and rename them to timezlrg.dat and timezone.dat
in 11.2 there should be NO timezlrg.dat and timezone.dat in $ORACLE_HOME/oracore/zoneinfo/ (unix) or %ORACLE_HOME%\oracore\zoneinfo\ (windows)
Oracle 11.2.0.1 has by default all RDBMS DST updates from DSTv1 to DSTv11 included in the software installation.
Oracle 11.2.0.2 through 11.2.0.4 has by default all RDBMS DST updates from DSTv1 to DSTv14 included in the software installation.
Oracle 12.1.0.1 and 12.1.0.2 has by default all RDBMS DST updates from DSTv1 to DSTv18 included in the software installation.
These files are found in $ORACLE_HOME/oracore/zoneinfo and have a prefix indicating the DST version.
For example timezlrg_4.dat is the DSTv4 "large" file, timezlrg_11.dat is the DSTv11 "large" file.
connect and check:
select NAME, VALUE$ from SYS.PROPS$ where NAME like ('DST_%_TT_VERSION');
DST_SECONDARY_TT_VERSION -> should normally be 0 , if this has a value then also check if it is applied
DST_PRIMARY_TT_VERSION -> required TZ file
if DST_PRIMARY_TT_VERSION is for example "16" then check if
$ORACLE_HOME/oracore/zoneinfo or %ORACLE_HOME%\oracore\zoneinfo
* contains timezone_16.dat and timezlrg_16.dat if not then apply the missing DSTv16 patch
* the files are readable for the ORACLE OS user , if not adjust permissions
NOTE: this does not means you always need to apply DSTV16, the needed patch is depending on the version found by the select.
List of all DST patch numbers: Note 412160.1 "Updated DST transitions and new Time Zones in Oracle Time Zone File patches" / H) Overview of what DST version is by default used / included in what Oracle RDBMS version and all DST patch numbers
Again do NOT create yourself any timezlrg.dat and timezone.dat files or links.
其中提到了timezone的時區資訊必須有時區檔案資訊一一對應
檢查了一下, 以下是輸出資訊:
SQL> col name format a30
SQL> col value$ format a10
SQL> select NAME, VALUE$ from SYS.PROPS$ where NAME like ('DST_%_TT_VERSION');
NAME VALUE$
------------------------------ ----------
DST_PRIMARY_TT_VERSION 14
DST_SECONDARY_TT_VERSION 0
這樣,就必須有時區資訊檔案
E:\app\Administrator\product\11.2.0\dbhome_1\oracore\zoneinfo\timezlrg_14.dat
E:\app\Administrator\product\11.2.0\dbhome_1\oracore\zoneinfo\timezone_14.dat
對應
檢查安裝目錄之後,果然沒有這兩個檔案。
從舊的安裝目錄拷貝至新的目錄之後,重新啟動,就再未出現這個問題
Errors in file e:\app\administrator\diag\rdbms\hydeezyg\hydeezyg\trace\hydeezyg_ora_9064.trc (incident=1):
ORA-00600: 內部錯誤程式碼, 引數: [qcisSetPlsqlCtx:tzi init], [], [], [], [], [], [], [], [], [], [], []
Errors in file e:\app\administrator\diag\rdbms\hydeezyg\hydeezyg\trace\hydeezyg_ora_9064.trc:
ORA-00600: 內部錯誤程式碼, 引數: [qcisSetPlsqlCtx:tzi init], [], [], [], [], [], [], [], [], [], [], []
在前端登入時也提示:
ORA-01804: 時區資訊無法初始化。
問題出現背景:
1. 客戶的測試,開發環境的資料庫在同一個資料庫伺服器上,某一天,客戶重灌了作業系統(資料檔案,控制檔案,引數檔案等都在磁碟上,並未丟失)
2. 作業系統重灌完成之後,我們的售後找我把庫拉起來.
3. 我以為開發環境安裝的資料庫軟體是11.2.0.4的版本,安裝11.2.0.4之後嘗試啟動資料庫,提示要startup upgrade
這時我才意識到客戶的資料庫是11.2.0.1的版本
4. 解除安裝11.2.0.4, 重灌11.2.0.1, 其中的一個庫OPEN之後並無問題,另外一個庫提示ORA-00600 qcisSetPlsqlCtx:tzi init]
檢查, 搜尋MOS, 看到了一篇文件:
ORA-600 [qcisSetPlsqlCtx:tzi init] after Database Restart (文件 ID 362036.1)
A) Oracle version 11.2 and higher:
A.1) check if the required DSt patch is applied/available in the $ORACLE_HOME
In 11.2 there are no timezlrg.dat and timezone.dat, this is normal and intended.
please do NOT make any symbolic links for timezlrg.dat and timezone.dat or copy any of the files in \oracore\zoneinfo\ and rename them to timezlrg.dat and timezone.dat
in 11.2 there should be NO timezlrg.dat and timezone.dat in $ORACLE_HOME/oracore/zoneinfo/ (unix) or %ORACLE_HOME%\oracore\zoneinfo\ (windows)
Oracle 11.2.0.1 has by default all RDBMS DST updates from DSTv1 to DSTv11 included in the software installation.
Oracle 11.2.0.2 through 11.2.0.4 has by default all RDBMS DST updates from DSTv1 to DSTv14 included in the software installation.
Oracle 12.1.0.1 and 12.1.0.2 has by default all RDBMS DST updates from DSTv1 to DSTv18 included in the software installation.
These files are found in $ORACLE_HOME/oracore/zoneinfo and have a prefix indicating the DST version.
For example timezlrg_4.dat is the DSTv4 "large" file, timezlrg_11.dat is the DSTv11 "large" file.
connect and check:
select NAME, VALUE$ from SYS.PROPS$ where NAME like ('DST_%_TT_VERSION');
DST_SECONDARY_TT_VERSION -> should normally be 0 , if this has a value then also check if it is applied
DST_PRIMARY_TT_VERSION -> required TZ file
if DST_PRIMARY_TT_VERSION is for example "16" then check if
$ORACLE_HOME/oracore/zoneinfo or %ORACLE_HOME%\oracore\zoneinfo
* contains timezone_16.dat and timezlrg_16.dat if not then apply the missing DSTv16 patch
* the files are readable for the ORACLE OS user , if not adjust permissions
NOTE: this does not means you always need to apply DSTV16, the needed patch is depending on the version found by the select.
List of all DST patch numbers: Note 412160.1 "Updated DST transitions and new Time Zones in Oracle Time Zone File patches" / H) Overview of what DST version is by default used / included in what Oracle RDBMS version and all DST patch numbers
Again do NOT create yourself any timezlrg.dat and timezone.dat files or links.
其中提到了timezone的時區資訊必須有時區檔案資訊一一對應
檢查了一下, 以下是輸出資訊:
SQL> col name format a30
SQL> col value$ format a10
SQL> select NAME, VALUE$ from SYS.PROPS$ where NAME like ('DST_%_TT_VERSION');
NAME VALUE$
------------------------------ ----------
DST_PRIMARY_TT_VERSION 14
DST_SECONDARY_TT_VERSION 0
這樣,就必須有時區資訊檔案
E:\app\Administrator\product\11.2.0\dbhome_1\oracore\zoneinfo\timezlrg_14.dat
E:\app\Administrator\product\11.2.0\dbhome_1\oracore\zoneinfo\timezone_14.dat
對應
檢查安裝目錄之後,果然沒有這兩個檔案。
從舊的安裝目錄拷貝至新的目錄之後,重新啟動,就再未出現這個問題
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8520577/viewspace-2152605/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-00600: 內部錯誤程式碼, 引數: [19004]
- 遇到ORA-00600: 內部錯誤程式碼, 引數: [kzsrgpw]
- ORA-00600: 內部錯誤程式碼, 引數: [kcbnew_3]
- ORA-00600: 內部錯誤程式碼, 引數: [kqlnrc_1]
- ORA-00600: 內部錯誤程式碼, 引數: [qertbFetchByRowID], [], [],
- ORA-00600: 內部錯誤程式碼,引數: [6122]
- ORA-00600: 內部錯誤程式碼, 引數: [kolaslGetLength-1], [], [], [], [], [], [], []
- ORA-00600: 內部錯誤程式碼, 引數: [kcbchg1_14]
- ORA-00600: 內部錯誤程式碼,引數: [kcbgtcr_12], [1], [], [], [], [], [], []
- ORA-00600: 內部錯誤程式碼, 引數: [12333]
- ORA-00600: 內部錯誤程式碼, 引數: [kcblasm_1], [103], [], [], [], [], [], []ASM
- ORA-00600: 內部錯誤程式碼,引數: [6002], [6], [28], [1], [52], [], [], []
- ORA-00600: 內部錯誤程式碼, 引數: [ktspScanInit-l1], [], [], [], [], [], [], []
- ORACLE ORA-00600: 內部錯誤程式碼, 引數: [kokbcvb1]與merge intoOracle
- ORA-00600: 內部錯誤程式碼, 引數: [kcrf_pvt_strand_bind1]CRF
- ORA-00600:內部錯誤程式碼,引數:[qertbFetchByRowID],[],[],[],[],[],[],[]分析與處理
- ORA-00600: 內部錯誤程式碼, 引數: [qosdDirRead: dircnt mismatch], [809], [808],
- 在刪除使用者時報ORA-00600: 內部錯誤程式碼, 引數: [13011]..
- ORA-00600: 內部錯誤程式碼, 引數: [ktspfmdb:objdchk_kcbnew_3], [9], [93111], [4],OBJ
- ORA-00600:內部錯誤程式碼,引數:[32695], [hash aggregation can't be done]的分析處理
- ORA-07445和ORA-00600系統內部錯誤查錯方法
- 版本9204中的內部錯誤:ORA-00600[qmxiUnpPacked2]
- 小程式內引數和掃碼引數統一
- mybatis引數型別錯誤MyBatis型別
- ORA-00600錯誤分析
- 除錯 Docker 容器內部程式除錯Docker
- PHP HTTP 500 - 內部伺服器錯誤PHPHTTP伺服器
- 伺服器內部錯誤500的原因伺服器
- ora-600內部錯誤的型別型別
- 無法顯示頁面,因為發生內部程式錯誤
- oracle錯誤之ORA-00600Oracle
- 一個SQL語句引發的ORA-00600錯誤排查(二)SQL
- 一個SQL語句引發的ORA-00600錯誤排查(一)SQL
- /etc/init.d/oracleasm createdisk錯誤OracleASM
- 關閉ubuntu討厭的內部錯誤提示Ubuntu
- zt_ora-600內部錯誤的型別型別
- win10 mstsc出現內部錯誤怎麼修復_win10 mstsc出現內部錯誤解決方法Win10
- MySQL 錯誤程式碼MySql