前端之家收集整理的这篇文章主要介绍了
sqlplus修改oracle用户的密码和解锁用户,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在
sqlplus下去
修改oracle
用户的密码和解锁
用户 1、使用oracle
用户登录,连接
数据库 [oracle@wuzj ~]$
sqlplus /nolog
sql*Plus: Release 10.2.0.1.0 - Production on Thu Feb 26 12:06:29 2009 Copyright (c) 1982,2005,Oracle. All rights reserved.
sql> conn /as sysdba Connected. 2、//
修改用户口令 语法格式:alter user
用户名 identified by 新密码;
sql> alter user system identified by manager; 3、解锁被锁定的oracle
用户 sql> alter user test account unlock; 4.重设sys
用户密码 Oracle 11g用口令
文件保存
用户的密码,这个口令
文件pwdSID.ora 放在$ORACLE_HOME$\app\product\11.2.0\dbhome_1\database目录下面。‘SID’是某个实例的名字。 例如:E:\app\Administrator\product\11.2.0\dbhome_1\database\PWD[SID(库名)].ora 使用Oracle
自带的orapwd命令来
修改 orapwd file=E:\app\Administrator\product\11.2.0\dbhome_1\database\PWD[SID(库名)].ora password=[新密码] entries=10 nosysdba=n force=y
原文链接:/oracle/213003.html