解决方式
1、查看锁定账户信息状态是否是locked
select username,user_id,account_status,lock_date,default_tablespace
from dba_users where username = 'RTM';
2、修改账号状态open
ALTER USER rtm ACCOUNT UNLOCK;
commit;
解决方式
1、查看锁定账户信息状态是否是locked
select username,user_id,account_status,lock_date,default_tablespace
from dba_users where username = 'RTM';
2、修改账号状态open
ALTER USER rtm ACCOUNT UNLOCK;
commit;