Cardi
Cardi

Reputation: 39

ORACLE database PROFILE

How to turn off passwords verification in profile?

Upvotes: 0

Views: 60

Answers (1)

pifor
pifor

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

Related Questions