Odi's astoundingly incomplete notes
New entries | CodeDisable Oracle's password expiry
Unlike older releases, Oracle 11g sets password expiry by default. That's really annyoing
- for SYS and SYSTEM: noboday wants to regularly change (and forget) them.
- for any accounts that are used by application servers: the password is usually configured in a datasource file, nobody would ever want to change it
- if some superusers directly access the DB and keep forgetting the password, the automatic locking will lock your application out: not great for your uptime.
ALTER PROFILE DEFAULT LIMIT FAILED_LOGIN_ATTEMPTS UNLIMITED PASSWORD_LIFE_TIME UNLIMITED;And also let's turn off the default auditing:
NOAUDIT ALL; DELETE FROM SYS.AUD$;
First anyone knows there is a problem is when the SAP system stops.
Pain in the proverbial.
Brian Jones
Since you are talking about applications, Oracle Applications uses the same scheme you mentioned for passwords as in SAP (at the application level).
kbork
Brian
Thanks very much
Thanassis
Thanxs Man
Regards Zoebi
Oracl User 'people' is used to validate a peoplesoft user id... And then and only then is the peoplesoft user connect id switched over to the oracle account that actually owns the application and program code tables.
In short, apparently just like SAP, application users are never setup as oracle users.
And when the people id expires, etc, then all background processing most definitely croaks and with very misleading error information
Thanks for the info!
JerryQ