Display Sessions
Sometimes it's handy to get an overview who ist connected to the database. This script gives you a brief overview and aggregates same user and machine.
SELECT username, machine, COUNT(*) "NUMBER OF SESSIONS" FROM v$session WHERE USERNAME IS NOT NULL GROUP BY username, machine ORDER BY 3;

Previous:
Calculate Freespace in ASM
