EliseFreedman
Programmer
Im a little confused at the moment.
Im creating a student record system using Oracle.
Ive created a tutor role which currently doesnt have a password. I used the following code to create the role
Ive given the role rights to connect to the database
Ive created a tutor profile using the following commands
finally Ive created a tutor user account which uses the tutor role and profile.
This code all seemed to work ok when i was running it. However, I am now trying to login as the tutor user.
However, I keep being asked for a password and when i dont enter anything and hit enter, I get the following error message
ERROR:
ORA-01005: null password given; logon denied
It then tells me that im no longer connected.
What, if anything am I doing wrong?
Im creating a student record system using Oracle.
Ive created a tutor role which currently doesnt have a password. I used the following code to create the role
Ive given the role rights to connect to the database
Code:
create role TutorRole;
grant connect to TutorRole;
Ive created a tutor profile using the following commands
Code:
create profile "TutorProfile" LIMIT
failed_login_attempts 5
password_lock_time 10/1440;
finally Ive created a tutor user account which uses the tutor role and profile.
Code:
CREATE USER "TUTOR" PROFILE "TutorProfile"
IDENTIFIED BY notidentified;
Grant TutorRole to Tutor;
This code all seemed to work ok when i was running it. However, I am now trying to login as the tutor user.
However, I keep being asked for a password and when i dont enter anything and hit enter, I get the following error message
ERROR:
ORA-01005: null password given; logon denied
It then tells me that im no longer connected.
What, if anything am I doing wrong?