亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

Chinaunix

標(biāo)題: oracle9i 安裝后的密碼問題 [打印本頁]

作者: nutuge    時(shí)間: 2003-05-23 10:55
標(biāo)題: oracle9i 安裝后的密碼問題
linux8.0 + oracle 9.2.0

oracle9i 安裝過程中沒有提示修改密碼的界面

安裝完成后,運(yùn)行sqlplus 卻提示密碼
嘗試了以下所有用戶名和密碼都不行
internal/oracle
sys/change_on_install
system/manager
scott/tiger

我該怎么辦?
作者: pydwh    時(shí)間: 2003-05-23 11:04
標(biāo)題: oracle9i 安裝后的密碼問題
9i中已取消internal/oracle 。
先試一下下面的方法:
sqlplus /nolog
conn / as sysdba;
alter user sys identified by sys;
alter user system identified by manager;
alter user scott identified by tiger;
如果成功,再用改了密碼后的任一用戶登陸檢驗(yàn)一下。
作者: nutuge    時(shí)間: 2003-05-23 11:14
標(biāo)題: oracle9i 安裝后的密碼問題
出錯(cuò)了,請(qǐng)看!·
#sqlplus /nolog
sql >;conn / as sysdba;
connected an idle instance.
sql>;alter user sys identified by password;
alter user sys identified by password;
*
error at line 1:
ora-01034racle not available
sql>;
作者: yxq    時(shí)間: 2003-05-23 11:23
提示: 作者被禁止或刪除 內(nèi)容自動(dòng)屏蔽
作者: kingbird    時(shí)間: 2003-05-23 11:25
標(biāo)題: oracle9i 安裝后的密碼問題
服務(wù)沒有處于正常啟動(dòng)狀態(tài)

>;sqlplus /nolog
>;connect /as sysdba
>;startup open
>;select status from v$instance
status
--------
open
>;alter user sys identified sys;
作者: nutuge    時(shí)間: 2003-05-23 11:36
標(biāo)題: oracle9i 安裝后的密碼問題
對(duì)不起,各位,我是第一次安裝oracle
又出錯(cuò)!
#sqlplus /nolog
sql >;conn / as sysdba;
connected an idle instance.
sql>;startup
ora-01078:failure in processing system parameters
lrm-00109:codld not open parameter file '/opt/oracle/product/9.2.0/dbs/inittest.ora'
sql>;
作者: nutuge    時(shí)間: 2003-05-23 12:51
標(biāo)題: oracle9i 安裝后的密碼問題
頂下呀

幫幫我。。
作者: nutuge    時(shí)間: 2003-05-23 14:52
標(biāo)題: oracle9i 安裝后的密碼問題
up
作者: nutuge    時(shí)間: 2003-05-23 15:39
標(biāo)題: oracle9i 安裝后的密碼問題
服務(wù)已經(jīng)正常啟動(dòng)了!
但是修改密碼時(shí)還是提示出錯(cuò)
SQL>; connect / as sysdba
SQL>; startup nomount
ORACLE instance started.

Total System Global Area 70062220 bytes
Fixed Size 450700 bytes
Variable Size 62914560 bytes
Database Buffers 6553600 bytes
Redo Buffers 143360 bytes
SQL>;  
SQL>; alter user sys identified by sys
alter user sys identified by sys
                                           *
error at line 1:
ora-01109:database not open
作者: pydwh    時(shí)間: 2003-05-23 16:05
標(biāo)題: oracle9i 安裝后的密碼問題
原帖由 "nutuge" 發(fā)表:
服務(wù)已經(jīng)正常啟動(dòng)了!
但是修改密碼時(shí)還是提示出錯(cuò)
SQL>; connect / as sysdba
SQL>; startup nomount
ORACLE instance started.

Total System Global Area 70062220 bytes
Fixed Size 450700 bytes..........


startup nomount 只啟動(dòng)實(shí)例,沒打開數(shù)據(jù)庫。
你應(yīng)該執(zhí)行:
SQL>;startup
就行了
建議看一下這篇文章:
Oracle數(shù)據(jù)庫有哪幾種啟動(dòng)方式
作者: nutuge    時(shí)間: 2003-05-23 16:57
標(biāo)題: oracle9i 安裝后的密碼問題
啟動(dòng)服務(wù)時(shí)出錯(cuò),請(qǐng)看·
修改密碼還是出錯(cuò)
>;sqlplus /nolog
>;connect /as sysdba
>;startup
ORACLE instance started.

Total System Global Area 70062220 bytes
Fixed Size 450700 bytes
Variable Size 62914560 bytes
Database Buffers 6553600 bytes
Redo Buffers 143360 bytes
ora-01506:missing or illegal database name
>;alter user sys identified sys;

alter user sys identified by sys
*
error at line 1:
ora-01109:database not open
>;
作者: pydwh    時(shí)間: 2003-05-23 17:02
標(biāo)題: oracle9i 安裝后的密碼問題
原帖由 "nutuge" 發(fā)表:
啟動(dòng)服務(wù)時(shí)出錯(cuò),請(qǐng)看·
修改密碼還是出錯(cuò)
>;sqlplus /nolog
>;connect /as sysdba
>;startup
ORACLE instance started.

Total System Global Area 70062220 bytes
Fixed Size 450700 bytes
V..........

這個(gè)已經(jīng)不是這個(gè)做法的正確與否的問題,而是你的數(shù)據(jù)庫的設(shè)置可能有問題,它根本就打不開。沒有打開數(shù)據(jù)庫進(jìn)行修改當(dāng)然要出錯(cuò)。檢查一下你的參數(shù)文件或指定pfile來打開數(shù)據(jù)庫。
startup pfile=參數(shù)文件名
作者: nutuge    時(shí)間: 2003-05-24 15:35
標(biāo)題: oracle9i 安裝后的密碼問題
pydwh 非常感謝您!
由于我第一次用oralce,所以,麻煩您給我詳細(xì)的講解一下好嗎?謝謝您!
作者: pydwh    時(shí)間: 2003-05-24 19:59
標(biāo)題: oracle9i 安裝后的密碼問題
先檢查一下初始化參數(shù)文件中db_name是否正確設(shè)置。
ORA-01506 missing or illegal database name

Cause: No database name was specified in the CREATE/ALTER DATABASE statement, and no
DB_NAME initialization parameter was specified.

Action: Either the database name must be given in the statement or in the DB_NAME
initialization parameter. Note that the SVRMGR or SQL*PLUS STARTUP command issues an
ALTER DATABASE statement using the database name specified as part of STARTUP (if any).
作者: nutuge    時(shí)間: 2003-05-25 16:44
標(biāo)題: oracle9i 安裝后的密碼問題
感謝各位好心人的幫助,我的問題已經(jīng)解決!
明天我會(huì)把我安裝過程和解決問題的辦法發(fā)上來,方便其他人查看!·

再次感謝!
作者: Sniper King    時(shí)間: 2003-05-26 10:00
標(biāo)題: oracle9i 安裝后的密碼問題
英雄原來是oracle高手,失敬失敬……
原來他不止會(huì)灌水啊……
想像ing...




歡迎光臨 Chinaunix (http://www.72891.cn/) Powered by Discuz! X3.2