How to create a user in Oracle SQL developer

前端 未结 4 1534
萌比男神i
萌比男神i 2021-02-13 02:29

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

4条回答
  •  青春惊慌失措
    2021-02-13 03:12

    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;
    

提交回复
热议问题