Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Log file synch / direct path writes
> result of a overly large redo log buffer.
How large is it?
> How can I be sure that the [direct path write] waits
> are being caused by DBWR and not LGWR?
In v$session_wait, for the "direct path write" wait event P1 is the file number. Waits for DBWR will be associated with a different set of files than waits for LGWR.
Set up a loop to query v$session_wait every 5 seconds -- INSERT INTO test_table SELECT P1 FROM v$session_wait WHERE wait equals "direct path write". Let it run for a while to collect values of P1 for this wait event into your test table. Then SELECT from the test table, doing a group by and count(*), so you can see which files are involved with these waits.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Greg Moore INET: sqlgreg_at_pacbell.net Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Sat Jun 22 2002 - 14:33:21 CDT
![]() |
![]() |