HOW TO ALTER PROFILE
Only common users who have been commonly granted the ALTER PROFILE system privilege can alter or drop the mandatory profile, and only from the CDB root. We cannot remove a limit from the DEFAULT profile. Making a Password Unavailable: The following statement makes the password of the new_profile profile unavailable for reuse for 90 days: ALTER PROFILE new_profile LIMIT PASSWORD_REUSE_TIME 90 PASSWORD_REUSE_MAX UNLIMITED; Setting Default Password Values: The following statement defaults the PASSWORD_REUSE_TIME value of the app_user profile to its defined value in the DEFAULT profile: ALTER PROFILE app_user LIMIT PASSWORD_REUSE_TIME DEFAULT PASSWORD_REUSE_MAX UNLIMITED; Limiting Login Attempts and Password Lock Time: The following statement alters profile app_user with FAILED_LOGIN_ATTEMPTS set to 5 and PASSWORD_LOCK_TIME set to 1: ALTER PROFILE a...