
Who am I in v$session view???
Try this (include different columns depending on what you want):
SQL> select sid,serial#,username from v$session;
SID SERIAL# USERNAME
---------- ---------- ------------------------------
1 1
2 1
3 1
4 1
5 1
6 1
7 7037
8 7037
9 7037
10 7037
11 322 STEVE
11 rows selected.
Hope this helps,
Steve
Quote:
> Does anyone know how to determine, using the v$session view, which
> session is "me"???
> Thanks in advance!
> Rick