Operating System - HP-UX
1753325 Members
4897 Online
108792 Solutions
New Discussion юеВ

Re: Change Oracle user password !!

 
SOLVED
Go to solution
Chris Fung
Frequent Advisor

Change Oracle user password !!

Hi all,

If the oracle accounts do not "identified externally" therefore not using native operating system password to login oracle. How can the user change their password?? They need to issue "alter user identified by ;" to change their password !!

From the security point of view, is that granting "alter user" privilege to the normal user will allow them not only can change his/her password but also the others?? If yes, any other alternative solution to this issue.

Many thanks,

Chris,
4 REPLIES 4
A. Clay Stephenson
Acclaimed Contributor

Re: Change Oracle user password !!

A regular user (ted) can change his own password but if he attempts to 'alter user fred identified by cookie;' he will get an 'insufficient privilege' error from sqlplus.
If it ain't broke, I can fix that.
Aashish Raj
Valued Contributor
Solution

Re: Change Oracle user password !!

With oracle 8i, the user can use password command to change the password.

Yes, if you grant alter user privilege, that user can change other users passwords also .

Thanks
AR
Yogeeraj_1
Honored Contributor

Re: Change Oracle user password !!

hello,

if you are using Oracle 8i, you can create a procedure and grant execute on the procedure to users that are allowed to change password.

In the procedure you would use "execute_immediate()" to run the appropriate 'alter user $U identified by values ''$P''';
This applies to normal users.

Then for your superusers, you just grant them the "alter user" privilege if you want.

Hope this helps.

best regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
Shirish Joshi
Advisor

Re: Change Oracle user password !!

Hi Chris,
Any user with a 'CONNECT' privilege can change his/her password i.e. issue the 'ALTER USER identified by .

To enable changing other users authorization/resource privilege, the 'ALTER USER' privilege is required.

Regards,
Shirish