How to activate the hr schema in Oracle 11g

ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;

Then, enter this command

CONNECT HR/HR


This may help

ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;

GRANT CONNECT, RESOURCE to hr;

ALTER USER oe IDENTIFIED BY OE ACCOUNT UNLOCK;

GRANT CONNECT, RESOURCE to OE;


Not sure this should even be an answer since the question is kind of light on concrete details, but you need to grant the appropriate privileges on the database to the new users for them to be usable.

For example you need to grant "create session" for the user to be able to connect and appropriate access to the tables the users should have access to.

Then the users have the correct privileges, you should be fine using SQL developer.

You can find a sample that may help you setting up a user correctly over here but setting up permissions on the database is a bit dependent on how you want the security to work (ie read-only, stored procedures, access to certain tables restricted...)