① oracle忘記用戶名密碼怎麼辦
用SYS (或SYSTEM)用戶登錄。 CONN SYS/PASS_word AS SYSDBA; 使用如下語句修改用戶的密碼。 ALTER USER user_name IDENTIFIED BY newpass; 注意:密碼不能全是數字。並且不能是數字開頭。否則會出現:ORA-00988: 口令缺失或無效 二、忘記SYS用戶,或者是SYSTEM用戶的密碼。 如果是忘記SYSTEM用戶的密碼,可以用SYS用戶登錄。然後用ALTER USER 密令 修改密碼。 CONN SYS//PASS_WORD AS SYSDBA; ALTER USER SYSTEM IDENTIFIED BY newpass; 如果是忘記SYS用戶的密碼,可以用SYSTEM用戶登錄。然後用ALTER USER 密令 修改密碼。 CONN SYSTEM//PASS_WORD ; ALTER USER SYSTEM IDENTIFIED BY newpass; 三、如果SYS,SYSTEM用戶的密碼都忘記或是丟失。 這一項尤其重要。 可以使用ORAPWD.EXE 工具修改密碼。 開始菜單->運行->輸入『CMD』,打開命令提示符窗口,輸入如下命令: orapwd file=D:\oracle\proct\10.2.0\db_1\database\pwdctcsys.ora password=newpass 這個命令重新生成了資料庫的密碼文件。密碼文件的位置在ORACLE_HOME目錄下 的\database目錄下。 這個密碼是修改sys用戶的密碼。除sys和system其他用戶的密碼不會改變。
② Oracle忘記用戶名密碼怎麼辦
登錄到安裝oracle資料庫伺服器的操作系統。打開命令窗口;
③ Oracle資料庫sys用戶忘記了密碼怎麼辦
安裝完資料庫很久不用常常會忘記其密碼,碰到這種情況不要動不動就重裝資料庫,按其下方法修改即可x0dx0a忘記sys,system用戶的密碼:x0dx0a使用ORAPWD.EXE工具修改密碼:在開始菜單點擊『運行』,輸入『cmd』,打開命令提示窗口,輸入如下命令:x0dx0aorapwd file=d:\oracle\proct\10.1.0\Db_2\database\pwdctcsys.ora password=123456x0dx0a這個命令重新生成了資料庫密碼文件。密碼文件的位置在ORACLE_HOME目錄下的\database目錄下。這個密碼是修改sys用戶的密 碼。 除了sys和system其它用戶的密碼不會改變。x0dx0a忘記system用戶的密碼:x0dx0a可以用sys用戶登錄。然後用alter user命令修改密碼。如:x0dx0aconn sys/pass_word as sysdba;x0dx0aalter user system identified by newpass;x0dx0a忘記sys用戶密碼:x0dx0a可以用system用戶登錄。然後用alert user 命令修改密碼,如:x0dx0aCONN SYSTEM/PASS_WORD;x0dx0aALTER USER SYSTEM IDENTIFIED BY NEWPASS;x0dx0a忘記除sys/system用戶之外的用戶的登錄密碼。x0dx0a用sys(或者system)登錄。CONN SYS/PASS_WORD AS SYSDBA;x0dx0a使用如下語句修改用戶的密碼。ALTER USER USER_NAME IDENTIFIED BY NEWPASS;主要密碼不能是全數字且不能以數字開頭。x0dx0a(1)CONN SYS/PASS AS SYSDBA;//以DBA的身份登錄
④ Oracle忘記用戶名密碼怎麼辦.wps
對於oracle10g來說:1.如果不記得sys用戶的密碼了,採用如下方法可以修改密碼:
(1)打開cmd,輸入sqlplus /nolog,回車。
(2)輸入「conn / as sysdba」;
(3)輸入「alter user sys identified by 新密碼;」(新密碼必須以字母開頭,另外每條SQL語句後得分號不能忘)
其他用戶方式同理2.(1)在cmd中啟動sqlplus; (2)用sqlplus/as sysdba登錄,使其連接到: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Proction (3)執行ALTER USER DBSNMP ACCOUNT UNLOCK; (4) 從新用SQL/PLUS登錄,設置用戶名、密碼; 附:Oracle 10g 默認安裝帶來的用戶名/密碼 AlsoCTXSYSCTXSYSThe Oracle Text accountOracle Text ReferenceDBSNMPDBSNMPThe account used by the Management Agent component of Oracle Enterprise Manager to monitor and manage the databaseOracle Enterprise Manager Grid Control Installation and Basic Oracle Label Security administrator accountOracle Label Security Administrator's GuideMDDATAMDDATAThe schema used by Oracle Spatial for storing Geocoder and router dataOracle Spatial User's Guide and ReferenceMDSYSMDSYSThe Oracle Spatial and Oracle interMedia Locator administrator accountOracle Spatial User's Guide and ReferenceDMSYSDMSYSThe Oracle Data Mining account.Oracle Data Mining Administrator's GuideOracle Data Mining ConceptsOLAPSYSMANAGERThe account used to create OLAP metadata structures. It owns the OLAP Catalog (CWMLite).Oracle OLAP Application Developer's GuideORDPLUGINSORDPLUGINSThe Oracle interMedia user. Plug-ins supplied by Oracle and third party format plug-ins are installed in this schema.Oracle interMedia User's GuideORDSYSORDSYSThe Oracle interMedia administrator accountOracle interMedia User's GuideOUTLNOUTLNThe account that supports plan stability. Plan stability enables you to maintain the same execution plans for the same SQL statements. OUTLN acts as a role to centrally manage metadata associated with stored outlines.Oracle Database Performance Tuning GuideSI_INFORMTN_SCHEMASI_INFORMTN_SCHEMAThe account that stores the information views for the SQL/MM Still Image StandardOracle interMedia User's GuideSYSCHANGE_ON_INSTALLThe account used to perform database administration tasksOracle Database Administrator's GuideSYSMANCHANGE_ON_INSTALLThe account used to perform Oracle Enterprise Manager database administration tasks. Note that SYS and SYSTEM can also perform these tasks.Oracle Enterprise Manager Grid Control Installation and Basic account used to perform database administration tasks.
⑤ oracle資料庫中忘記用戶名和密碼怎麼辦
到伺服器端使用超級用戶(sysdba)登陸:
sqlplus /nolog.
conn / as sysdba .
然後修改密碼;
alter user XXXX identified by XXXXXX.
sqlplus的密碼就是oracle用戶的密碼。用系統用戶比如windows的administrator,或UNIX/LINUX的oracle用戶進入,然後用sqlplus / as sysdba進入,然後就可以用命令修改相關用戶密碼。ALTER USER 用戶名 IDENTIFIED BY 密碼。
⑥ 忘記了oracle資料庫用戶的密碼,怎麼辦
我們使用oracle資料庫的時候,如果忘記了用戶密碼就無法登錄oracle管理界面了。那麼該如何解決這個問題呢?下面我給大家分享一下。
cmd命令行
首先打開運行界面,在輸入框中輸入CMD命令,如下圖所示
接下來會打開CMD命令行窗口,我們將會在命令行中進行密碼的變更,如下圖所示
然後我們通過sqlplus連接oracle資料庫,如下圖所示
最後運用sql語句將用戶的密碼進行更改即可,如下圖所示