我已经安装了Oracle SQL Developer 11g并创建了许多连接,并尝试创建只能访问一个指定连接的用户
我该怎么做?
答案 0 :(得分:1)
您需要create a profile来限制会话数量:
create profile only_one_connection
limit sessions_per_user 1;
然后您需要alter the user并将该配置文件分配给用户:
alter user only_one
profile only_one_connection;
这假设您已经创建了用户only_one
并授予了create session
权限。您还可以在creating the user