The query below outputs the "logical reads" on all tables in the database by hour. Each snap_id is in a one hour time frame.
SELECT
a.snap_id,
e.begin_interval_time,
e.end_interval_time,
owner as schema,
object_name AS table_name,
logical_reads_delta as logical_reads_per_table
FROM
dba_hist_seg_stat a,
dba_hist_seg_stat_obj b,
dba_hist_sqlstat c,
dba_hist_snapshot e
WHERE
owner != 'SYS'
and owner != 'SYSTEM'
and a.snap_id = c.snap_id
and c.snap_id = e.snap_id
AND a.obj# = b.obj#
AND a.dataobj# = b.dataobj#
AND object_type = 'TABLE'
ORDER BY
a.snap_id;
Output:
snap_id begin_interval_time end_interval_time schema table_name logical_reads_per_table
------- ------------------------- ------------------------- ------ ----------------- -----------------------
8414 06/28/2012 7:00:11.006 AM 06/28/2012 8:00:16.540 AM WV90 WVT_WVPERFORATION 50288
8414 06/28/2012 7:00:11.006 AM 06/28/2012 8:00:16.540 AM WV90 WVT_WVPERFORATION 50288
8414 06/28/2012 7:00:11.006 AM 06/28/2012 8:00:16.540 AM WV90 WVT_WVPERFORATION 50288
8415 06/28/2012 8:00:16.540 AM 06/28/2012 9:00:21.516 AM EG USER_GROUP_LIST 105328
8415 06/28/2012 8:00:16.540 AM 06/28/2012 9:00:21.516 AM EG USER_GROUP_LIST 105328
I think there's duplicates because of unique SQL_IDs that hit each table (not showing that).
I need to do a left-join(I think) and grouping to get the specified output I really want.
I would like the output to be something like this...
SNAP_ID | BEGIN_INTERVAL_TIME | END_INTERVAL_TIME ->>> OWNER | OBJECT_NAME | LOGICAL_READS_DELTA (logical reads in the time frame)
Ideas?