限制用户(Tom)只允许100个并发连接
SQL> alter system set resource_limit=true;
SQL> create profile profile_TOM limit sessions_per_user 100;
SQL> ALTER USER tom profile profile_TOM;
本文介绍如何通过SQL命令设置Oracle数据库中特定用户的并发连接限制,包括启用资源限制、创建配置文件及分配用户权限。
限制用户(Tom)只允许100个并发连接
SQL> alter system set resource_limit=true;
SQL> create profile profile_TOM limit sessions_per_user 100;
SQL> ALTER USER tom profile profile_TOM;
347

被折叠的 条评论
为什么被折叠?