Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

   
 

v$archive_dest Tips

Oracle Database Tips by Donald BurlesonDecember 9, 2015

Oracle Data GuardChapter 5 - Log Management Services

Acknowledging Redo Disk I/O Operation on the Standby Database

When AFFIRM is used with LGWR, the log writer will wait for the disk I/O to complete on the standby site before the control is returned to application. Similarly, when it is used with ARCH, the archiver will not release online redo logs for LGWR to reuse until the redo log is completely and successfully archived on the standby site. The default setting is NOAFFIRM.

The following example shows a sample setting:

LOG_ARCHIVE_DEST_3='SERVICE=appsstdby1 LGWR AFFIRM'

The script, log_dest_attr.sql, from code depot to see the attributes of the log transfer service in the operating environment. A sample output of this script is shown below:

column dest_name     format a20 trunc
column binding       format a9
column reopen_secs   format 999
column alternate     format a20 trunc
column dependency    format a20 trunc
column transmit_mode format a12
column async_blocks  format 99999
column affirm        format a3


select
   dest_name,
   binding,
   reopen_secs,
   alternate,
   dependency,
   transmit_mode,
   decode(transmit_mode,'asynchronous',async_blocks,0)
          async_blocks,
   affirm
from

   See code depot for full scripts
   v$archive_dest;


DEST_NAME       BINDING   REOPEN_SECS ALTERNATE  DEPENDENCY TRANSMIT_MOD ASYNC_BLOCKS AFF
----------      -------- ----------- ---------- ----------------------- --------- ---
LOG_ARCHIVE_DEST_1 OPTIONAL 300        NONE      NONE        SYNCHRONOUS  0        NO
LOG_ARCHIVE_DEST_2 OPTIONAL 300        NONE      NONE        SYNCHRONOUS  0        NO
LOG_ARCHIVE_DEST_3 OPTIONAL 300        NONE      NONE        ASYNCHRONOUS 2048     NO

In the following section, the combined use of these three characteristics to build various levels of the data protection mode is presented.


��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.