How to list active / open connections in Oracle?

oracle

Solution

Use the `V$SESSION` view.

`V$SESSION` displays session information for each current session.

Problem

Is there any hidden table, system variable or something to show active connections in a given moment?

Original source