Reputation: 39
How to turn off passwords verification in profile?
Upvotes: 0
Views: 60
Reputation: 7892
For the password verification function, you need to run (assuming myprofile
is the profile name used):
alter profile myprofile limit password_verify_function null;
For any other password limit, you need to run for the specific property (here password_life_time
):
alter profile myprofile limit password_life_time unlimited;
Upvotes: 1