Oracle tune waits - log file sync
1. Increase the Size of Log Buffer. --Check the Size of log buffer Show parameter log_buffer --Increase the size of log_buffer if dynamic allocation then set minimum size alter system set log_buffer=4194304 scope=spfile; --Restart the Oracle Database Shutdown immediate; Startup; 2. Increase the Archive Process for faster writing --Check the current log archive process show parameter log_archive_max_process --It show active status of process get in above parameter select process,status from v$archive_processes; --Increase the archive process alter system set log_archive_max_processes=10; 3. Reduce redo generation of unneeded tables like Logs table --Disable logging alter table scott.emp nologging; --Enable logging alter table scott.emp logging; 4. Tune the following parameter also help LOG_CHECKPOINT_TIMEOUT LOG_CHECKPOINT_INTERVAL FAST_START_IO_TARGET FAST_START_MTTR_TARGET 5. Increase the size of redo logs Online redo log files should be sizes to perform...