I am trying to create usernames and let the users pick their passwords the first time they log on for security purposes. So far, I have not been able to get this to work. I was using the syntax that was given in the Oracle books. My steps are below....
SQL> create user tester identified by xxxx
2 password expire;
User created.
SQL> commit;
then when I try to log on under this username.......
bash-2.03$ sqlplus
SQL*Plus: Release 8.1.6.0.0 - Production on Mon Mar 19 12:39:43 2001
(c) Copyright 1999 Oracle Corporation. All rights reserved.
Enter user-name: tester
Enter password: xxxx
Changing password for tester
New password: qqqq
Retype new password: qqqq
ERROR:
ORA-00988: missing or invalid password(s)
What is the problem? Why won't it change the password?
SQL> create user tester identified by xxxx
2 password expire;
User created.
SQL> commit;
then when I try to log on under this username.......
bash-2.03$ sqlplus
SQL*Plus: Release 8.1.6.0.0 - Production on Mon Mar 19 12:39:43 2001
(c) Copyright 1999 Oracle Corporation. All rights reserved.
Enter user-name: tester
Enter password: xxxx
Changing password for tester
New password: qqqq
Retype new password: qqqq
ERROR:
ORA-00988: missing or invalid password(s)
What is the problem? Why won't it change the password?