Oracle密碼檔案的作用和說明

2021-05-10 21:04:45 字數 1149 閱讀 7251

4.如果丟失了passwdfile

如果使用passwdfile卻意外丟失,此時將不能啟動資料庫

sql> startup force;

oracle instance started.

total system global area 131142648 bytes

fixed size 451576 bytes

variable size 104857600 bytes

database buffers 25165824 bytes

redo buffers 667648 bytes

ora-01990: error opening password file '/opt/oracle/product/9.2.0/dbs/orapw'

ora-27037: unable to obtain file status

linux error: 2: no such file or directory

additional information: 3

此時可以通過orapwd重建口令檔案來解決

此處我們恢復口令檔案既可

sql> !

[oracle@jumper oracle]$ mv $oracle_home/dbs/orapwhsjf.bak orapwhsjf

[oracle@jumper oracle]$ exit

exit

sql> alter database open;

database altered.

sql>

大致就是如此.

6.重建口令檔案

如果口令檔案丟失,可以使用orapwd可以重建口令檔案,語法如下:

[oracle@jumper oracle]$ orapwdusage: orapwd file= password= entries= where

file - name of password file (mand),

password - password for sys (mand),

entries - maximum number of distinct dba and opers (opt),

there are no spaces around the equal-to (=) character.

oracle密碼檔案

很多時候需要對oracle密碼檔案進行重建,oracle對密碼檔案有著較為嚴格的要求,比如檔名,檔名大小寫等等,有一次因oracle sid的大小寫折騰了很久,現記錄如下 linux平台 orapwd file oracle home dbs orapw oracle sid password en...

oracle密碼檔案

很多時候需要對oracle密碼檔案進行重建,oracle對密碼檔案有著較為嚴格的要求,比如檔名,檔名大小寫等等,有一次因oracle sid的大小寫折騰了很久,現記錄如下 linux平台 orapwd file oracle home dbs orapw oracle sid password en...

ORACLE建立密碼檔案

首先通過 select from v pwfile users 查詢密碼檔案是否存,如果無記錄返回,說明檔案不存在,則通過orapwd建立。d oracle ora92 database orapwd file pwdcjh.ora password cjh entries 2 其中引數entrie...