052-186(新增70题2018)

The database users are connecting to the PROD database from different applications, thereby degrading the database performance.

The senior database administrator suspects the large number of concurrent connections to be the reason for low performance and asks you to restrict the number concurrent connections per database user to one.

Which action would you take to achieve this objective?

A. set the SESSIONS to 1 in the parameter file

B. grant SINGLE SESSION privilege to all of the users

C. set the SESSIONS_PER_USER to 1 in the users' profile

D. grant RESTRICTED SESSION privilege to all of the database users

E. create a role with SINGLE SESSION privilege and assign the role to the users

Answer: C

Oracle Profile使用详解

create profile app_user limit sessions_per_user 1 --只能每个用户连接一个会话

alter user dinya profile app_user; 

 

        
alter user dinya profile default;
连接成功。

posted @ 2018-03-15 17:26  巴啦啦大魔王  阅读(172)  评论(0编辑  收藏  举报