Oracle 11g New Features
Oracle 11g New Features
==============================================
=
Oracle Database 11g now offers a way to quickly identify
users with default passwords, implemented in the rather
ludicrously simple way of checking a single data dictionary
view: DBA_USERS_WITH_DEFPWD
You can simply identify these users by issuing:
SELECT * FROM dba_users_with_defpwd;
==============================================
==