DUPLICATE TAPE BACKUP DATABASE


Hello

I wonder if someone can help me. My environment is Linux, and the Oracle version is 11.2.0.3.0. I'm trying to clone a database from one server to another by using a tape backup (no database). I implemented the appropriate TNS entries, so that the two systems can communicate. I created a password file and a PFILE in the destination server, and I started upward (NOMOUNT) of the instance.

Initially, I tried the operation from the destination server; I received the error message such as: RMAN-06100: no channel to restore a backup or a copy of the data file 11

Suspecting that the destination server have not may not be the level of appropriate access to the MLL, I tried the operation from the source server.

But I am getting: RMAN-06101: no channel to restore a backup or a copy of the control file

Source database: MM1

(Cloned) database of destination: MBA

RMAN script

------------------

target connection.
connection Assistant sys/***@MBA

Run {}
allocate channel 'dev_01' type 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
allocate channel 'dev_02' type 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
allocate channel 'dev_03' type 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
allocate channel 'dev_04' type 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
Disc CHANNEL AUXILIARY ALLOCATE c1 TYPE of AIRCRAFT;
up to the time "to_date('14-aug-2013:16:20','dd-mon-YYYY:hh24:mi')";
DUPLICATE THE MBA NOFILENAMECHECK TARGET DATABASE;
output channel c1;
release the string "dev_01";
release the string "dev_02";
release the string "dev_03";
release the string "dev_04";
}

Journal:

------

Recovery Manager: release 11.2.0.3.0 - Production Fri Aug 15 11:27:24 2013

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

RMAN >
RMAN >
connected to target database: MM1 (DBID = 1713891644)

RMAN >
connected to the auxiliary database: MBA (unassembled)

RMAN >
RMAN > 2 > 3 > 4 > 5 > 6 > 7 > 8 > 9 > 10 > 11 > 12 > > > > > > 18 17 16 15 14 13 >
using the control file of the target instead of recovery catalog database
allocated channel: dev_01
channel dev_01: SID = 188 device type = SBT_TAPE
channel dev_01: A.06.20/PHSS_42081/PHSS_42082/DPSOL_00448/DPLNX_ Data Protector

allocated channel: dev_02
channel dev_02: SID = 17 device type = SBT_TAPE
channel dev_02: A.06.20/PHSS_42081/PHSS_42082/DPSOL_00448/DPLNX_ Data Protector

allocated channel: dev_03
channel dev_03: SID = 191 device type = SBT_TAPE
channel dev_03: A.06.20/PHSS_42081/PHSS_42082/DPSOL_00448/DPLNX_ Data Protector

allocated channel: dev_04
channel dev_04: SID = 31 device type = SBT_TAPE
channel dev_04: A.06.20/PHSS_42081/PHSS_42082/DPSOL_00448/DPLNX_ Data Protector

allocated channel: c1
channel c1: SID = 161 type device = DISK

executing command: SET until clause

From duplicate Db 15 August 13

content of Script memory:
{
clone of SQL "create spfile from memory";
}
execution of Script memory

SQL statement: create spfile memory

content of Script memory:
{
clone to stop immediately;
startup nomount clone;
}
execution of Script memory

Instance Oracle to close

connected to the auxiliary database (not started)
Oracle instance started

Total System Global Area 6631034880 bytes

Bytes of size 2240744 fixed
2315259672 variable size bytes
Buffers data 4294967296 bytes
Redo buffers 18567168 bytes
allocated channel: c1
channel c1: SID = 11 type of device = DISK

content of Script memory:
{
until the SNA 208772810.
clone of SQL 'alter system set = db_name
"MM1" comment =
' Modified by RMAN duplicate "scope = spfile;
clone of SQL 'alter system set db_unique_name =
"MBA" comment =
' Modified by RMAN duplicate "scope = spfile;
clone to stop immediately;
Start clone force nomount
Restore controlfile primary clone;
change the clone database mount;
}
execution of Script memory

executing command: SET until clause

SQL statement: change the system db_name set = comment "MM1" = "modified by RMAN duplicate" scope = spfile

SQL statement: alter system set db_unique_name = comment "MBA" = "modified by RMAN duplicate" scope = spfile

Instance Oracle to close

Oracle instance started

Total System Global Area 6631034880 bytes

Bytes of size 2240744 fixed
2315259672 variable size bytes
Buffers data 4294967296 bytes
Redo buffers 18567168 bytes
allocated channel: c1
channel c1: SID = 160 type device = DISK

From restoration to August 15, 13

output channel: dev_01
output channel: dev_02
output channel: dev_03
output channel: dev_04
output channel: c1
RMAN-00571: ===========================================================
RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
RMAN-00571: ===========================================================
RMAN-03002: failure of Db in dual at 15/08/2013 11:28:44
RMAN-05501: abandonment of duplicate target database
RMAN-03015: an error has occurred in the script stored memory Script
RMAN-06026: some targets not found - abandonment of restoration
RMAN-06101: no channel to restore a backup or a copy of the control file

RMAN >
RMAN >

Complete recovery manager.

I finally understood what was wrong with my approach. I had missed a bit in the literature: the definition of AUXILIARY channel should be the same as that used for the backup. Of course, RMAN normally does you not clear in its mystical error messages.

In addition, according to the document, it's a good idea to create a SPFILE in the auxiliary instance. I did it.

Therefore, in my case, the same channels as those used for backups on tape. So is the syntax I used successfully:

target connection.
connection Assistant sys/***@MBA

Run {}
allocate channel 'dev_01' type 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
allocate channel 'dev_02' type 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
allocate channel 'dev_03' type 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
allocate channel 'dev_04' type 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE 'sbt_tape '.
parms ' ENV = (OB2BARTYPE = SAP, MM1, OB2BARLIST = WYC_CENTRICA_wycvlsapx115_SAP_MM1_ON_Weekly = OB2APPNAME), SBT_LIBRARY = / opt/omni/lib/libob2oracle8_64bit.so ';
up to the time "to_date('15-aug-2013:12:30:46','dd-mon-YYYY:hh24:mi:ss')";
DUPLICATE THE MBA NOFILENAMECHECK TARGET DATABASE;
output aux1 channel;
release the string "dev_01";
release the string "dev_02";
release the string "dev_03";
release the string "dev_04";
}

To improve the programming of schedules, the next time I can increase the number of auxiliary channels. I need to know how many tape drives, I have at my disposal.

Tags: Database

Similar Questions

  • backup database - backup multiple sets of 1 piece 1 statement each

    Hi all!

    I have an ORACLE database 11 GR 1 material running on RHEL X86_64 5.7. The size of the database is approximately 800 GB.

    This is the current configuration of RMAN:

    CONFIGURE REDUNDANCY 2 RETENTION STRATEGY;

    CONFIGURE BACKUP OPTIMIZATION

    SET UP DEFAULT DISK DEVICE TYPE;

    CONFIGURE CONTROLFILE AUTOBACKUP ON;

    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT for DEVICE TYPE DISK TO ' / d02/rman_backups/%T_%F';

    SET UP THE DEVICE TYPE DISK PARALLELISM 1 BACKUP TO COMPRESSED BACKUPSET TYPE;

    CONFIGURE BACKUP OF DATA TO DISK FILE TYPE DEVICE TO 1; # by default

    CONFIGURE BACKUP ARCHIVELOG FOR DEVICE TYPE DISK TO 1; # by default

    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT ' / d02/rman_backups/%T_%U' MAXPIECESIZE 60 G;

    CONFIGURE MAXSETSIZE TO UNLIMITED; # by default

    CONFIGURE ENCRYPTION OF DATABASE # by default

    CONFIGURE THE ENCRYPTION ALGORITHM "AES128"; # by default

    CONFIGURE THE "ZLIB" COMPRESSION ALGORITHM

    CONFIGURE THE NONE ARCHIVELOG DELETION POLICY; # by default

    CONFIGURE SNAPSHOT CONTROLFILE NAME TO ' / d01/dev/db/tech_st/11.1.0/dbs/snapcf_DEV.f'; # by default

    It's my 'RUN' block to create a single full backup:

    RUN

    {

    SHUTDOWN IMMEDIATE;

    BOOTABLE MEDIA;

    BACKUP DATABASE;

    OBSOLETE REPORT;

    REMOVE OBSOLETE;

    ALTER DATABASE OPEN;

    }

    Backup of days RMAN created 1 backup set made up of 5 pieces: 4 pieces of 60GB and 1 piece of 42 GB as well as saving the file spfile and control... for me this is the expected behavior.

    But today, RMAN created 34 games backup of 1 piece of each... parts are no more than 7 GB.

    It is the output for control of BACKUP of LIST SUMMARY:

    Backup list

    ===============

    S LV TY Device Type delay #Pieces compressed #Copies Tag key

    ------- -- -- - ----------- --------------- ------- ------- ---------- ---

    39. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    40. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    41. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    42. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    43. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    44. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    45. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    46. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    47. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    48. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    49. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    50. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    51. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    52. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    53. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    54. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    55. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    56. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    57. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    58. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    59. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    60. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    61. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    62. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    63. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    64. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    65. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    66. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    67. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    68. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    69. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    70. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    71. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    72. A DISC APRIL 18, 14 1 1 YES TAG20140418T015553

    73. A DISC 18 APRIL 14 1 1 no TAG20140418T065039

    Please help me to reconfigure RMAN to create the backup set 1, composed by the "n" backup items.

    I appreciate your time and your help nicely.

    MAXSETSIZEsizeSpec Specifies a maximum size for a backup (as shown in example 2-17). RMAN limit all backup sets to this size.

    It is possible for a game span multiple tapes, sort of blocks from each data file is written to multiple backup tapes. If a tape of a multivolume backup set fails, then you lose the data on all bands, rather than a single one. Because a backup set always includes an entire file rather than the part of a file, you can use MAXSETSIZE to specify that each backup set should fit on a single tape.

    Specify the size in bytes (default), kilobytes ( K ), Mo ( M ), or gigabytes ( G ). For example, to limit a game to 3 MB of backup, specify MAXSETSIZE 3M . The default size is expressed in bytes, rounded to kilobytes. For example, MAXSETSIZE 3000 is rounded to 2 k (2048 bytes). The minimum value must be greater than or equal to the database block size.

    The number of files in each default backup set is determined by FILESPERSET , which by default is 64. When you specify MAXSETSIZE , RMAN attempts to limit the size in bytes of the backup sets according to the MAXSETSIZE parameter. The limit on the number of files in a backup set applies even if the total size of the backup set that results is lower to MAXSETSIZE .

    Note: This option will result in an error if used with BACKUP AS COPY . If you run BACKUP AS COPY on a channel that has MAXSETSIZE value, then MAXSETSIZE is ignored in silent mode.

  • Catalog db for tape backup

    Hello

    I have a question about the tape backup. In my system, we have the database of 12-15 in linux, HP, and windows OS. We used to take backup on disk for the latter. Now we intend to take tape backup. The version of db are g 10, 11.1, etc.. The maximum size of the db is 1 TB and db are 300 GB or less. My query is:

    1 can I use catalog db or not? Many said catalogue is not necessary as long as it is necessary to maintain 1 server more.

    2. as my db are in different versions, can we use catalog db as version 11.2 so that each db can be included?

    3. can we run the rman catalog server script?

    Maybe they're stupid for many of you.  But still, it is important:

    Kind regards

    1fd2f1d0-3474-40B7-8096-f86d94eb9f0c wrote:

    Hello

    I have a question about the tape backup. In my system, we have the database of 12-15 in linux, HP, and windows OS. We used to take backup on disk for the latter. Now we intend to take tape backup. The version of db are g 10, 11.1, etc.. The maximum size of the db is 1 TB and db are 300 GB or less. My query is:

    1 can I use catalog db or not? Many said catalogue is not necessary as long as it is necessary to maintain 1 server more.

    Technically, a catalogue is not necessary, but it certainly is another layer of insurance.  You certainly not 'need' a server, but it is certainly preferable.   A server for an rman catalog alone would not be powerful or very important and should not be a burden for an organization whose databases you describe.  Avoiding a catalog rman in this situation is false economy.  Please note that if you want to run the catalog db itself on a separate server, if it is used exclusively as an rman repository, no additional license is required from Oracle.  (Oracle Database Licensing Information 11.2, publication E10594-26, pp. 1-9, 'Infrastructure Repository Database')

    Discover the benefits of a catalog to manage a recovery catalog

    2. as my db are in different versions, can we use catalog db as version 11.2 so that each db can be included?

    Yes.  There is nothing magical about a recovery catalog.  It's just a different schema from database.  It contains metadata on the backups.  Nothing version dependent.  Now, the catalog itself (the collection of tables have been created in the catalogue schema) should be upgraded to the same level as the highest level of the rman client who will use it, but it's a command simple rman. It does not itself with the version of the database that hosts the catalog.

    3. can we run the rman catalog server script?

    I have never tried or seen a need.  All my scripts (shell scripting in linux, .cmd scripts under Windows) rman backup function on the server of the database to back up.

    It isn't really "can run us the rman from the catalog server script" but "can we run rman from a remote server from the saved database.  Why do you believe rman provides the syntax to connect to a remote database? (rman target user/pwd@orcl as sysdba)

    Maybe they're stupid for many of you.  But still, it is important:

    Kind regards

    BTW, it would really help if you go to your profile and give you a recognizable name.  It doesn't have to be your real name, just something that looks like a real name.  Who said that my name really is Ed Stevens?  But at least when people see a message, they have a recognizable identity.  Unlike the name of system generated from 'ed0f625b-6857-4956-9b66-da280b7cf3a2', which is no better than the posting as "Anonymous".

    Everything you ed0f625b-6857-4956-9b66-da280b7cf3a2 of look alike...

  • Activate the backup database

    Hi gurus,

    Had a small request for you guys, I have a production and a configuration of standby on Windows 2003 (10.2.0.4) database, my day has been recovered up to archive log 883, because of some problems with my production, I activated my database pending. Because the standby mode is enabled, the database gets open resetlogs. My archives to start generating sequences 1,2,3...

    But now when I query v$ archived_log to verify that the sequence max # generated it still shows as 883... as opposed to 6 which is my creation of journal number of archive.

    According to my understanding, when activate us a backup database, the wait flag of database in the control file is reset so that the control file behaves like that of the production database (I know that I am using profane taps here)... so, what makes the view v$ archived_log show the old value of sequence # before activation rather than the new value after activation?

    Help or direction in this on your side you would know...

    Thank you
    Aurélie

    Interesting...

    I think why you faced with this is, the v$ archived_log retrieves the information from the control file and the control file keeps the information up to it's minimum (default 7 days) retention period. Now even if you did resetlog on the database, the old are always stored in the controlfile according to its retention period, controlled by the parameter "control_file_record_keep_time". Please refer to 'archive log list' for the correct sequence number.

    C:\Documents and Settings\sakumar>set oracle_sid=santu
    
    C:\Documents and Settings\sakumar>sqlplus /nolog
    
    SQL*Plus: Release 11.1.0.6.0 - Production on Sat Feb 6 07:17:16 2010
    
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    
    SQL> conn /as sysdba
    Connected.
    SQL> shu immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    
    Total System Global Area  535662592 bytes
    Fixed Size                  1334380 bytes
    Variable Size             176161684 bytes
    Database Buffers          352321536 bytes
    Redo Buffers                5844992 bytes
    Database mounted.
    
    SQL> recover database until cancel;
    Media recovery complete.
    SQL> alter database open resetlogs;
    
    Database altered.
    
    SQL> select max(sequence#) from v$archived_log;
    
    MAX(SEQUENCE#)
    --------------
                16
    
    SQL> archive log list
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     1
    Next log sequence to archive   1
    Current log sequence           1
    SQL>
    

    I hope that's what you wanted to ask. Now once again, it would be interesting to see what the result of the query on v$ archived_log after the retention period.

    Kind regards
    S.K.

  • DPM 2010 will support Exchange 2010 DAG tape backup

    I would use the tape backup in DPM 2010 for Exchange 2010 DAG, not allowing the backup to disk, I don't know why? Can help in any...

    Hello

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please ask your question in the DPM Exchange protection forum. You can follow the link to your question:

    http://social.technet.Microsoft.com/forums/en-us/dpmexchbackup/threads

  • ORA-16772: shift to a backup database has no problem

    Hi all

    Can someone please help me with this situation, because I'm stuck. I already look at metalink but no post doesn't solve my problem.

    Here is some information on my problem.

    I have 2 servers via Vmware - oraclenode1 with primary database TEST1 and oraclenode2 with database ensures TEST2.

    Transfer journal successfully, but when I try to switch to the "TEST2" it throws me an error - ORA-16772: switching to a backup database failed

    DGMGRL > see Configuring

    Configuration - DGConfig1

    Protection mode: MaxPerformance

    Databases:

    Test1 - primary

    Test2 - Physical standby database

    Fast-Start Failover: DISABLED

    The configuration status:

    SUCCESS

    my listeners

    PRIMARY

    Oracle@oraclenode1 trace] $ lsnrctl status

    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 2 November 2015 06:55:24

    Copyright (c) 1991, 2009, Oracle.  All rights reserved.

    Connection to (ADDRESS = (PROTOCOL = tcp)(HOST=oraclenode1) (PORT = 1521))

    STATUS of the LISTENER

    ------------------------

    Alias LISTENER

    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production

    Start date 2 November 2015 03:56:41

    Uptime 0 days 2 h 58 min 42 s

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Parameter Listener of the /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora file

    The listener log file /U01/app/Oracle/diag/tnslsnr/oraclenode1/listener/alert/log.XML

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=192.168.0.151) (PORT = 1521)))

    Summary of services...

    Service 'TEST1' has 1 instance (s).

    Instance "TEST1", status UNKNOWN, has 1 operation for this service...

    Service 'TEST1_DGMGRL' has 1 instance (s).

    Instance "TEST1", status UNKNOWN, has 1 operation for this service...

    The command completed successfully

    [oracle@oraclenode1 path] $ cat /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

    LISTENER =

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = tcp)(HOST=oraclenode1) (PORT = 1521))

    (ADDRESS = (PROTOCOL = ipc) (KEY = EXTPROC1571))

    )

    # What's new

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = TEST1)

    (SID_NAME = TEST1)

    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1)

    )

    (SID_DESC =

    (GLOBAL_DBNAME = TEST1_DGMGRL)

    (SID_NAME = TEST1)

    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1)

    )

    )

    STANDBY

    [oracle@oraclenode2 path] $ lsnrctl status

    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 2 November 2015 06:55:02

    Copyright (c) 1991, 2009, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=oraclenode2) (PORT = 1521)))

    STATUS of the LISTENER

    ------------------------

    Alias LISTENER

    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production

    Start date 2 November 2015 06:49:19

    Uptime 0 days 0 h 5 min 43 s

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Parameter Listener of the /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora file

    The listener log file /U01/app/Oracle/diag/tnslsnr/oraclenode2/listener/alert/log.XML

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=oraclenode2) (PORT = 1521)))

    Summary of services...

    Service 'TEST2' has 2 occurrences.

    Instance "TEST2", status UNKNOWN, has 1 operation for this service...

    Instance "TEST2", State LOAN, has 1 operation for this service...

    Service 'TEST2_DGB' has 1 instance (s).

    Instance "TEST2", State LOAN, has 1 operation for this service...

    Service 'TEST2_DGMGRL' has 1 instance (s).

    Instance "TEST2", status UNKNOWN, has 1 operation for this service...

    The command completed successfully

    [oracle@oraclenode2 path] $ cat /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

    listener.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

    # Generated by Oracle configuration tools.

    # What's new

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = TEST2)

    (SID_NAME = TEST2)

    (ORACLE_HOME = u01/app/oracle/product/11.2.0/dbhome_1)

    )

    (SID_DESC =

    (GLOBAL_DBNAME = TEST2_DGMGRL)

    (SID_NAME = TEST2)

    (ORACLE_HOME = u01/app/oracle/product/11.2.0/dbhome_1)

    )

    )

    LISTENER =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = oraclenode2) (PORT = 1521))

    )

    )

    ADR_BASE_LISTENER = / u01/app/oracle

    IAM able to connect from standby and watch primary elementary school

    Here is the configuration each databases dgmgrl

    DGMGRL > see the database 'TEST1' verbose;

    Database - TEST1

    Role: PRIMARY

    State of destination: TRANSPORT-WE

    Occurrence (s):

    TEST1

    Properties:

    DGConnectIdentifier = "test1".

    ObserverConnectIdentifier = "

    LogXptMode = "ASYNC".

    DelayMins = '0'

    Binding = "optional."

    MaxFailure = '0'

    MaxConnections = '1'

    ReopenSecs = "300"

    NetTimeout = "30"

    RedoCompression = "DISABLE."

    LogShipping = 'ON '.

    PreferredApplyInstance = "

    ApplyInstanceTimeout = '0'

    ApplyParallel = 'AUTO '.

    StandbyFileManagement = 'AUTO '.

    ArchiveLagTarget = '0'

    LogArchiveMaxProcesses = "4"

    LogArchiveMinSucceedDest = '1'

    DbFileNameConvert = "

    LogFileNameConvert = "

    FastStartFailoverTarget = "

    StatusReport = "(monitor).

    InconsistentProperties = "(monitor).

    InconsistentLogXptProps = "(monitor).

    SendQEntries = "(monitor).

    LogXptStatus = "(monitor).

    RecvQEntries = "(monitor).

    HostName = "oraclenode1.localdomain."

    Nom_sid = "TEST1".

    StaticConnectIdentifier = ' (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=oraclenode1.localdomain) (PORT = 1521)) (CONNECT_DATA = (SERVICE_NAME = TEST1_DGMGRL) (INSTANCE_NAME = TEST1)(SERVER=DEDICATED)))'

    StandbyArchiveLocation = ' / u01/app/oracle/flash_recovery_area /'

    AlternateLocation = "

    LogArchiveTrace = '0'

    LogArchiveFormat = '% t_%s_%r.dbf '.

    TopWaitEvents = "(monitor).

    State of the database:

    SUCCESS

    DGMGRL > see the detailed database "TEST2."

    Database - TEST2

    Role: STANDBY PHYSICS

    State of destination: apply

    Transport Lag: 0 seconds

    Apply the Lag: 10 minutes 24 seconds

    Real-time query: OFF

    Occurrence (s):

    TEST2

    Properties:

    DGConnectIdentifier = 'test2 '.

    ObserverConnectIdentifier = "

    LogXptMode = 'ARCH '.

    DelayMins = '0'

    Binding = "OPTIONAL."

    MaxFailure = '0'

    MaxConnections = '1'

    ReopenSecs = "300"

    NetTimeout = "30"

    RedoCompression = "DISABLE."

    LogShipping = 'ON '.

    PreferredApplyInstance = "

    ApplyInstanceTimeout = '0'

    ApplyParallel = 'AUTO '.

    StandbyFileManagement = 'AUTO '.

    ArchiveLagTarget = '0'

    LogArchiveMaxProcesses = "30"

    LogArchiveMinSucceedDest = '1'

    DbFileNameConvert = "/ TEST1 /, / TEST2 /.

    LogFileNameConvert = "/ TEST1 /, / TEST2 /.

    FastStartFailoverTarget = "

    StatusReport = "(monitor).

    InconsistentProperties = "(monitor).

    InconsistentLogXptProps = "(monitor).

    SendQEntries = "(monitor).

    LogXptStatus = "(monitor).

    RecvQEntries = "(monitor).

    HostName = "oraclenode2.localdomain."

    Nom_sid = 'TEST2 '.

    StaticConnectIdentifier = ' (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=oraclenode2.localdomain) (PORT = 1521)) (CONNECT_DATA = (SERVICE_NAME = TEST2_DGMGRL) (INSTANCE_NAME = TEST2)(SERVER=DEDICATED)))'

    StandbyArchiveLocation = ' / u01/app/oracle/flash_recovery_area /'

    AlternateLocation = "

    LogArchiveTrace = '0'

    LogArchiveFormat = '% t_%s_%r.dbf '.

    TopWaitEvents = "(monitor).

    State of the database:

    SUCCESS

    and here are the logs at the time of the digital switchover

    primary

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.362: CRS to notify the primary database of disassembly of the passage to the

    2015-11-02 06:52:28.362 ACLS: not configured CRS, config = 2

    .

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.362: display primary instances for PASSAGE of phase 1

    2015-11-02 06:52:28.362 INSV: message received for publication of inter - the instance

    2015-11-02 06:52:28.362 req ID 1.1.516864462, CTL_SWITCH opcode, phase BEGIN, 5 flags

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.362: State of rfi_post_instances() for CTL_SWITCH = ORA-00000

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.363: dispersants message to STANDBY for TRANSITION phase BEGIN

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.363: entered rfmsoexinst for phase 1

    2015-11-02 06:52:28.363 INSV: response for message with

    2015-11-02 06:52:28.363 req ID 1.1.516864462, CTL_SWITCH opcode, phase BEGIN

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.365: primary instances display for transition to THE phase 2

    2015-11-02 06:52:28.365 INSV: message received for publication of inter - the instance

    2015-11-02 06:52:28.366 req ID 1.1.516864462, opcode CTL_SWITCH, disassembling, 5 flags

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.366: State of rfi_post_instances() for CTL_SWITCH = ORA-00000

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.366: dispersants message to STANDBY for transition to THE phase of DISMANTLING

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.366: entered rfmsoexinst for phase 2

    2015-11-02 06:52:28.366 RSM0: received the State value ask: rid = 0 x 01041001, sid = 0, phid = 1, econd = 2, sitehndl = 0 x 02001000

    2015-11-02 06:52:28.366 Log transport resources: SetState OFFLINE, DISASSEMBLY phase, external Cond SWITCH-OVER-PHYS_STBY

    2015-11-02 06:52:28.367 RSM0: received the State value ask: rid = 0 x 01011001, sid = 4, phid = 1, econd = 2, sitehndl = 0 x 02001000

    2015-11-02 06:52:28.367 [IAM = PRIMARY] Resource database: 0 x 02001000 SetState PHYSICAL-APPLY-ON, DISASSEMBLY phase, external Cond SWITCH-OVER-PHYS_STBY, handful of Site target

    2015-11-02 06:52:28.367 to execute SQL [ALTER DATABASE COMMIT to SWITCH STANDBY mode PHYSICS WITH the STOP of the SESSION]

    2015-11-02 06:57:50.523 runtime error SQL = 604, sql = [ALTER DATABASE COMMETTRE through to PHYSICAL STANDBY WITH the CLOSING of SESSION]. See the below error stack.

    2015-11-02 06:57:50.524 ORA-00604: error occurred at the SQL level 1 recursive

    2015-11-02 06:57:50.524 ORA-01093: ALTER DATABASE CLOSE allowed only with no connected sessions

    2015-11-02 06:57:50.524 ERROR: has no failover of the database to a database of physical intelligence.

    2015-11-02 06:57:50.524 RSM: compensation IncarnationTable internal property of the site 0 x 01010000

    2015-11-02 error 06:57:50.524 database resource SetState (16772)

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.526: resource guard returned the error: operation = status = ORA-16772

    2015-11-02 02001000 516864462 06:57:50.526 resources: TEST1 (01011001) State: PHYSICAL-APPLY-ON

    2015-11-02 06:57:50.526 02001000 516864462 CTL_SWITCH operation cancelled during phase 2, error = ORA-16772

    2015-11-02 06:57:50.526 INSV: response for message with

    2015-11-02 06:57:50.527 req ID 1.1.516864462, CTL_SWITCH, disassembling opcode

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.527: Instance ID 1 returned ORA-16772

    2015-11-02 06:57:50.527 02001000 516864462 for disassembling of op CTL_SWITCH.

    2015-11-02 06:57:50.527 02001000 516864462 CTL_SWITCH operation cancelled during phase 2, error = ORA-16772

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.527: display primary instances for PASSAGE of phase 5

    2015-11-02 06:57:50.527 INSV: message received for publication of inter - the instance

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.527: State of rfi_post_instances() for CTL_SWITCH = ORA-00000

    2015-11-02 06:57:50.528 req ID 1.1.516864462, CTL_SWITCH opcode, phase END, 5 flags

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.528: passage to the aborted due to errors

    2015-11-02 02001000 516864462 named Site 06:57:50.528: TEST1 is always primary

    2015-11-02 02001000 516864462 error 06:57:50.528 = ORA-16772

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.528: dispersants message to STANDBY for PASSING phase END

    2015-11-02 06:57:50.528 INSV: response for message with

    2015-11-02 06:57:50.528 req ID 1.1.516864462, CTL_SWITCH opcode, phase END

    2015-11-02 06:58:18.647 NSV1: Site TEST2 returned ORA-16665.

    2015-11-02 06:58:33.642 NSV1: Site TEST2 returned ORA-16665.

    2015-11-02 06:58:48.648 NSV1: Site TEST2 returned ORA-16665.

    2015-11-02 06:59:03.653 NSV1: Site TEST2 returned ORA-16665.

    2015-11-02 06:59:18.658 NSV1: Site TEST2 returned ORA-16665.

    2015-11-02 06:59:33.665 NSV1: Site TEST2 returned ORA-16665.

    2015-11-02 06:59:48.670 NSV1: Site TEST2 returned ORA-16665.

    2015-11-02 07:00:03.676 NSV1: Site TEST2 returned ORA-16665.

    2015-11-02 07:00:18.680 NSV1: Site TEST2 returned ORA-16664.

    2015-11-02 02001000 516864462 MICHAEL 07:00:18.680: TEST2 database returned ORA-16664

    2015-11-02 07:00:18.682 02001000 516864462 opcode = CTL_SWITCH, phase = END, req_id = 1.1.516864462

    2015-11-02 07:00:18.682 02001000 516864462 CTL_SWITCH operation cancelled during phase 5, error = ORA-16664

    2015-11-02 02001000 516864462 MICHAEL 07:00:18.682: entered rfm_release_chief_lock() for CTL_SWITCH

    2015-11-02 01010000 516864464 MICHAEL 07:00:18.693: entered rfm_get_chief_lock() for EDIT_RES_PROP, reason 0

    2015-11-02 01010000 516864464 MICHAEL 07:00:18.751: entered rfm_get_chief_lock() for EDIT_RES_PROP, reason 0

    2015-11-02 01010000 516864464 MICHAEL 07:00:18.752: lock head convert to writing op EDIT_RES_PROP

    2015-11-02 01010000 516864464 MICHAEL 07:00:18.752: EDIT_RES_PROP: success

    2015-11-02 01010000 516864464 MICHAEL 07:00:18.752: critical state of STANDBY in configuration assessment

    2015-11-02 01010000 516864464 MICHAEL 07:00:18.752: the critical condition of 0 x 02010000

    2015-11-02 01010000 516864464 ChangeCritical value 07:00:18.752 is FALSE

    2015-11-02 01010000 516864464 IsCritical 07:00:18.752 is FALSE

    2015-11-02 07:00:18.752 MICHAEL: update Seq.MIV to 0.17, write metadata in ' / u01/app/oracle/product/11.2.0/dbhome_1/dbs/dr2TEST1.dat '.

    2015-11-02 07:00:18.760 INSV: message received for publication of inter - the instance

    2015-11-02 07:00:18.760 req ID 1.1.516864464, EDIT_RES_PROP opcode, RESYNCHRONIZATION, flags 8005

    2015-11-02 07:00:18.760 INSV: response for message with

    2015-11-02 07:00:18.760 req ID 1.1.516864464, opcode EDIT_RES_PROP, phase of RESYNCHRONIZATION

    2015-11-02 07:00:18.761 NSV1: (Seq.MIV = 0.17) start to send the metadata file: "/ u01/app/oracle/product/11.2.0/dbhome_1/dbs/dr2TEST1.dat".

    2015-11-02 07:00:18.765 NSV1: block sending #1 (containing Seq.MIV = 0.17), 3 blocks

    2015-11-02 07:00:18.767 NSV1: (Seq.MIV = 0.17) end of transmission of metadata files: opcode EDIT_RES_PROP (1.1.516864464)

    2015-11-02 01010000 516864464 MICHAEL 07:00:18.771: IncarnationTable the value 1,1,894614568,0 property * for database TEST1

    2015-11-02 01010000 516864464 MICHAEL 07:00:18.771: entered rfm_release_chief_lock() for EDIT_RES_PROP

    2015-11-02 07:03:45.002 516864468 00001000 MICHAEL: entered rfm_get_chief_lock() for MON_VERIFY, reason 0

    2015-11-02 07:03:45.002 516864468 00001000 MICHAEL: lock head convert to customer healthcheck

    2015-11-02 07:03:45.003 INSV: message received for publication of inter - the instance

    2015-11-02 07:03:45.003 req ID 1.1.516864468, MON_VERIFY opcode, phase BEGIN, 5 flags

    2015-11-02 07:03:45.070 INSV: response for message with

    2015-11-02 07:03:45.071 req ID 1.1.516864468, MON_VERIFY opcode, phase BEGIN

    2015-11-02 07:03:45.075 00000000 516864468 MICHAEL: entered rfm_release_chief_lock() for MON_VERIFY

    2015-11-02 07:03:59.377 RSM0: receipt get Request property: rid = 0 x 01010000, pid = 47

    2015-11-02 07:03:59.378 of database Resource: get the StatusReport property

    2015-11-02 07:03:59.435 database Resource successful GetProperty

    2015-11-02 01010000 516864469 MICHAEL 07:03:59.435: MON_PROPERTY finished

    2015-11-02 01010000 516864470 MICHAEL 07:03:59.440: GET_RES: success. (len = 9846)

    2015-11-02 01010000 516864470 MICHAEL 07:03:59.441: GET_RES finished

    2015-11-02 02010000 516864471 MICHAEL 07:04:23.258: MON_PROPERTY sent the TEST2 for treatment

    2015-11-02 02010000 516864471 MICHAEL 07:04:23.326: MON_PROPERTY finished

    2015-11-02 02010000 516864472 MICHAEL 07:04:23.330: MON_PROPERTY sent the TEST2 for treatment

    2015-11-02 02010000 516864472 MICHAEL 07:04:23.337: MON_PROPERTY finished

    2015-11-02 02010000 516864473 MICHAEL 07:04:23.339: MON_PROPERTY sent the TEST2 for treatment

    2015-11-02 02010000 516864473 MICHAEL 07:04:23.346: MON_PROPERTY finished

    2015-11-02 02010000 516864474 MICHAEL 07:04:23.351: GET_RES: success. (len = 9911)

    2015-11-02 02010000 516864474 MICHAEL 07:04:23.352: GET_RES finished

    Journal of primary education alerts

    My 02 Nov 06:52:28 2015

    ALTER DATABASE COMMIT TO SWITCH STANDBY MODE PHYSICS WITH THE STOP OF THE SESSION

    ALTER DATABASE COMMIT to SWITCH STANDBY mode PHYSICS [process Id: 5160] (TEST1)

    My 02 Nov 06:52:30 2015

    Thread 1 Advanced to record the sequence 80 (switch LGWR)

    Currently Journal # 2 seq # 80 mem # 0: /u01/app/oracle/TEST1/redo02.log

    Waiting for all non-current archive ORLs...

    Waiting for thread 1 sequence 79 ORL to archive...

    My 02 Nov 06:52:30 2015

    Arc0: Standby redo log file selected for thread 1 sequence 79 for destination LOG_ARCHIVE_DEST_2

    Archived journal 61 additional for each sequence 1 79 0x4bcbdbe8 dest ID thread entry 1:

    My 02 Nov 06:52:40 2015

    ENT for thread 1 sequence 79 have been archived...

    All non-current ORLs have been archived.

    Waiting for all FAL entries to archive...

    All FAL entries were archived.

    Waiting for dest_id 2 can be synchronized...

    My 02 Nov 06:52:50 2015

    Physical passage target Active, synchronized sleep has been identified

    My 02 Nov 06:52:50 2015

    SMON: disabling recovery tx

    All dispatchers/dispatchers and shared servers stop

    CLOSING: kill the server sessions.

    My 02 Nov 06:57:50 2015

    CLOSED: do not kill all active sessions

    CLOSURE: Close error 1093 in the database

    My 02 Nov 06:57:50 2015

    SMON: enabling the recovery of tx

    ORA-1093 marked during: ALTER DATABASE COMMETTRE through to PHYSICAL STANDBY WITH STOP SESSION...

    My 02 Nov 06:57:50 2015

    idle dispatcher "D000" completed, pid = (18: 13)

    From OCMS background process

    My 02 Nov 06:57:50 2015

    OCMS started with pid = 20, OS id = 14104

    STANDBY

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.549: display of bodies sleep for transition to THE phase 1

    2015-11-02 06:52:28.549 INSV: message received for publication of inter - the instance

    2015-11-02 06:52:28.549 req ID 1.1.516864462, CTL_SWITCH opcode, phase BEGIN, 5 flags

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.549: entered rfmsoexinst for phase 1

    2015-11-02 06:52:28.549 INSV: response for message with

    2015-11-02 06:52:28.549 req ID 1.1.516864462, CTL_SWITCH opcode, phase BEGIN

    2015-11-02 02001000 516864462 MICHAEL 06:52:28.550: entered rfm_release_chief_lock() for CTL_SWITCH

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.713: entered rfm_get_chief_lock() for CTL_SWITCH, reason 0

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.713: lock head convert for passage to the

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.714: display of bodies sleep for transition to THE phase 5

    2015-11-02 06:57:50.714 INSV: message received for publication of inter - the instance

    2015-11-02 06:57:50.714 req ID 1.1.516864462, CTL_SWITCH opcode, phase END, 5 flags

    2015-11-02 06:57:50.714 INSV: response for message with

    2015-11-02 06:57:50.714 req ID 1.1.516864462, CTL_SWITCH opcode, phase END

    2015-11-02 02001000 516864462 MICHAEL 06:57:50.714: entered rfm_release_chief_lock() for CTL_SWITCH

    2015-11-02 06:58:18.831 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 06:58:33.827 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 06:58:48.832 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 06:59:03.837 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 06:59:18.843 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 06:59:33.849 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 06:59:48.855 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 07:00:03.860 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 07:00:11.992 NSV0: unable to connect to the remote database TEST1. Error is ORA-12514

    2015-11-02 07:00:11.993 NSV0: could not send message to site TEST1. Error code is ORA-12514.

    2015-11-02 07:00:11.993 MICHAEL: database TEST1 returned ORA-12514

    2015-11-02 07:00:11.993 of opcode = CTL_SWITCH, phase = END, req_id = 1.1.516864462

    2015-11-02 07:00:18.864 drcx: task req_id is not found = 1.1.516864462 for PROBE.

    2015-11-02 07:00:18.946 DRCX: begin to receive the metadata file: "/ u01/app/oracle/product/11.2.0/dbhome_1/dbs/dr2TEST2.dat".

    2015-11-02 07:00:18.950 DRCX: received block #1 (containing Seq.MIV = 0.17), 3 blocks

    2015-11-02 07:00:18.952 DRCX: end of receiver metadata file: opcode EDIT_RES_PROP (1.1.516864464)

    2015-11-02 07:00:18.952 MICHAEL: entered rfm_get_chief_lock() for EDIT_RES_PROP, reason no. 1

    2015-11-02 07:00:18.952 00000000 516864464 MICHAEL: lock head convert for resynchronization of the metadata

    2015-11-02 07:00:18.953 00000000 516864464 MICHAEL: status of published instances of sleep for RESYNCHRONIZATION = ORA-00000

    2015-11-02 07:00:18.953 INSV: message received for publication of inter - the instance

    2015-11-02 07:00:18.953 req ID 1.1.516864464, EDIT_RES_PROP opcode, RESYNCHRONIZATION, flags 8005

    2015-11-02 07:00:18.953 MICHAEL: metadata available (1.1.516864464), loading of ' / u01/app/oracle/product/11.2.0/dbhome_1/dbs/dr2TEST2.dat '.

    2015-11-02 07:00:18.953 to execute SQL [ALTER SYSTEM to REGISTER]

    2015-11-02 07:00:18.953 SQL [ALTER SYSTEM REGISTRY] executed successfully

    2015-11-02 07:00:18.955 MICHAEL:... .committing load memory, Seq.MIV = 0.17

    2015-11-02 07:00:18.955 MICHAEL: check the critical status of this database.

    2015-11-02 07:00:18.955 INSV: response for message with

    2015-11-02 07:00:18.955 req ID 1.1.516864464, opcode EDIT_RES_PROP, phase of RESYNCHRONIZATION

    2015-11-02 07:00:18.956 00000000 516864464 MICHAEL: entered rfm_release_chief_lock() for EDIT_RES_PROP

    2015-11-02 07:03:45.188 516864468 00001000 MICHAEL: entered rfm_get_chief_lock() for MON_VERIFY, reason 0

    2015-11-02 07:03:45.188 516864468 00001000 MICHAEL: lock head convert to customer healthcheck

    2015-11-02 07:03:45.189 INSV: message received for publication of inter - the instance

    2015-11-02 07:03:45.189 req ID 1.1.516864468, MON_VERIFY opcode, phase BEGIN, 5 flags

    2015-11-02 07:03:45.258 INSV: response for message with

    2015-11-02 07:03:45.259 req ID 1.1.516864468, MON_VERIFY opcode, phase BEGIN

    2015-11-02 07:03:45.259 00000000 516864468 MICHAEL: entered rfm_release_chief_lock() for MON_VERIFY

    2015-11-02 07:04:23.445 RSM0: receipt get Request property: rid = 0 x 02010000, pid = 47

    2015-11-02 07:04:23.445 of database Resource: get the StatusReport property

    2015-11-02 07:04:23.509 database Resource successful GetProperty

    2015-11-02 02010000 516864471 MICHAEL 07:04:23.510: MON_PROPERTY finished

    2015-11-02 07:04:23.516 RSM0: receipt get Request property: rid = 0 x 02010000, pid = 58

    2015-11-02 07:04:23.516 of database Resource: get the TransportLag property

    2015-11-02 07:04:23.518 database Resource successful GetProperty

    2015-11-02 02010000 516864472 MICHAEL 07:04:23.519: MON_PROPERTY finished

    2015-11-02 07:04:23.525 RSM0: receipt get Request property: rid = 0 x 02010000, pid = 59

    2015-11-02 07:04:23.525 of database Resource: get the ApplyLag property

    2015-11-02 07:04:23.529 database Resource successful GetProperty

    2015-11-02 02010000 516864473 MICHAEL 07:04:23.530: MON_PROPERTY finished

    Suspend alerts log

    Fatal OR connect 12514 error, connect to:

    (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST=oraclenode1) (PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = TEST1_DGB) (CID = (PROGRAM = oracle) (HOST = oraclenode2.localdomain)(USER=oracle)))

    VERSION INFORMATION:

    AMT for Linux: Version 11.2.0.1.0 - Production

    Protocol TCP/IP NT to Linux adapter: Version 11.2.0.1.0 - Production

    Time: 2 November 2015 07:18:40

    Tracing not lit.

    AMT error struct:

    NS main err in code: 12564

    AMT-12564: TNS:connection refused

    NS secondary err code: 0

    NT main err in code: 0

    NT secondary err code: 0

    NT OS err code: 0

    Mon 02 Nov 07:19:25 2015

    RFS [5]: Journal selected 4 for thread 1 81 dbid 1271656936 branch of the 894614568 sequence

    Mon 02 Nov 07:19:25 2015

    Archived journal 34 extra for each sequence 1 81 0x4bcbdbe8 dest ID thread entry 1:

    Mon 02 Nov 07:19:25 2015

    RFS [6]: assigned to the RFS 5215 process

    RFS [6]: identified the type of database such as 'physical' standby: customer is ARCH pid 4933

    Mon 02 Nov 07:19:25 2015

    Recovery Media Log /u01/app/oracle/flash_recovery_area/1_81_894614568.dbf

    Media, recovery waiting for thread 1 sequence 82

    I guess that there something wrong with the configuration of the listener but no mater what im not able to find what.

    Thanks for all your answers

    One thing is sure to have active sessions that does not make the transition to digital. Query the session$ v, identify sessions and try to kill them at the DB level. Please refer to my previous post.

    If it is still a problem, then I think you might be hitting the bug.

    -Jonathan Rolland

  • Duplicates in a database to host a host b/c

    Hello

    I need to move a single instance of database 11.2.0.4 (no ASM) on host A to RAC 11.2.0.4 (ASM) to host b and c.

    I would use the active database copy, it is the right method?

    My steps are:

    • create spfile on host b
    • Add the instance to the listener on host b
    • use rman duplicate form database (the sid must be the same)
    • convert to rac with dbca

    These steps are correct?

    I have some doubt in duplicate of active database using the same instance and the name of db.

    Then this cause problems?

    Thank you

    It should work

  • modify the INSTANCENAME parameter after the backup database

    Hello

    our primary database is configured as follows:

    SQL > show parameter db_name;
    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    db_name string prod01


    SQL > show the INSTANCENAME parameter
    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    instance_name string prod01

    the corresponding backup database is configured as:

    SQL > show parameter db_name;
    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    db_name string prod01


    SQL > show the INSTANCENAME parameter
    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    instance_name string stbyprod01

    Now, the standby database must be enabled. Later, I want to change the stbyprod01 to prod01 INSTANCENAME parameter.

    The question now is: what does take to change the INSTANCENAME parameter? In fact the database pending will be

    already be activated and be considered and treated as a stand-alone database. The former primary database will be used no more.

    I would like to do the following:

    SQL > create pfile = 'initprod01.ora' of spfile;

    SQL > shutdown immediate;

    Oracle # > change the pfile file and change the stbyprod01 to prod01 INSTANCENAME parameter

    SQL > startup;

    SQL > create spfile = 'spfileprod01.ora' of pfile;

    SQL > shutdown immediate;

    SQL > startup;

    That should be all - from my point of view (I know that LISTENER.) ORA and TNSNAMES. ORA should be modified, too).

    If someone has already experiences with the INSTANCENAME parameter change but sees some additional configurations: Please let me know!

    Rgds

    Jan

    1. you can use "alter system set instance_name" to change the value of the instance name.

    2. you must do the following to activate the standby database (NOTE:-this is only for the activation of the backup database and not the passage to digital database)

    1 startup nomount

    2. change the base of Mount Eve.

    3. change the database activate the database pending.

    4. change the database open.

  • ESXi 4.1 - Dell Poweredge 2850 - tape backup - host does not support configuring passthrough

    I'm trying to get a tape backup to work on my ESXi host, so I can save my win2003 VM.  I get this error under VMDirectPath, 'host does not support configuring passthrough ".  Under Configuration > storage adapters > I don't see my tape drive listed.  Also, I noticed that my SCSI controller card is NOT on the HCL (Adaptec 39160).  See.  This is probably why passthrough doesn't work.

    So, I was thinking of buying this one (Adaptec 39320) because he seems to be on the list.  This will solve my problem or is this server too old for passthrough to work?

    To use VMDirectpath on an Intel Server chipset used must support Intel VT - d (Directed i/o).   I don't think that's the case with the models of 2850, but if it was you would see an option in the BIOS to enable this.  It is a separate option of VT - x, which allows the host run the 64-bit clients.

  • Tape backup integration

    Hello

    We are looking for a backup solution for our vSphere with VMware vCloud infrastructure, comparing the VDR and Veeam, etc., is there a backup solution has the function of backup band integrated or integrable with other tape backup software as an automated solution complete?

    Pouvez ESXi VDR backup hosts?

    Thank you

    William

    It is a departure for passthrough. You can choose through it, however.

    http://communities.VMware.com/message/1690414#1690414

    VMdirectpath

    http://www.VMware.com/PDF/vsp_4_vmdirectpath_host.PDF

  • Using the feature 'snapshot' of tape backup?

    Ubuntu Server 10.04 LTS

    VMware-server - 2.0.2 - 203138.x86_64 patched with VMware-server-2.0.2-203138-update-2.patch you need to compile on Ubuntu.

    I wrote a script to stop the VMS gently before backup and raise them to the end.  I am backup on an NFS share so that encrypt a tape backup.  It takes about 6 hours.

    I would like to backup without having to go down the virtual machines.  Can I do this using a 'snapshot '?  I noticed after that I have create a snapshot of a virtual machine, the directory goes 256 files 62G in total size to 512 files of 65G in total size.  I just do upward 65G all on tape?  Is there some files (like maybe log files) that should not be backed up because they are constantly changing?

    Should what files I back up to make sure I have a complete backup I can restore.

    Thanks in advance for any advice.

    -Frank

    Yep,

    You are right!

    Copy all the files but this:

    Windows SBS 2003 R2-000001 - sXXX.vmdk

    Windows SBS 2003 R2 - 000001.vmdk

    Windows SBS 2003 R2 - Snapshot7.vmem

    Windows SBS 2003 R2 - Snapshot7.vmsn

    Don't forget that when you copy/save files, vdisk virtual machine (check in the Windows SBS 2003 R2.vmx file) pointing to Windows SBS 2003 R2 - 000001.vmdk, but it should point to Windows SBS 2003 R2.vmdk when a restore is performed

    Now, hope this helps definitely

    Best wishes / Saludos.
    Pablo

    Please consider awarding

    all useful or correct answer. Thank you!! -

    Por favor considered premiar

    any respuesta correcta o util. ¡¡MUCHAS gracias!

    Virtually noob blog

  • Destinations of recovering data from tape backup

    I am doing some tests with data recovery in a lab environment and wonder now to get the destinations of tape data recovery.  Is there a way or a need to suspend the destination for the backup to tape?  I am considering this hypothetical: data recovery destination is on a NAS device and begins the task of band.  During tape backup, data recovery backup another machine, updating the catalog and DATS mi backup.  Which could cause problems when you try to recover?

    Ideally we would keep separate data recovery window of the tape backup window, but I was wondering if we will have problems if the two annexes never collided and we need to restore.

    Thank you

    I do store deduplication backup tape since I use VDR. I'm testing the recovery from tape and deduplication deduplication to vm on a regular basis because I will never approve a disk to disk backup. Still worked well.

    But I do not use a NAS share as deduplication store, I use a RDM. You must close VDR to get the store of deduplication to tape. Just look at this thread http://communities.vmware.com/message/1505632#1505632. There are two ways presented, RDM and SMB share.

    There is no risk that VDR is hitting the backup process of the band at least using RDM. When VDR tries to start while the store of deduplication is mounted anywhere else, VDR does not start.

    You'll also somehow influence the integritiy check the timer. It's just a work around until VMware gives us a real control in this topic, but it works - at least for me. Just look at this thread http://communities.vmware.com/message/1508463#1508463

  • Question about article PLUS ARCHIVELOG to BACKUP DATABASE

    Version: 10.2,11.1, 11.2
    Platform: AIX 6.1

    We use
    BACKUP DATABASE PLUS ARCHIVELOG;.
    to save our DBs.

    Occasionally, we get
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
    and RMAN error and stops its execution.

    We want to know if done RMAN backup comics first and then started taking the log of archiving backup. If this isn't the case, then we will use simple command BACKUP DATABASE for DB FULL backup and then take the backup logs arch separately. We do not want our DB FULL backup to fail due to problems of archivelog.

    Hello

    RMAN backup archives first, and then proceeds to the backup of data files.

    Once the backup of data files is performed and if all the archives get generated during the backup process, then these archives was finally saved.

  • VMFS LUNS of tape backup,

    Hello

    We have 9 servers to ESX 3.5, a SAN HP EVA 8000 and a proxy server backup of VCB windows 2003 using arcserve

    Is it possible to save a VMFS LUNS set on tape, we can save individual using vcb and it works well, but we need to have a full tape backup VMFS LUNS?

    Is this possible and if so, how? I'm sure I'm missing something obvious?

    You MAY be able to get Replication Solutions Manager to describe the VM snapshots before a SAN snapshot. Or you could use a mirror Clone and save it like that. But the question will read the VMFS. You can add a "helper" ESX Server, but I don't think there's Arcserve software that could be installed in the Central Office.

    The great thing is why you want to do? Is there a problem with VCB? Maybe you could add another VCB proxy if your backup times are achieved. If you go down the path of SAN backups based, make sure that you can recover. more likely, the backup will be consistent down.

    Dave Convery

    VMware vExpert 2009

    http://www.dailyhypervisor.com

    Prudent. We do not want to make of this.

    Bill Watterson, "Calvin and Hobbes".

  • RUN 'delete noprompt obsolete' before 'backup database '.

    Hello

    11g on windows 2003, window 3 day recovery

    For almost a year now, I have after having run the script every day to save my database below. Now I begin to run out of disk space and cannot run backup commands unless I run 'delete noprompt obsolete' first.

    backup database tag = database_full_backup;
    backup ARCHIVELOG all delete them tag input = achivelog_backup;
    cross-checking of backup;
    delete the backup expired;
    delete noprompt obsolete;

    Is it a bad idea to rearange the order of commands like below?

    cross-checking of backup;
    delete the backup expired;
    delete noprompt obsolete;
    backup database tag = database_full_backup;
    backup ARCHIVELOG all delete them tag input = achivelog_backup;

    Thanks for any help

    Hello
    No problem. You have configured a window of 3 days recovery, it means you want to be able to restore/recovery sysdate - X (up to 3 X) at any time. RMAN which will always respect, you can "remove obsolete" when you want.
    Best regards
    Phil

Maybe you are looking for