[url]http://jingyan.baidu.com/article/eae078278680c11fec548509.html[/url]
windows:
linux:
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数据库用户。通过使用Windows和Linux下的命令行工具,可以快速实现用户解锁并设置密码。这对于数据库管理员来说非常实用。
1810

被折叠的 条评论
为什么被折叠?



