溫馨提示×

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

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

自己收集oracle報(bào)錯(cuò)代碼及解決辦法

發(fā)布時(shí)間:2020-06-26 20:39:18 來(lái)源:網(wǎng)絡(luò) 閱讀:616 作者:涼了涼了 欄目:關(guān)系型數(shù)據(jù)庫(kù)

ORA-28547:connection to server failed,probable Oracle Net admin

listener.ora中注釋掉PROGRAM = extproc


ORA-09925: Unable to create audit trail file

show parameter audit_file_dest

mkdir parameter audit_file_dest中位置


ORA-01157/ORA-01110:

RAC1搭建DG后,關(guān)閉RAC1+DG庫(kù),RAC2數(shù)據(jù)庫(kù)無(wú)法打開(kāi)到open狀態(tài)

startup nomount;

alter database mount;

alter database open;

ERROR at line 1:

ORA-01157: cannot identify/lock data file 6 - see DBWR trace file

ORA-01110: data file 6:

'/oracle/app/oracle/product/11.2.0/db_1/dbs/<oracle_base>oradataorclGLOBAL.DBF'

alter database datafile 6 offline;

alter database open;

Database altered.


ORA-10456:

SQL> startup nomount  

ORACLE instance started.  

Total System Global Area  417546240 bytes  

Fixed Size                  2228944 bytes  

Variable Size             318770480 bytes  

Database Buffers           92274688 bytes  

Redo Buffers                4272128 bytes  

SQL> alter database mount standby database;  

Database altered.  

SQL> alter database open read only;  

Database altered.  

SQL>  alter database recover managed standby database using current logfile disconnect from session;  

Database altered. 


PRVG-1013:

rac環(huán)境添加節(jié)點(diǎn),預(yù)檢不通過(guò),無(wú)法繼續(xù)安裝,但實(shí)際已滿足安裝條件,比如:/u01/11.2.0/grid目錄存在,但預(yù)檢時(shí)卻檢查失敗

設(shè)置環(huán)境變量IGNORE_PREADDNODE_CHECKS=Y


向AI問(wèn)一下細(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