Create New User in Database
First Connect the System
Then create a new user CREATE USER ‘USER_NAME’ IDENTIFIED BY ‘PASSWORD’
Now give privileges which you want to give the new user. Giving privileges # grant dba to ‘user_name’; # grant all privileges to ‘user_name’;
Now you can connect your new user connection
Thanks…