New Oracle 12c IO Outlier Views
With 12c Oracle provides a couple of new views that report IOs that take over 500ms. That 500ms threshold is modifiable via the hidden parameter _IO_OUTLIER_THRESHOLD. V$IO_OUTLIER V$LGWRIO_OUTLIER
With 12c Oracle provides a couple of new views that report IOs that take over 500ms. That 500ms threshold is modifiable via the hidden parameter _IO_OUTLIER_THRESHOLD. V$IO_OUTLIER V$LGWRIO_OUTLIER
Here is a query that will give you the last 24 hour summary. select to_char(first_time,’dd-mon-yy’) In_Day, round(sum(blocks*block_size)/1024/1024/1024,2) Total_GB_Archived, count(*) Num_of_Archs, round(sum(blocks*block_size)/1024/1024/count(*),2) Avg_MB_Per_Arch from v$archived_log where first_time>sysdate-1 group by to_char(first_time,’dd-mon-yy’) order by to_char(first_time,’dd-mon-yy’); Need to see the hourly archivelog data? — want to see archivelog data by the hour select to_char(first_time,’dd-mon-yy hh24′) InHour, round(sum(blocks*block_size)/1024/1024/1024,1) Total_GB_Archived, count(*) …
So you need a little data about how much archivelog your DB is producing? Read More »
For large Oracle Database footprints – say 8GB or above (not really too large any more) configure Linux huge pages and assure Oracle’s SGA is using manual or Automatic Shared Memory Management. Note Automatic Memory Management (using MEMORY_MAX_TARGET) is not compatible with Linux huge pages. Do not confuse Automatic Shared Memory Management / ASMM (which …
Linux Huge Page Configuration and Oracle Memory Management Compatibility Read More »
Getting an ADDM Report Manually – Not Using OEM Basically, generating an ADDM report requires that a ADDM task was created and executed. And creating an ADDM task requires that at least two “AWR snapshots” exist and are identified. To run the report only – if ADDM generation is already complete – query for the …
Oracle – Getting an ADDM Report Manually – Not Using OEM Read More »