hi,
My problem again is with regard to redo log buffer. I just joined in a firm as a beginner and here the redo log buffer is seen to be set as 29 MB .But still the log space waits and more importantly the log file sync is seen to be increasing in an enormous rate. could anybody give me advice regarding tuning of this. Stats are given below. Commit rate for the application is very high
SQL> select name,value from v$sysstat where name like '%redo%';
NAME VALUE
------------------------------------------------------------redo synch writes 31769
redo synch time 0
redo entries 417554
redo size 128271040
redo buffer allocation retries 4
redo wastage 5873652
redo writer latching time 0
redo writes 32554
redo blocks written 270474
redo write time 0
redo log space requests 4
redo log space wait time 0
redo log switch interrupts 0
redo ordering marks 40
14 rows selected.
SQL> select SUBSTR(EVENT,1,27),TOTAL_WAITS T_W,TOTAL_TIMEOUTS T_T,
2 TIME_WAITED T_WD,AVERAGE_WAIT A_WAIT
3 from v$system_event where event like '%log%';
SUBSTR(EVENT,1,27) T_W Tot_T T_WD A_WAIT
--------------------- ---- ---- ----- -------
log file sequential read 16 0 0 0
log file single write 24 0 0 0
log file parallel write 32563 0 0 0
log file switch completion 4 0 0 0
log file sync 31942 11 0 0
thanx in advance for any help