Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: passwords

Re: passwords

From: Namia <namia_at_hotmail.com>
Date: Tue, 14 Nov 2000 15:53:37 +1100
Message-ID: <QB3Q5.31556$SF5.552557@ozemail.com.au>

Well I belwive that this is not supported by Oracle version 7 and is covered by Oracle 8....as oracle * has all these options which are not there in Oracle 7.XXX

Cheers
Namia

"David Fitzjarrell" <oratune_at_aol.com> wrote in message news:8upj4o$f71$1_at_nnrp1.deja.com...
> In our last gripping episode chartek_at_my-deja.com wrote:
> > How would I implement users having to change their passwords every X
> > number of days?
> >
> > Sent via Deja.com http://www.deja.com/
> > Before you buy.
> >
>
> First, create a general user profile and assign to it the password
> limiting parameters you want implemented:
>
> create profile limit_profile
> limit failed_login_attempts 5
> password_life_time 90
> password_reuse_max 3
> password_reuse_time unlimited;
>
> Now alter the users to set their profile to 'limit_profile':
>
> alter user elmo
> profile limit_profile;
>
> Do this for each user you wish to password restrict. Now the user
> cannot have any more than 5 failed login attempts, will have a 90 day
> password lifetime and cannot reuse the last 3 passwords.
>
> --
> David Fitzjarrell
> Oracle Certified DBA
>
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Received on Mon Nov 13 2000 - 22:53:37 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US