欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Oracle忘记数据库密码

程序员文章站 2024-01-09 16:48:28
...
http://jingyan.baidu.com/article/eae078278680c11fec548509.html

windows:
echo %ORACLE_SID%   
set ORACLE_SID=orcl
sqlplus / as sysdba
alter user you_username identified by you_password;
alter user you_username account unlock;


linux:
echo $ORACLE_SID
set ORACLE_SID=orcl
sqlplus / as sysdba
alter user you_username identified by you_password;
alter user you_username account unlock;
相关标签: Oracle忘记密码

上一篇:

下一篇: