How to extend expiration date of an user
791045Apr 29 2011 — edited Apr 29 2011Oracle 11g 11.2.00
Our first Oracle system was installed in the end of last year...
Some passwords are supposed to expire during this weekend and I wouldn't like this to happen now.
I confirmed that the users i want to change are using the same profile : DEFAULT
And for this profile I have the values :
RESOURCE NAME : PASSWORD_LIFE_TIME
RESOURCE : PASSWORD
LIMIT 180
Can I just update this LIMIT row with an update command ?
update dba_profiles set limit = 180 where profile = 'DEFAULT' ;
Is it possible to do this ? Is it safe ?
Ed