How to find the number of session per DB?
SQL> select count(*) from v$session;
COUNT(*)
----------
58
Does this means I have 58 sessions for that instance? Thanks.
0