disable password verify function in oracle
Password verify function can be disabled by setting it to null.
To make the password more complex most DBA's set the complexity to oracle provided package.As default password complexity provided in oracle script doesn't satisfy your organizations requirements.
SOLUTION:
alter profile default limit password_verify_function null;
To Enable it back :
alter profile default limit password_verify_function your-password-verify-function-name ;
Thank you so much! It really helped me today! Thankful.
ReplyDeleteThanks dear...problem resolved.
ReplyDelete