sqlplus /as sysdba
select username, account_status
from dba_users
where username='HR';
alter user hr account unlock;
alter user hr identified by hr;
select *
from departments;
sqlplus /as sysdba
select username, account_status
from dba_users
where username='HR';
alter user hr account unlock;
alter user hr identified by hr;
select *
from departments;