--
-- SQL-команды, выполняемые в каждом сеансе
-- v$session, v$sqltext
--
-- SQL-команды, выполняемые в каждом сеансе
-- v$session, v$sqltext
--
select a.sid,
a.username,
s.sql_text
from v$session a, v$sqltext s
where a.sql_hash_value = s.hash_value
and a.sql_address = s.address
and a.username is not null
order by a.username, a.sid, s.piece;
--
-- Ресурсы потребляемые каждым сеансом
-- v$session, v$sess_io
--
-- Ресурсы потребляемые каждым сеансом
-- v$session, v$sess_io
--
select a.username, b.block_gets, b.consistent_gets, b.physical_reads,
b.block_changes, b.consistent_changes
from v$session a, v$sess_io b
where a.sid = b.sid
order by a.username;
--
-- К каким объектам обращается сессия
-- v$session, v$access
--
select a.sid, a.username, b.owner, b.object, b.type
from v$session a, v$access b
where a.sid = b.sid;
from v$session a, v$access b
where a.sid = b.sid;
--
-- Статистика по пользователям
-- v$session, v$sesstat, v$statname
--
select a.username, c.name, sum(b.value) value
from v$session a, v$sesstat b, v$statname c
where a.sid = b.sid
and b.statistic# = c.statistic#
and a.username is not null
and b.value != 0
group by a.username, c.name;
from v$session a, v$sesstat b, v$statname c
where a.sid = b.sid
and b.statistic# = c.statistic#
and a.username is not null
and b.value != 0
group by a.username, c.name;