oracle 怎么修改sysdba密码

oracle 怎么修改sysdba密码,第1张

首先明确一点:先确认下你的用户名是什么,sysdba不是账号

你应该是sys账号用sysdba形式登录,误认为是sysdba

总之修改数据库用户密码如下:

修改当前用户的密码,直接执行下面的语句:

alter user scott identified by tiger;

如果修改其他用户的密码,得有相应权限然后执行这个语句

-------------------------------------------

普通用户密码忘记可以用有dba权限的账号登录去修改,sys用户密码忘记可以通过system登录修改,system用户密码忘记可以通过sys登录修改。

一、忘记除SYS、SYSTEM用户之外的用户的登录密码。

用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用户的密码都忘记或是丢失。 这一项尤其重要。 方法一、

可以使用ORAPWDEXE 工具修改密码。 开始菜单->运行->输入‘CMD’,打开命令提示符窗口,输入如下命令: orapwd file=D:\oracle\product\1020\db_1\database\pwdctcsysora password=newpass 这个命令重新生成了数据库的密码文件。密码文件的位置在ORACLE_HOME目录下 的\database目录下。 这个密码是修改sys用户的密码。除sys和system其他用户的密码不会改变。 方法二、 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 102010 - Production (3)执行ALTER USER DBSNMP ACCOUNT UNLOCK; (4) 从新用SQL/PLUS登录,设置用户名、密码; 附:Oracle 10g 默认安装带来的用户名/密码 UsernamePasswordDescriptionSee AlsoCTXSYSCTXSYS The 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 ConfigurationLBACSYSLBACSYS The 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 ReferenceMDSYSMDSYS The Oracle Spatial and Oracle interMedia Locator administrator accountOracle Spatial User's Guide and ReferenceDMSYSDMSYS The Oracle Data Mining accountOracle 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 GuideORDPLUGINSORDPLUGINS The Oracle interMedia user Plug-ins supplied by Oracle and third party format plug-ins are installed in this schemaOracle interMedia User's GuideORDSYSORDSYS The 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 outlinesOracle 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 tasksOracle Enterprise Manager Grid Control Installation and Basic ConfigurationSYSTEMMANAGERAnother account used to perform database administration tasks

以上就是关于oracle 怎么修改sysdba密码全部的内容,包括:oracle 怎么修改sysdba密码、oracle忘记用户名密码怎样办、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9711996.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存