problem when creating a new connection in SQL developer [closed]

99封情书 提交于 2020-01-16 08:19:09

问题


when I created a new connection I find that it contains same content as the previous one, even I have not written anything to this new connection.


回答1:


A SQL Developer connection is just a session. If you use the same username as an existing connection's user you will see the objects belonging to that schema.

If you want to create a new user you actually have to create a new user. Connect as SYS (using SYSDBA connection) and

create user new_user identified by some_password
default tablespace users;
grant create session, create table, create procedure to new_user;
grant quota 100M on users to new_user;

Obviously give the user an appropriate name for your needs. Grant it all the privileges it needs. Find out more.

Once you have created the user you can create a SQL Developer connection for it.



来源:https://stackoverflow.com/questions/59230826/problem-when-creating-a-new-connection-in-sql-developer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!