Páginas

segunda-feira, 14 de novembro de 2016

[Oracle] - Identificando as sessões e seus processos no S.O


Segue abaixo, script para idenficar sessões e seus processos no S.O :

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;


quinta-feira, 10 de novembro de 2016

[Oracle] - Consulta para identificar quantidade de commits por sessão


Consulta para identificar quantidade de commits por sessão no Oracle:

select c.sid, a.name estatistica, c.username||'@'||c.machine usuario, sum(b.value) qtd_commits 
from v$statname a, v$sesstat b, v$session c 
where a.statistic#=b.statistic# 
and b.sid = c.sid 
and a.name = 'user commits' 
and c.username is not null 
having sum(b.value) > 0 
group by c.sid,a.name, c.username||'@'||c.machine 
order by qtd_commits desc;