I am newbie to oracle sql developer 3.1.07.42, and have just installed it on my machine. I want to make a new connection, but it requires a user and a password which I do not kn
Use this below simple commands to create an user
-- Create a user CREATE USER youruser IDENTIFIED BY yourpassword; --Grant permissions GRANT CONNECT, RESOURCE, DBA TO demo;