ORACLE 10g、11g批量刷新用户密码
一、ORACLE 10g批量刷新用户密码
select 'alter user ' || username ||' identified by values '''||password ||''';' from dba_users where ACCOUNT_STATUS'LOCK' and ACCOUNT_STATUS not like 'EXPIRED%LOCKED';
一、ORACLE 10g批量刷新用户密码
select 'alter user ' || username ||' identified by values '''||password ||''';' from dba_users where ACCOUNT_STATUS'LOCK' and ACCOUNT_STATUS not like 'EXPIRED%LOCKED';