35 lines
1007 B
MySQL
35 lines
1007 B
MySQL
|
|
-- -----------------------------------------------------------------------------------
|
||
|
|
-- File Name : https://oracle-base.com/dba/monitoring/sessions_rac.sql
|
||
|
|
-- Author : Tim Hall
|
||
|
|
-- Description : Displays information on all database sessions for whole RAC.
|
||
|
|
-- Requirements : Access to the V$ views.
|
||
|
|
-- Call Syntax : @sessions_rac
|
||
|
|
-- Last Modified: 21/02/2005
|
||
|
|
-- -----------------------------------------------------------------------------------
|
||
|
|
SET LINESIZE 500
|
||
|
|
SET PAGESIZE 1000
|
||
|
|
|
||
|
|
COLUMN username FORMAT A15
|
||
|
|
COLUMN machine FORMAT A25
|
||
|
|
COLUMN logon_time FORMAT A20
|
||
|
|
|
||
|
|
SELECT NVL(s.username, '(oracle)') AS username,
|
||
|
|
s.inst_id,
|
||
|
|
s.osuser,
|
||
|
|
s.sid,
|
||
|
|
s.serial#,
|
||
|
|
p.spid,
|
||
|
|
s.lockwait,
|
||
|
|
s.status,
|
||
|
|
s.module,
|
||
|
|
s.machine,
|
||
|
|
s.program,
|
||
|
|
TO_CHAR(s.logon_Time,'DD-MON-YYYY HH24:MI:SS') AS logon_time
|
||
|
|
FROM gv$session s,
|
||
|
|
gv$process p
|
||
|
|
WHERE s.paddr = p.addr
|
||
|
|
AND s.inst_id = p.inst_id
|
||
|
|
ORDER BY s.username, s.osuser;
|
||
|
|
|
||
|
|
SET PAGESIZE 14
|