Posted inOracle
How to check Total, Active and Inactive sessions in Oracle database ?
To check the total, active, and inactive sessions in an Oracle database, you can query the V$SESSION view. Checking Total Sessions To get the total number of sessions: SELECT COUNT(*)…
