Simple dataguard on SE

Hi.
I have set up a simple dataguard solution for one of our veritas cluster systems. We are running 10.2.0.4 on Rhel 4 x86-64.
Logs are shipped using rsync to standby node. PL/SQL and DBMS_JOBS ensures scheduled log switching and crontab jobs ensures both log shipping from primary node aswell as log apply on standby node.
In the alert log on the standby node, I can see that logs are applied correctly.
We uses db_file_name_convert and log_file_name_convert on the standby node.
Now, when I want to test a failover, I issue a alter system archive log current on primary node, shuts it down, and ships over all logs to standby node.
I do an "recover standby database auto" on the standby node and it stops when reaching the last known archive log.
So, how do I fail over.
I have tried the following:
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
CANCEL
Media recovery cancelled.
SQL> alter database commit to switchover to primary;
alter database commit to switchover to primary
ERROR at line 1:
ORA-16139: media recovery required
and
SQL> alter database open resetlogs;
alter database open resetlogs
ERROR at line 1:
ORA-01666: control file is for a standby database
Anyone who have an idea?
Thanks.
Kjell Ove

This implementation, in SE, is also known as the poor man's dataguard. You must make all steps manually, don't expect the switch over to perform the way it has been defined for a EE environment. You must transfer all the available archivelog files to the standby site, then stop the recovery process, activate the standby and open it just as a regular database:
ALTER DATABASE RECOVER [FROM 'pathname'] STANDBY DATABASE;
SQL> ALTER DATABASE RECOVER CANCEL;
sql> Alter database activate standby database;
sql> shutdown immediate;
sql> startup mount;
sql> alter database open read write;
~ Madrid
http://hrivera99.blogspot.com

Similar Messages

  • Script for auto recovery of standby node - Simple dataguard

    Hi.
    I have set up several solutions with Oracle SE and simple dataguard on linux.
    On physical standby, I have created a script which performs the recovery every 15 minuts:
    source /u01/app/oracle/sb_scripts/.profile_websb
    /u01/app/oracle/product/10.2.0/bin/sqlplus "/ as sysdba" <<EOFSQL
    recover automatic standby database;
    exit;
    EOFSQL
    However, I am trying to perform the same on a windows environment but struggles a bit with the script.
    Initally I tried %ORACLE_HOME%\bin\sqlplus / as sysdba @c:\scripts\recover.sql
    Where recover.sql has been:
    recover automatic standby database;
    exit;
    and :
    recover automatic standby database until cancel;
    alter database recover cancel;
    exit;
    Neither of these exits the bat scripts but awaits user input on CANCEL after the last archived log has been added.
    Anyone with a bright idea on how to solve this?
    Thanks.
    Kjell Ove

    Kjell wrote:
    Hi.
    I have set up several solutions with Oracle SE and simple dataguard on linux.
    On physical standby, I have created a script which performs the recovery every 15 minuts:
    source /u01/app/oracle/sb_scripts/.profile_websb
    /u01/app/oracle/product/10.2.0/bin/sqlplus "/ as sysdba" <<EOFSQL
    recover automatic standby database;
    exit;
    EOFSQL
    However, I am trying to perform the same on a windows environment but struggles a bit with the script.
    Initally I tried %ORACLE_HOME%\bin\sqlplus / as sysdba @c:\scripts\recover.sql
    Where recover.sql has been:
    recover automatic standby database;
    exit;
    and :
    recover automatic standby database until cancel;
    alter database recover cancel;
    exit;
    Neither of these exits the bat scripts but awaits user input on CANCEL after the last archived log has been added.
    Anyone with a bright idea on how to solve this?
    Thanks.
    Kjell OveKjell
    This script I use for windows (linked from my old site at http://www.niall.litchfield.dial.pipex.com/ ) uses
    alter database recover automatic standby database until cancel;
    alter database recover cancel;Note the extra alter database I'll admit I haven't run this personally in 2 or 3 years now.
    Niall Litchfield
    http://www.orawin.info/
    Edited by: Niall Litchfield on Apr 23, 2009 10:21 AM can't use bold in code apparently.

  • Simple dataguard

    Hi.
    Generally Oracle requires additional licenses for standby nodes in a dataguard environment.
    But, I have heard talk about a if you are running a cold standby node you don't have to license the standby nodes. Is this correct, and what does exactly cold standby node indicate.
    Thanks.
    Kjell Ove

    You'd have to be careful with the definition of "cold standby". If the database instance is running and applying archivedlogs in recovery mode -- ie a manual standby without the database being OPEN -- I would expect that Oracle's definition requires it to be licenced.
    The DataGuard "product" itself is bundled with the Enterprise Edition and doesn't require to be licenced. It is the running database instances that need to be licenced.
    See the Software Investment Guide at http://www.oracle.com/corporate/pricing/index.html -- particulaly Page 20 and the example.

  • Dataguard Queston?

    Presently we have two schemas on a "development" database that developrs use for their work, we back this database up nightly using a cron job that launches EXP full=Y.
    They want to keep a "hot copy" of these just two schemas only on another database on another server (actually different brand of machine and different O/S, same version of Oracle 10.2.0.3) The target machine has a limitation on max_filesize (2GB) that will not accomdate the *.dmp file...no problem we merely run the import using fromuser/touser from the source machine across the network on a schedule.
    I have read the Dataguard doc and the concept of "logical standby" seems appealing in this context, the standby is more or less always up to date and would require less effort to switch the developrs over in the event of a failure on the primary or even to offload potetially time consuming tasks to the standby.
    The question...
    Is it possible to limit this logical standby to only the two of the schemas of interest on the primary and avoid any interference with other schemas either on the primary or standby?

    The question...
    Is it possible to limit this logical standby to only
    the two of the schemas of interest on the primary and
    avoid any interference with other schemas either on
    the primary or standby?Yes it is possible. To be honest i tried to configure one in 9i and was a headache but in 10g people say it is much more simple and reliable

  • Is it true that streams will be replaced by dataguard?

    Hi
    Another DBA told me that i shouldn't waist my time with streams as it willl disaper very soon for the benefit of dataguard as dataguard can do all streams can + more.
    Is this true?
    I waisted my time with Oracle application server 10g that is now dead also, don't want to do the same errors.
    Please tell me that thisisnt true

    This experienced DBA is not totally fair. You don't use Streams and dataguard for the same purpose.
    Dataguard is meant to replicate a whole open DB toward a closed DB. You have to option to use the target DB as read only, but not much.
    Streams may replicate whole or sub parts of a DB, toward one to many target read/write DB. This allow merge of data on the target,
    and even Multi-master site. Moreover Streams cat alter the data/structure to fit a goal before it ever reach the target DB.
    Dataguard will not allow this, specially the physical standby. Your target DB is a strict replica of the source data,
    so forget any schema of one central master replicating towards local sites, unless local site a strict read-only replica of the central.
    Golden Gate uses definition files to perform replication from outside Oracle (reading archivelogs)
    while streams is plug into the Oracle Kernel that you configure using packages and API, not always easy.
    Golden gate is more simple, allow more easy heterogeneous replication,
    but it is more slower and if far from offering all the feature of streams.
    Last, heterogeneous replication in Streams is covered with Oracle Gateway and is not easy to set-up.
    So it is up to you to decide which product in function of your requirement.

  • 'Dataguard remote process startup failed'

    Hi
    When I try to use the Data Guard to configure my Physical Database ( Which for testing purposes, is planned to have onthe same machind as the Primary) - gives me the error
    'Dataguard remote process startup failed'
    Please help me.!
    Can anyone give me the details of how to create a physical standby from scratch.. considernig the fact that I am new to Oracle... I am donig it as per the documentation, but not able to start the standyby database which is on the same machine using the pfile...
    Thanks
    Radhika

    Are you creating standby database using data guard manager through oracle managment server? If so, have you applied patches or not?
    Here is the excerpt from metalink note : 204848.1
    ====
    Data Guard Manager reports "Data Guard remote process startup failed." Error Dialog
    Fact
    Oracle Enterprise Manager Data Guard Manager 9.2.0.1.0
    Symptom
    "Data Guard remote process startup failed" error dialog in the Oracle
    Enterprise Manager 'Create Configuration' Wizard is displayed when you
    attempt to run Data Guard Manager and your environment is not setup
    correctly.
    Fix
    Check and address the following items in the order listed.
    1) Ensure the Oracle installations for both the primary and standby Oracle
    Homes contain Perl.
    On UNIX systems, verify this by looking in each Oracle Home for the
    $ORACLE_HOME/Apache/perl/bin/perl file. On NT systems, look for the
    file $ORACLE_HOME\apache\perl\5.00503\bin\mswin32-x86\perl.
    If this file is present, Perl is installed; and proceed to step 2.
    If not, then you must install the Perl that comes with Oracle.
    Follow these steps to install Perl on both the primary and standby
    Oracle Homes:
    a. Run the Oracle Installer and choose the Oracle Home in question.
    b. Choose the "Oracle9i Database 9.2.0.1.0" option.
    c. Choose "Custom" for the installation type.
    d. Under "Oracle Enterprise Manager Products 9.2.0.1.0", choose to
    install the "Enterprise Manager Website 9.2.0.1.0" item.
    e. Complete the install.
    f. Verify that the Perl installation succeeded by checking for the
    presence of the above file. If successful, proceed to step 2.
    2) Ensure that all Data Guard Manager patches are installed in
    the OEM installation.
    These following two patches are independent of each other and must both be
    installed on all versions of 9.2.0:
    Patch Number 3409886 (supercedes Patch 2670975)
    Patch Number 2671349
    Download these patches from Oracle Support Services Website, Metalink,
    http://metalink.oracle.com. Activate the "Patches" button to get the
    patches Web page. Enter the Patch number and activate the "Submit"
    button. The patches are listed for the Windows and Solaris operating
    systems only. However, they are generic patches that will work on
    other platforms.
    After verifying that each patches are installed, proceed to step 3.
    3) Ensure the Oracle Intelligent Agent is running on both the primary and
    standby nodes.
    The Agent must be running for Data Guard to function. Check it by
    running agentctl status on the primary and standby nodes. If it is not
    running, start it by running the command agentctl start. After verifying
    that it is running on both nodes, proceed to step 4.
    4) Ensure that the user specified in the primary and standby node preferred
    credentials can successfully run an OEM job.
    Data Guard Manager requires that OEM preferred credentials are specified
    for both the primary and standby node. Furthermore, these credentials
    must specify a user(s) who has read/write permissions in the primary
    and standby Oracle Homes, respectively.
    Note well: Databases that are on Windows NT/2000 require that the
    the user(s) specified in the credentials must be granted
    the "Log on as a batch job" privilege.
    After checking that preferred node credentials are set correctly on both
    nodes, run a test OEM job to verify that jobs are functioning properly.
    Do this as follows:
    a) Select the Create Job item in the OEM Console Job menu.
    b) Give the job a name, select Node as the Target Type, select and
    add the primary node as the target.
    c) Go to the Tasks tab, select and add "Run OS Command".
    d) Go to the Parameters tab and specify a simple OS command such
    as ls on UNIX, or dir on NT.
    e) Click Submit.
    f) Once the job is finished, select the Jobs icon in the OEM Console
    tree, select the History tab, and examine the Job output.
    If it was successful, jobs are working and you can try the Data
    Guard Create Configuration wizard again.
    If the job failed, you must troubleshoot this problem and fix it
    before continuing with Data Guard Manager.
    5) If problems persist, obtain additional information and log a
    Support Request (iTAR).
    If everything in the previous steps is OK, and Data Guard Manager
    continues to fail, additional information is required to diagnose the
    problem. The following two items must be obtained and submitted to
    Oracle Support Services:
    a) OEM client tracing.
    The Create Configuration wizard must be run again in trace mode.
    This can be done by starting OEM from a command prompt (i.e., not
    the Windows NT start menu) as follows:
    oemapp trace console
    Client tracing messages will appear in the command window from
    which this command is run. Data Guard Manager should be started and
    the Create Configuration wizard should then be run up to the point
    where the error occurs. All tracing messages from Create
    Configuration wizard start-up to this point should then be captured
    and saved into a file.
    b) Data Guard job output
    The output from any failed Data Guard jobs must be captured. This
    can be done as follows:
    1) Select the Jobs icon in the OEM Console tree.
    2) Select the History tab.
    3) Double-click on the latest "DataGuardCtrlXXXX" job that has a
    Failed status.
    4) An Edit Job window will pop up; double-click on the Failed line
    to obtain the output.
    5) Put the output into a file.
    If a Data Guard Manager bug is submitted, the tracing output and the
    job output will be required.
    ====
    Jaffar

  • Dataguard broker setup - Licensing terms

    Hi,
    This is a simple question. I have searched Oracle documentation fairly elaborately, but could not find an answer.
    The question is: Can I co-host Dataguard Broker configuration with RMAN Catalog+EMGC ?
    We already have one host (Running EE) catering to RMAN Catalog and EMGC repository (On a single server). Since we have a requirement of configuring dataguard broker, the thought was to co-host this on the same server.
    Is there a licensing consideration to this? Can someone refer some relevant documentation please? Thanks in advance.
    Cheers,
    -Ganesh

    Is there a licensing consideration to this? Can someone refer some relevant documentation please? Thanks in advance.
    Standby is an copy of the primary database is maintained on a separate server at all times. the standby database is activated to act as the new primary database.
    "In this environment, both the primary and the standby databases must be fully licensed."
    Oracle standby servers need to be fully licensed if they are “hot standby” servers that can be used for production SQL queries. Some sources say that cold standby servers used less than 10 days per year do not need to be licensed, but you should verify this with your Oracle representative or the Oracle Store. In sum, current 2006 Oracle Data Guard licensing policies suggest that if Data Guard is installed for "standby" purposes, it requires full licensing.
    Check this discussion, it may help you.
    http://www.oracle.com/us/corporate/pricing/price-lists/index.html
    http://www.oracle.com/us/corporate/pricing/technology-price-list-070617.pdf
    license required for Data GUARD ??
    http://www.orafaq.com/forum/t/52173/0/

  • Creaton of Standby database and dataguard broker

    Hi Experts,
    I am using Linux with Oracle version 11gR2. We have planned to create a physical standby database and also configure dataguard broker for the standby database.
    Also, I've read the documents that active dataguard is a feature on 11g. Is it not possible on 10g ?
    Can someone please provide me the steps to create the standby database and configure the dataguard broker.

    Hello;
    A simple Data Broker setup would be :
    On both Primary and Standby sites, change the initialization parameter in the spfile to enable the Data guard broker.
    SQL> Alter system set dg_broker_start=True scope=both;
    On the PRIMARY site, open the ‘cmd’ and start Command Line Interface (CLI) of the Dataguard Broker (DGMGRL).
    /home/oracle:PRIMARY >dgmgrl
    DGMGRL for Linux: Version 11.2.0.1.0 - 64bit Production
    DGMGRL> connect sys/password@PRIMARY
    Create broker configuration.
    DGMGRL> create configuration ‘broker1’ as
    primary database is 'PRIMARY'
    connect identifier is primary;Configuration "?broker1?" created with primary database "PRIMARY"
    DGMGRL>
    (‘primary’ in Connect identifier is the service name through which the broker is connected to the PRIMARY database)
    Add Standby Database to the above configuration.
    DGMGRL> add database 'standby' as
    connect identifier is 'STANDBY'
    maintained as physical;
    Database "standby" added
    (‘to_standby’ in Connect identifier is the service name through which the broker is connected to the STANDBY database)
    Now the configuration has been set up but it is still disabled. You can view the configuration by executing:
    DGMGRL> show configuration
    The next step is to ENABLE the configuration ‘broker1’.
    DGMGRL> enable configuration;
    Enabled.
    Again view the configuration.
    DGMGRL> show configuration
    Configuration - ?broker1?
      Protection Mode: MaxPerformance
      Databases:
        PRIMARY - Primary database
        standby - Physical standby database
    Fast-Start Failover: DISABLED
    Configuration Status:
    SUCCESSIn my humble opinion its a good idea to setup Data Guard without Broker and get the "feel" of it first.
    Remember, once you setup Broker, you cannot use SQL to change your Data Guard setup.
    Best Regards
    mseberg

  • Question on Active Dataguard

    Version : 11.2
    OS Platform : Solaris 10
    I have only worked with 10GR2 physical standby databases. Now we are going to install 11.2 on solaris.
    Read about 11g's Active Dataguard feature by which applications can connect to the standby DB for read only operations.
    Once Active Dataguard feature is enabled (yet to learn ) , If the primary DB is heavily loaded and a session fires a resource intensive SELECT query, Which process will re-direct this SELECT to the less loaded Standby DB ? Is it the listener like it does in RAC ?

    Hello;
    Active Data Guard is a "Reader" database. I don't believe there's a process which will auto off load to it.
    So its great for reporting etc.
    Another Active Data Guard option is that it enables RMAN fast incremental backups on the Active Data Guard physical standby.
    This is another potential way of offloading some processing from the production database to the standby database.
    Active Data Guard is an extra License option and other than a few alter database commands its pretty simple.
    alter database recover managed standby database cancel;
    alter database open; http://oracle.techdata.ch/src/data/pdf/Active_Data_Guard.pdf
    Also worth a look :
    Bug 7633734 : DG ADMIN PAGE REAL TIME QUERY SHOWS DISABLED WHEN ENABLED FOR 11.2 DATABASES
    Best Regards
    mseberg

  • Using DBConsole In Dataguard Setup

    Hi,
    We have 3 node RAC Primary and a 3 node RAC Standby part of our Production Dataguard setup. We are using DBConsole to monitor the databases in our environment.
    The agent and console was up on the Primary site and the Production database was being continuously monitored using the GUI.
    Recently as part of maintenance activity the database roles have been switched.
    My question is :
    Can we just proceed to start the emagent and console on the new primary site (which was not running initially as it was a standby previously) and continue to monitor the environment?What is the risk involved in doing so?
    Regards,
    Santosh

    Hello;
    I know it's not the question you asked but Data Guard broker makes this simple and is a great option.
    DGMGRL> show configuration;
    If I were going to use EM I would make sure that:
    1. I deploy Enterprise Manager agents to the both primary and standby servers.
    2. The Standby database(s) are added to to Enterprise Manager.
    Best Regards
    mseberg

  • RMAN and Dataguard (10g)

    Hi all,
    I know this topic has been discussed several times over on this forum, but I have a peculiar situation.
    I have just inherited a client system with 10g and DataGuard with RMAN. The standby is Physical and both nodes are on HP-UX version and patchsets.
    The standby is persistently idle. The client insists on backing up the physical standby only.
    My question is this, is there any danger in backing up on the physical standby?. I've argued the case that we should backup the Primary and Standby to no joy. I am a little worried that we may experience a failure on the primary and start a recovery with backup taken from the Standby node. Is this feasible at all?
    Please confirm that I am right.
    Regards,
    Timothy.

    Having a recovery catalog, there's a resync with the standby controlfile after the backup, the backup informations are now in the catalog. Now when you need to restore/recover the primary database you connect to this and to the catalog. Primary and standby are clones , so you access the same record in the catalog regardless whether you are connected to the primary or to the standby. Because of this a resync will refresh the primary controlfile with the backup records which were taken while connected to th standby. A simple backup/recovery example looks like this:
    1) connect target sys/pwd@stdby catalog rman/pwd@rmancat
    2) backup database; (resync happens automatically after this)
    4) connect target sys/pwd@prim catalog rman/pwd@rmancat
    5) resync catalog;
    6) restore database;
    7) recoverer database:
    It's not mandatory, but recommended to backup the archivelogs on the primary side. Here you are sure to have all archivelogs (at least under regular circumstances). For many reasons it could happen, you miss some archives on the standby side.
    It's possible to run a standby in read-only mode for reporting purposes. In this case archivelog applying is suspended. If you have such a situation it's not recommended to backup the standby database, possibly it does not change for a long time and in case of recovery you have to apply a large number of archivelogs.
    Werner

  • DataGuard... is it so complex ??

    I'm not a DBA, I'm a system administrator that are working on a DBA project to implement DataGuard in our cie.
    I like to understand what DataGuard will do. The DBA asked for tons of equipment, labs, devs, and an exact replication of my production environment to implement a solution. He also told me that he has to install OEM 11g, RMAN 11g. My prod BD is running on 10g.
    My first question. Is dataguard is very hard to management without OEM? Do we have to create and develop tons of custom scripts for that?
    The replication will be very simple, async, only applying redo log on a database on the DR site.
    Your input and experience are much appreciated
    Thanks

    Is dataguard is very hard to management without OEM?
    No, I have 10 in Production without any OEM. In some ways its better because its always better to know how to it from command line.
    Do we have to create and develop tons of custom scripts for that?
    No, but a few are nice. For example I e-mail the spool for these to me daily
    PROMPT
    PROMPT Checking last sequence in v$archived_log
    PROMPT
    clear screen
    set linesize 100
    column STANDBY format a20
    column applied format a10
    SELECT  name as STANDBY, SEQUENCE#, applied, completion_time from v$archived_log WHERE  DEST_ID = 2 AND NEXT_TIME > SYSDATE -1;
    prompt
    prompt----------------Last log on Primary--------------------------------------|
    prompt
    select max(sequence#) from v$archived_log;
    PROMPT
    PROMPT Checking free space In Flash Recovery Area
    PROMPT
    column FILE_TYPE format a20
    select * from v$flash_recovery_area_usage;I tested all my Oracle 10 and 11 Data Guard using VMWARE on 1GB Linux servers if that helps. The nice thing about these is you can shut them down and copy them, so if you trash them all you have to do is copy them back.
    I have a simple setup here:
    http://www.visi.com/~mseberg/data_guard_on_oracle_11_step_by_step.html
    Also a very good book on the subject:
         http://tinyurl.com/DGHandbook
    Worth every penny and Larry is a great guy.
    Edited by: mseberg on Feb 4, 2011 2:18 PM

  • What kind of net connection should I have for a DataGuard system?

    I want to construct a DataGuard system on 3 PCs( all with the RHEL5.0 OS and just for test purpose). But I don't know what kind of connection should I make between the 3 PCs? Shoud I use a router?
    Thank you for any answer.

    You don't really need a router for this testing.
    a simple back to back connection would work.
    or a hub even.
    routers tend to get more expensive.
    jason.
    http://jarneil.wordpress.com

  • SunCluster control of Oracle DataGuard databases

    I've got two sites in a "Metro SAN" arrangement. I've setup a zone on each site using local storage for Oracle with DataGuard. Both zones must therefore be running at all times, so the zone does not failover but the database does (ie. standby becomes primary). Well, that’s my plan…
    I’ve deployed SC3.2u2 (non geographic). Is this able to change the DataGuard role under cluster control?
    I’ve read that the Geographic edition can do this – but we don’t have RAC. Can it run without RAC?
    If DataGuard proves to be inappropriate, then should I just use mount the database on zpool mirrored shared storage (consisting of one LUN from each site) to achieve my replication? Not very elegant, but it may have to do if I cannot use DataGuard.
    thanks

    james.patterson wrote:
    I've got two sites in a "Metro SAN" arrangement. I've setup a zone on each site using local storage for Oracle with DataGuard. Both zones must therefore be running at all times, so the zone does not failover but the database does (ie. standby becomes primary). Well, that&#146;s my plan&#133;
    I&#146;ve deployed SC3.2u2 (non geographic). Is this able to change the DataGuard role under cluster control? The HA-Oracle agent can accommodate Data Guard but it doesn't change the roles. If the database is a standby then it doesn't attempt recover it, it simply mounts it. Thus if you want to have this hybrid arrangement, then you need to construct some sort of mechanism to bring the primary down and make it a standby and then start the standby recovery and bring it online as a primary.
    I&#146;ve read that the Geographic edition can do this &#150; but we don&#146;t have RAC. Can it run without RAC?No. I wrote the module and it was decided that Data Guard broker was the best interface to use to control the Data Guard set-ups. Unfortunately, Data Guard broker does not work with cold fail-over databases because the broker files have embedded host names in them. Although we could work around the host naming issue, Oracle wouldn't support it.
    If DataGuard proves to be inappropriate, then should I just use mount the database on zpool mirrored shared storage (consisting of one LUN from each site) to achieve my replication? Not very elegant, but it may have to do if I cannot use DataGuard.If you have a Metro SAN, why use Data Guard in the first place? You seem to be confusing HA with DR. A simple mirrored LUN with one LUN from each site is far simpler, but the performance will depend on the separation. If it is ~ < 20Km, then performance should be OK.
    thanksTim
    ---

  • Dataguard - does it make sense in a Blade center?

    Hello,
    I have a simple question:
    Our deciders have chosen a dataguard installation on two virtual database servers in the same Blade Center. In my opinion, that doesn't make sense, but my opinion might be false. Both databases, the primary and the standby are be fully backed up every week and incremental every day.
    Are there any reasons, which I currently might not see, that the dataguard installation is necessary?
    Thank you for your help.
    Rgds
    Michael
    Edited by: user451255 on 28.10.2010 03:49

    Hi,
    First I see no reasin to backup the primary AND the standby as they share the same catalog and same backup it's totally not usefull.
    In the same blade center looks like you can do it of course if it's for using the stnadby as read only for exemple.
    For as kind of security data guard then I see not i big value to use this like that !
    Greetings,
    Loïc

Maybe you are looking for

  • ITunes 10.4.1 Stops Responding When I Quit Backup

    So everytime I plug in my iPod Touch 3g iTunes opens up, it wants to start a backup because I have an app that is free but it says it was a purchased app so it backs up all of my apps (-.-). Since it's only one app that was free that I would lose if

  • Problems with flashbuttons in IE

    When I load my site in IE and press directly one of the flash buttons it says: The page does not exist. When I go to a normal link and then back to one of the buttons it works ok??? Please help me, the site does work without problems in Safari, IE fo

  • Need to send an email to 3,000 receipients how do i do this using mail?

    I am a small business and we have about 3,000 email contacts on our books. Occasionally we like to send them an email to show offers etc. Can anyone let me know the best way i could do this? at the moment my broadband supplier only allows me to send

  • Folio Builder Panel - progress bars?

    Not a major thing, I know, but still... What happened to the upload progress bars in the Folio Builder Panel? I do like being able to monitor progress.

  • How to put my iPod classic music onto my iPad?

    Hi I was wondering how to move my iPod classics music on to my new iPad. Thanks.