How to create a user in Oracle SQL developer

前端 未结 4 1527
萌比男神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 02:48

    I thinks you should use "Database Configuration Assistant" to create new database and U can set user name and password and use it in oracle SQL Developer!!!

    0 讨论(0)
  • 2021-02-13 02:54

    Steps for creating new user :

    1)Open Sql Developer, make new connection.

    2)Login with System username and password(made during installation).

    3)Once you connect, expand the System user (under Connections, in the left pane) and scroll down to Other users. Then right click users and add new user.

    4)Give its username and password & select appropriate system privilege.

    5)You are done now, check by making new connection.

    0 讨论(0)
  • 2021-02-13 02:59

    you should install database software in your local pc/laptop then create user in the database and you can connect the database via sql developer by key in username and password that already created.If you want to connect to other database same step like the previous step but before that you need to point to the remote database.

    0 讨论(0)
  • 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;
    
    0 讨论(0)
提交回复
热议问题