The problem of oracle limiting the number of user connections

enable limit configuration
alter system set resource_limit=true;
create a connection number role named sess
number of create profile sess limit sessions_per_user;
assign to the user
alter user username profile sess;

when the maximum number of connections in a single database is 300, I use the above to set the number of connections to 3 for one user, so will other users share the remaining 297 connections? The users I specify are not affected by their connection? And how can I check the maximum number of connections for this user after setting up? the maximum number of connections for the entire database on the Internet

Mar.07,2021
Menu