Number of Oracle Sessions
SQL Statement
select count(1) from v$session@#DBLINK# s, v$process@#DBLINK# p
where s.paddr = p.addr and nvl(p.background,0) <> 1
Description
This custom alert counts the number of user sessions currently connected to the database and alerts the "DBAs" when that exceeds 100

|