Physical stand by configuration

Hi Experts,
Please help me with the below issue:
1) I have configured a physical stand by database on windows with oracle 10g. It is working and redo apply is enable at mount stage. Now here on mount stage i have to run manually commands to check reports like.. redo applied, pending, status etc. I want to do it with job. My requirement is to configure all queries in a job so that i can receive auto report in my mail every two hours. Please check and help.
2) We do servers shutdown in night and up in the morning. When i up my physical stand by server and check the status it is in open mode. I have to shut and start again on mount stage and have to start redo apply again by command firing. I need to maintain it with a script so that in the morning when my physical standby server goes up it will auto come at mount stage and redo apply should enable auto and after that i receive reports of synchronization with primary server in my mail as per point no. one. Please help.

+1) I have configured a physical stand by database on windows with oracle 10g. It is working and redo apply is enable at mount stage. Now here on mount stage i have to run manually commands to check reports like.. redo applied, pending, status etc. I want to do it with job. My requirement is to configure all queries in a job so that i can receive auto report in my mail every two hours. Please check and help.+
Primary:
SETEP -1
========
LOGIN TO THE PRIMIREY SERVER
$ su - orapr1
Password:
STEP -2
=======
GET THE SEQUENCE MAX FROM V$LOG_HISTORY
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
76968
SQL> alter system switch logfile;
System altered.
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
76969
SQL> exit
=========================================
ON STANDBY SERVER:
$ ps -ef|grep pmon
oratst 2978 1 0 Sep 08 ? 147:34 ora_pmon_amantst
oracle 3039 1 0 Sep 08 ? 137:34 ora_pmon_airman
e460269 16109 16104 0 18:54:44 pts/1 0:00 grep pmon
$ su - oracle
Password:
mesg: cannot change mode
$ sqlplus
SQL*Plus: Release 10.2.0.3.0 - Production on Thu May 17 18:55:10 2012
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
Enter user-name: /as sysdba
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
8548
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
8549
SQL> select * from v$archive_gap;
SQL> select sequence#, archived, applied, status from v$archived_log;
http://shanojkumar.wordpress.com/2012/05/23/oracle-best-practice-primary-and-standby-archive-crosscheck/
+2) We do servers shutdown in night and up in the morning. When i up my physical stand by server and check the status it is in open mode. I have to shut and start again on mount stage and have to start redo apply again by command firing. I need to maintain it with a script so that in the morning when my physical standby server goes up it will auto come at mount stage and redo apply should enable auto and after that i receive reports of synchronization with primary server in my mail as per point no. one. Please help.+
Temporarily disabling the log shipping to standby database
$ sqlplus
SQL*Plus: Release 10.2.0.3.0 - Production on Wed Jul 25 21:07:57 2012
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
Enter user-name: /as sysdba
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
SQL> select name,open_mode from v$database;
NAME OPEN_MODE
AIRMAN READ WRITE
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
8941
SQL> alter system switch logfile;
System altered.
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
8942
SQL> select status, DEST_NAME, DESTINATION from v$archive_dest where status = 'VALID';
STATUS
DEST_NAME
DESTINATION
VALID
LOG_ARCHIVE_DEST_1
/u01/oradata/airman/archive
VALID
LOG_ARCHIVE_DEST_2
airman_sj
STATUS
DEST_NAME
DESTINATION
SQL> show parameter LOG_ARCHIVE_DEST_2
NAME TYPE VALUE
log_archive_dest_2 string SERVICE=airman_sj LGWR ASYNC V
ALID_FOR=(ONLINE_LOGFILE, PRIM
ARY_ROLE) db_unique_name=airma
n_sj
SQL> show parameter log_archive
NAME TYPE VALUE
log_archive_config string DG_CONFIG=(airman_kj,airman_sj
log_archive_dest string
log_archive_dest_1 string LOCATION=/u01/oradata/airman/a
rchive VALID_FOR=(ALL_LOGFILES
, ALL_ROLES) db_unique_name=ai
rman_kj
log_archive_dest_10 string
log_archive_dest_2 string SERVICE=airman_sj LGWR ASYNC V
ALID_FOR=(ONLINE_LOGFILE, PRIM
ARY_ROLE) db_unique_name=airma
NAME TYPE VALUE
n_sj
log_archive_dest_3 string
log_archive_dest_4 string
log_archive_dest_5 string
log_archive_dest_6 string
log_archive_dest_7 string
log_archive_dest_8 string
log_archive_dest_9 string
log_archive_dest_state_1 string enable
log_archive_dest_state_10 string enable
log_archive_dest_state_2 string ENABLE
log_archive_dest_state_3 string enable
log_archive_dest_state_4 string enable
log_archive_dest_state_5 string enable
log_archive_dest_state_6 string enable
log_archive_dest_state_7 string enable
log_archive_dest_state_8 string enable
log_archive_dest_state_9 string enable
log_archive_duplex_dest string
log_archive_format string %t_%s_%r.arc
log_archive_local_first boolean TRUE
log_archive_max_processes integer 2
log_archive_min_succeed_dest integer 1
log_archive_start boolean FALSE
log_archive_trace integer 0
SQL> alter system set log_archive_dest_state_2=defer scope=both;
System altered.
SQL> show parameter log_archive_dest_state_2
NAME TYPE VALUE
log_archive_dest_state_2 string DEFER
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
8942
SQL> alter system switch logfile;
System altered.
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
8943
SQL> alter system switch logfile;
System altered.
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
8944
SQL> alter system switch logfile;
System altered.
SQL> select max(sequence#) from v$log_history;
MAX(SEQUENCE#)
8945

Similar Messages

  • Archival process not running on physical stand by

    for physical stand by database we dont have archival process not running. but both primary and stand by database are in sync.
    though log_archive_max_processes is set 2.
    any help appriciated.

    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    and
    select process, client_process, sequence#, status from v$managed_standby;
    PROCESS CLIENT_P SEQUENCE# STATUS
    MRP0 N/A 4930 WAIT_FOR_LOG
    RFS UNKNOWN 0 IDLE
    it doesnt shiw any archival process running.

  • Can we run application services when physical stand by database is in read

    can we run application services when physical stand by database is in read only mode
    i Want to up the EBS application services and check login when phyiscal standby database is in read only mode.
    Is it possible? for checking dataguard database application as well.

    but i just want to know that can i start EBS application services and nagivate the application.Without distrubing my primary database and application.You should not do as the moment you open the standby database it becomes invalid.
    Thanks,
    Hussein

  • Adding Temp tablespace to physical stand by database?

    I am getting the below error when i try to load data using SQL loader from physical stand by database to another database after making the physical stand by database in read only mode.
    ORA-25153: Temporary Tablespace is Empty.
    On primary database when i query
    SQL>select ts#,name from v$tablespace;
    TS# NAME
    2 TEMP
    On physical stand by when i query
    SQL>select ts#,name from v$tablespace;
    TS# NAME
    2 TEMP
    On primary DB when i query
    select name from v$tempfile where ts#=2;
    NAME
    /dev/vx/rdsk/oradata/tempfile0101
    On standby when i query
    SQL>select name from v$tempfile where ts#=2;
    no rows selected
    At this point do i need to add datafile to the TEMP tablespace of stand by database or just need to add TEMP tablespace to stand by database.?
    DB version:9.2.0.6
    Thank You all...

    Can you make sure that /dev/vx/rdsk/oradata/tempfile0101 is copied to standby site during the standby creation. Often it happens that the hot backups are copied to standby ste and generally they dont contain temp files. If the files is present , then i'll suggest you to do a quick bounce of standby instance to make sure that controlfile attempted to access it. You can also try recreating the standby control file on promary and copy it to standby site along with the tempfile and start the instance with new control file.
    If you want to add temp files to the standby instance, the only option you have is to add them on primary site. If you have standby_file_management as auto they will get copied over. If not you can copy the files to standby instance and restart the recovery.
    Please let us know if any of the hints are applicable to your case.
    -Ravi

  • Physical inventory of configurable material

    Hi ,
       Can any one suggest me the process of performing physical inventory for configurable material.
    Thanks ,
    Deepa

    Physical Inventory (MM-IM) 
    Technical name: SAP_MM_IM_INVENTORY_CONTROL
    Tasks
    In Physical Inventory, the user has the task of creating and processing physical inventory documents. After the physical inventory count is complete and a recount has been carried out if required, he or she posts the inventory differences and can print out a list of these.
    Activities in Materials Management
    Activity,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Transaction Code
    Create Physical Inventory Document     MI01
    Change Physical Inventory Document     MI02
    Display Physical Inventory Document     MI03
    Print Physical Inventory Document     MI21
    Process List of Differences                     MI07
    Create List of Differences with Document     MI08
    Create List of Differences Without Document MI10
    Print List of Differences                      MI20
    Recount Physical Inventory Document     MI11
    Reporting in Physical Inventory (MM-IM)
    Technical name: SAP_MM_IM_INVENTORY_REPORTING
    Tasks
    The user has the task of monitoring all the data relevant to physical inventory in the Inventory Management component.
    Activities in Materials Management
    Activity,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Transaction Code
    Display Physical Inventory Documents for Material     MI22
    Display Physical Inventory Data for Material     MI23
    Physical Inventory Overview     MIDO
    Display Changes     MI12
    Physical Inventory List     MI24
    Read Physical Inventory Document Archive     MIAL
    Carrying Out a Physical Inventory (MM-IM)
    Technical name: SAP_MM_IM_INVENTORY_EXECUTION
    Tasks
    When carrying out a physical inventory, the user has the task of entering the counted stocks in the system and changing and displaying physical inventory documents if necessary.
    Activities in Materials Management
    Activity     Transaction Code
    Enter Physical Inventory Count with Document     MI04
    Enter Physical Inventory Count without Document     MI09
    Change Physical Inventory Count     MI05
    Display Physical Inventory Count     MI06
    Inventory Sampling (MM-IM)
    Technical name: SAP_MM_IM_INVENTORY_SAMPLINGTasks
    The user has the task of creating, changing, and displaying data for the inventory sampling procedure in the R/3 System or other systems. He or she carries out the individual steps in the inventory sampling procedure: assigning stock management levels, forming the stock population, forming a stratification, forming a random selection, update, and extrapolation.
    Activities in Materials Management
    Activity     Transaction Code
    Create Inventory Sampling in the R/3 System     MIS1
    Create Inventory Sampling - Other     MIS5
    Change Inventory Sampling     MIS2
    Display Inventory Sampling     MIS3
    http://help.sap.com/saphelp_46c/helpdata/en/b5/2f2686d6f511d3b7f30000e82de955/frameset.htm
    Edited by: SYED SALEEM on Mar 20, 2008 10:50 PM
    Edited by: SYED SALEEM on Mar 20, 2008 11:19 PM

  • Multiple databases/instances on 4-node RAC Cluster including Physical Stand

    OS: Windows 2003 Server R2 X64
    DB: 10.2.0.4
    Virtualization: NONE
    Node Configuration: x64 architecture - 4-Socket Quad-Core (16 CPUs)
    Node Memory: 128GB RAM
    We are planning the following on the above-mentioned 4-node RAC cluster:
    Node 1: DB1 with instanceDB11 (Active-Active: Load-balancing & Failover)
    Node 2: DB1 with instanceDB12 (Active-Active: Load-balancing & Failover)
    Node 3: DB1 with instanceDB13 (Active-Passive: Failover only) + DB2 with instanceDB21 (Active-Active: Load-balancing & Failover) + DB3 with instanceDB31 (Active-Active: Load-balancing & Failover) + DB4 with instance41 (Active-Active: Load-balancing & Failover)
    Node 4: DB1 with instanceDB14 (Active-Passive: Failover only) + DB2 with instanceDB22 (Active-Active: Load-balancing & Failover) + DB3 with instanceDB32 (Active-Active: Load-balancing & Failover) + DB4 with instance42 (Active-Active: Load-balancing & Failover)
    Note: DB1 will be the physical primary PROD OLTP database and will be open in READ-WRITE mode 24x7x365.
    Note: DB2 will be a Physical Standby of DB1 and will be open in Read-Only mode for reporting purposes during the day-time, except for 3 hours at night when it will apply the logs.
    Note: DB3 will be a Physical Standby of a remote database DB4 (not part of this cluster) and will be mounted in Managed Recovery mode for automatic failover/switchover purposes.
    Note: DB4 will be the physical primary Data Warehouse DB.
    Note: Going to 11g is NOT an option.
    Note: Data Guard broker will be used across the board.
    Please answer/advise of the following:
    1. Is the above configuration supported and why so? If not, what are the alternatives?
    2. Is the above configuration recommended and why so? If not, what are the recommended alternatives?

    Hi,
    As far as i understand, there's nothing wrong in configuration except you need to consider below points while implementing final design.
    1. No of CPU on each servers
    2. Memory on each servers
    3. If you've RAC physical standby then apply(MRP0) will run on only one instance.
    4. Since you are configuring physical standby for on 3rd and 4th nodes of DB1 4 node cluster where DB13 and DB14 instances are used only for failver, if you've a disaster at data center or power failure in entire data center, you are losing both primary and secondary with an assumption that your primary and physical standby reside in same data center so it may not be highly available architecture. If you are going to use extended RAC for this configuration then it makes sense where Node 1 and Node 2 will reside in Datacenter A and Node 3 ,4 will reside in Datacenter B.
    Thanks,
    Keyur

  • Manual physical standby Db configuration...

    Hi all,
    We are using oracle 9.2 db on sun box, suddenly we faced problem in our DRSITE,one of the disk got unmounted.
    and i have been told that we have to build another db .
    Re: ORA-01110: data file 201: '/bkp/oradata/orcl_raw_system01'
    {code]
    i want to know in case of manual physical standby db can the configuration be differ or not...ile.
    primary: sun solaris
    drsite: rhel
    can it be possible or not....
    pls suggest me.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    can it be possible or not....It cannot, the documentation has all necessary informations:
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96653/considerations.htm#52221
    Werner

  • Physical stand by applying is not initating

    configurations:
    primary OS : AIX
    database versions : 10.2.0.4.0
    using ASM file systems
    seconday AIX
    database versions : 10.2.0.4.0
    using ASM file systems
    now we have re-started the standby and re-mounted but the apply process is initiating...now there is gap in standby between received and applied..
    1 SELECt dest_id, status, type, ARCHIVED_THREAD#, ARCHIVED_SEQ#, APPLIED_THREAD#, APPLIED_SEQ#, SYNCHRONIZed
    2* FROM V$ARCHIVE_DEST_status
    SQL> /
    DEST_ID STATUS TYPE ARCHIVED_THREAD# ARCHIVED_SEQ# APPLIED_THREAD# APPLIED_SEQ# SYN
    1 VALID LOCAL 1 13523 0 0 NO
    2 VALID PHYSICAL 2 13266 2 8974 NO
    Any suggestions?
    Thanks,
    Raman.

    Raman,
    If you want any help you should not post
    - unformatted output. You can format output by wrapping it in   tags.
    - anything that boils down to 'it doesn't work. Help'.
      No one here has any info on your configuration, doesn't know anything about your archive destinations, can't look into the alert log, in the archiver trace files, in the lgwr trace files, and in the RFS trace file of the standby database.
    You are kindly requested to do your own analysis *prior* to posting 'It doesn't work', so as to avoid someone has to tear the information out of you. If you do understand the concepts behind the standby mechanism, it is pretty obvious where you need to start troubleshooting.
    This is a discussion forum, and it can only provide *help*, it can not take over your work.
    Sybrand Bakker
    Senior Oracle DBA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Physical inventory block configuration.

    Hello,
    We have a business requirement to block the bin so that users can not even created deliveries. In the standard system, we have 'posting block' with which you can create an STO, Out bound delivery but can not post the goods.
    But here the requirement is users should not be able to create delivery also, if the particular materials are blocked for physical inventory.
    How to do this
    Regards

    Use Xplant matl status functionality and make a key "blocked for delivery" in the plant which is carrying out physical inventory. Or a development is required byputting the logic if there is any posting block on any material in PI doc then system should throw an error message while creating delivery.

  • Failed to configure IPv6 interface(s): eri1 - how to debug?

    I have a problem configuring the second network interface for IPv6 under Solaris 10. The first interface, eri0, is configured and works fine. The second one, eri1, has a link-local address but no global address. Both links are up and working, I can ping eri1 via IPv4 (10.0.1.9) from an external host.
    netra / $ ifconfig -a6                                                                                                                                       
    lo0: flags=2002000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv6,VIRTUAL> mtu 8252 index 1
            inet6 ::1/128
    lo0:1: flags=2002000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv6,VIRTUAL> mtu 8252 index 1
            zone wibble
            inet6 ::1/128
    lo0:2: flags=2002000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv6,VIRTUAL> mtu 8252 index 1
            zone foobar
            inet6 ::1/128
    eri0: flags=2000841<UP,RUNNING,MULTICAST,IPv6> mtu 1500 index 2
            inet6 fe80::203:baff:fe0b:fd4b/10
            ether 0:3:ba:b:fd:4b
    eri0:1: flags=2080841<UP,RUNNING,MULTICAST,ADDRCONF,IPv6> mtu 1500 index 2
            inet6 2001:0:0:1:203:baff:fe0b:fd4b/64
    eri0:2: flags=2000841<UP,RUNNING,MULTICAST,IPv6> mtu 1500 index 2
            zone wibble
            inet6 2001:0:0:1::4/64
    eri0:3: flags=2000841<UP,RUNNING,MULTICAST,IPv6> mtu 1500 index 2
            zone wibble
            inet6 fe80::213:a9ff:fe80:43c0/10
    eri0:4: flags=2000841<UP,RUNNING,MULTICAST,IPv6> mtu 1500 index 2
            zone foobar
            inet6 2001:0:0:1::3/64
    eri0:5: flags=2000841<UP,RUNNING,MULTICAST,IPv6> mtu 1500 index 2
            zone foobar
            inet6 fe80::213:a9ff:fe80:43bf/10
    eri1: flags=2004841<UP,RUNNING,MULTICAST,DHCP,IPv6> mtu 1500 index 3
            inet6 fe80::203:baff:fe0b:fd4b/10
            ether 0:3:ba:b:fd:4bMy setup is the same for both interfaces:
    - empty files /etc/hostname6.eri0 and /etc/hostname6.eri1
    - both NICs connected to the same switch, with a L2-adjacent IPv6 router.
    Last messages from the serial console are:
    Failed to configure IPv6 interface(s): eri1
    SUNW,eri0 : 100 Mbps full duplex link up
    Hostname: netra
    SUNW,eri1 : 100 Mbps full duplex link up
    (at this point, I issued 'svcadm restart network/physical')
    Failed to configure IPv6 interface(s): eri1
    Aug 30 16:59:29 netra in.ndpd[259]: phyint_init_from_k: SIOCLIFGETND (interface eri1): No such process
    Aug 30 16:59:29 netra last message repeated 1 time
    Aug 30 16:59:29 netra in.ndpd[259]: Interface eri1 has been removed from kernel. in.ndpd will no longer use it
    Do you have any ideas? Where to look?
    Maciej
    Edited by: automatthias on Aug 30, 2008 9:12 AM
    Edited by: automatthias on Aug 30, 2008 9:12 AM

    Thank you for the answer! I've found an option 'local-mac-address?' (the question mark is a part of the parameter name) in the 'ok' prompt.
    More info for next generations:
    1. Get to the 'ok prompt' (OpenBoot prom)
    2. Type 'printenv' to see the current settings, look for 'local-mac-address?'
    3. Set the parameter to 'true': 'setenv local-mac-address? true'
    4. Type printenv again to see if the option was actually changed
    This option is also described in Gentoo OBP reference:
    http://www.gentoo.org/doc/en/gentoo-sparc-obpreference.xml
    Thanks!
    Maciej

  • Problem with an IPv6 iface in a zone if the corresponding physical is down

    Hi,
    I have a non-global zone with an IPv6 interface setup using zonecfg:
    add net
    set address=<address>/10
    set physical=<iface>
    end
    The corresponding physical interface is configured in the global zone and is a part of a VLAN, so, <iface> is something like ce123000 rather than ce0.
    It works perfectly, but... I do not really need this interface in the global zone. Following these recommendations - http://forum.java.sun.com/thread.jspa?threadID=5075412&messageID=9274814 and http://www.sun.com/emrkt/campaign_docs/expertexchange/knowledge/solaris_grid_perf.html#26 - I am setting the interface 'down' using ifconfig in the global zone. The problem is that the interface in the non-global zone stops working at this point. (According to ifconfig, it is UP, but it does not seem to transmit any packets.) If I set the interface 'up' in the global zone, the interface in the non-global zone starts working again.
    Am I doing/understanding something wrong? What can I do more to debug this? May this behavior be IPv6 or VLAN specific?
    Thank you,
    Vasiliy
    Message was edited by:
    vbaranov

    Looks toe like MAX and MIN are always going to be zero.

  • Dgmgr - physical standby database

    Hi,
    We are having Oracle 10g R2 (latest patch) . We have created a primary - physical standby database configuration. While the show database verbose 'dbname' in dgmgrl shows "success" for standby , it flags the following error for the primary
    Warning: ORA-16801: redo transport-related property is inconsistent with database setting
    Can this be ignored safely ? If not how to eliminate this.
    Also brief me safest way to switch over between primary and standby databases.
    Thanks.

    This warning occurs when you mix manual configuration and dataguard broker, use only one method,not both:
    Oracle Error :: ORA-16801
    redo transport-related property is inconsistent with database setting
    Cause
    The values of one or more redo transport-related configuration properties were inconsistent with database in-memory settings or server parameter file settings. This may happen by altering initialization parameters directly instead of altering property values using Data Guard broker.
    Action
    Query property the InconsistentLogXptProps on the primary database or check the Data Guard broker log to find which properties are set inconsistently. Reset these properties to make them consistent with the database settings. Alternatively, enable the database or the entire configuration to allow the configuration property settings to be propagated to to the initialization parameters.
    Werner

  • Sys passowd change effect in physical standby environment.

    Hi All,
    We have a production environment with physical standby environment configured for it. Everything is working fine. My issue is with the sys password. We have a policy of changing sys password every month.
    1) What should be the step by step process to reflect the same sys password to standby database?
    2) As per one of the fourms, copying the production system's password file to standby database should work. but i am not sure is just copying the password file will change the change the password in standby database. As the standby database is in recovery mode (mount stage) what will be the best way of doing this?
    Thanks
    Shelly

    Hi Shelly,
    1) What should be the step by step process to reflect the same sys password to standby database?
    change the sys pass in prodshudown and restart to check if the new password ids in effect
    In standby you have options
    cancel managed recovery and recraete a new password file (same password as primary)
    or
    (easy way)
    Simply copy the prod modified password file to standby and restart managed recovery.

  • Physical standby enviroment

    Hi,
    We have primary Database and physical standby database. Both Oracle versions are 10g.
    Physical stand by database is physical mirror image of primary and its open only in read only mode.
    As physical stand by database what ever change happend in Production it will effect in standby database.
    my question is...... is their any way that we can delete one schema in production and keep same in standby database?
    is it possible?
    appreciate your help
    Thanks

    As soon as the redo protocol that contains the whatever changes from the primary gets applied at the standby it will change the standby in the same way. You can not skip any changes on physical standby. But you can delay the actualization on the standby db or (with 10g or higher) turn on flashback logging to be able to undo the not desired change in a very fast manner.
    Kind regards
    Uwe
    http://uhesse.wordpress.com

  • Physical standby and logical standby

    Hi,
    Why we mention standby_archive_dest and log_archive_Dest in standby init.ora.
    bcz there is no activity at physical standby.so why we set two parameters?
    what is difference between physical stand by and logical standby?

    Hi,
    A logical standby database contains the same logical information as the production database, although the physical organization and structure of the data can be different. The SQL apply technology keeps the logical standby database synchronized with the primary database by transforming redo data received from the primary database into SQL statements and then executing the SQL statements on the standby database. This makes it possible for the logical standby database to be open read-write and accessed for queries and reporting purposes at the same time the SQL is being applied to it.
    Logical vs Physical Standby database
    http://www.orafaq.com/node/957
    Regards,
    Tom
    Edited by: Soli on 19.8.2009 13:48

Maybe you are looking for

  • During an update my Mac turned off and will no longer boot into the user interface.

    The situation is that I don't have an os disk with me - traveling abroad - and would like to be able to create one using my PC. - First is this possible? - Second, will I lose my personal data upon system reinstall! As far as the boot sequence goes i

  • Can't get itunes to load

    I was downloading music into my itunes and realised that it was going into my C drive. I therefore cut all the music folders and pasted them into my D drive, I continued to download music and all was fine. I then closed my computer last night and thi

  • Logic "Scroll in Play" Display Bug

    Logic is exhibiting a mild yet very annoying display bug. I first reported it on Jan. 12, 2010 here: http://discussions.apple.com/message.jspa?messageID=10892868#10892868 I am still plagued by this problem on my 8-core, 3GHz Mac Pro. I was about to p

  • Infinity2 hell

    Please help... I've had infinity2 for about 3 weeks. Expected dl 79, up 19 as I'm less than 100m from the cabinet. Initially everything fine bt speed test gave me 77, 19 working great. Slowly the speed started to drop eventually at 50 dl. Then on Sun

  • Dataguard switch/failover tests notes

    version 9i-11g somebody can share different scenarios for this testing?