Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error when creating a user on Windows 2000

Status
Not open for further replies.

IamElsa

Programmer
May 2, 2001
2
ZA
I get the following errors when I try to create an user:
SQL> create user bob
2 identified by along
3 default tablespace data01
4 temporary tablespace temp
5 quota 1m on data01
6 quota 1m on indx01
7 password expire;
create user bob
*
ERROR at line 1:
ORA-28003: password verification for the specified password failed
ORA-20003: Password should contain at least one digit, one character and one
punctuation

Can someone please help me?
 
You apparently are using a password verification function on your system that enforces rules for password complexity. Based on the error message you should be able to create the user with a password like

create user bob identified by number_1
 
Thanks for the reply. I've tried the password that you suggested and it worked!
 
SQL> alter user pp20019 identified by pncbank_1;
alter user pp20019 identified by pncbank_1
*
ERROR at line 1:
ORA-28003: password verification for the specified password failed
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top