Oracle - 限制用户只能访问一个连接

时间:2017-01-26 10:16:33

标签: sql oracle

我已经安装了Oracle SQL Developer 11g并创建了许多连接,并尝试创建只能访问一个指定连接的用户

我该怎么做?

1 个答案:

答案 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

时指定个人资料