mysql开启远程访问和oracl用户锁定问题

开启mysql远程访问

Grant all privileges on *.* to 'root'@'%' identified by 'root';

Flush privileges;

 

oracl锁定问题

sqlplus /nolog 

conn /as sysdba

alter user system account unlock;                      ##system为需要解锁的用户

alter profile default limit failed_login_attempts unlimited;

select resource_name,limit from dba_profiles where resource_name='FAILED_LOGIN_ATTEMPTS';

 

原文地址:https://www.cnblogs.com/yizhipanghu/p/9645275.html