Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: log file sync wait
Ganesh:
Not very true. Slower log files with bigger log buffers are the main cause for log file sync waits. THis typically happens during a transaction end, either commit or rollback will make others wait for the log file sync.
To reduce this, you can keep the redo logs in the fastest disk, use no-logging wherever you can, reduce the commits,tune the sessions/processes parameter. And also there is an underscore parameter which will completely eliminate the log_file_sync waits. But that is against the Oracle's implementation of the ACID property in the transactional database system. You can use them during batch loads, benchmarks, _non_ production systems and test systems. But then the committed transactions are not necessarily committed transactions.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: K Gopalakrishnan INET: kaygopal_at_yahoo.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- 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 Mon May 05 2003 - 04:06:36 CDT