Duplication of backup-based with a connection target

RMAN-00571: ===========================================================

RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

RMAN-00571: ===========================================================

RMAN-03002: failure of Db dual to 2013/06/21 11:03:04

RMAN-06136: the auxiliary database ORACLE error: ORA-01503: CREATE CONTROLFILE failed

ORA-01990: error opening the password file ' / u01/app/db9i/OraHome9i/dbs/orapw.

ORA-27037: unable to get file status

Linux-x86_64 error: 2: no such file or directory

My name of the instance is administrative in auxiliary and administrative in the target (source). Should I create a password on auxiliary file?

Ok

The problem is that I need to scp that my archive log files too to retrieve restore procedure, once in place, everything is completed successfully.

Tags: Database

Similar Questions

  • Backup DR with vRanger connection devices

    Having Dr. devices dealing with VM backups on-site, but one of the questions that arise is the time of the backup. It takes about 8 hours to backup the SQL files every night. Just to let you know its all upwards in a virtual machine environment.

    Can incorporating vRanger of connection or AppAssure with DR unit affect backup performance?

    Is there a whitepaper on this?

    Thank you!

    Hi Geeka,
    Depending on how you are currently using the device DR with vRanger connection, your current solution could be improved.

    If you are simply using the DR as a CIFS share there is another way.

    vRanger connection also supports the Dell RDA technology, which can provide a level of deduplication side source.

    Consider implementing vRanger connection Virtual appliances (one per host), or one per cluster, your choice, the virtual devices include technology of the GDR.

    Configure the virtual machine backups to cross Virtual Appliances and target (GDR/RDS) container on the Dominican Republic.

    The backup will be a snapshot of the virtual machine, but use hot add technology to fix the disks to the virtual appliance, data are then broadcast through the virtual appliance to the GDR DR container. At the point where the data leaves the appliance virtual it's pattern matched with data stored on the Dominican Republic. All blocks that match are not sent.

    This reduces network traffic and allows backups to do more.

    If you want to add the technology to the protection of SQL as an agent-based application, then take a look at NetVault Backup, it will be directly interfacing with SQL via VDI or VSS, providing full, incremental and differential backups. It's agents also include the GDR technology and can provide source de-duplication to a DR GDR container.

    AppAssure also has an agent and can protect the content of the full virtual machine, including the SQL instance, but it will require its own server and storage and does not directly allow the DR unit to store the initial backup data. It can create Archives of data sets that can be moved from AppAssure on the good DR database server, but it's more for long-term storage.

    I hope this helps.

    See you soon,.
    Adrian.

  • A UDP connection target FPGA with LabVIEW

    Hello

    I have an FPGA with Ethernet connected to my HOST PC, now I would like to connect the LabVIEW FPGA target and access to its records. Please suggest me.

    Kind regards

    Chetan

    Hi Cheetah,.

    don't know, because I do not know your format or the manual of your FPGA...

  • Backup fails with Invalid RECID error

    Hi all

    Please help me understand the guard-section layout

    below the text is
    [http://download.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmtroub.htm#447765]
    Backup Fails with Invalid RECID Error: Solution 2
    
    This solution is more difficult than solution 1:
    
    To create the control file with SQL*Plus:
    
       1. Connect to the target database with SQL*Plus. For example, enter:
    
          % sqlplus 'SYS/oracle@trgt AS SYSDBA'
    
       2. Mount the database if it is not already mounted:
    
          SQL> ALTER DATABASE MOUNT;
    
       3. Back up the control file to a trace file:
    
          SQL> ALTER DATABASE BACKUP CONTROLFILE TO TRACE;
    
       4. Edit the trace file as necessary. The relevant section of the trace file looks something like the following:
    
          # The following commands will create a new control file and use it
          # to open the database.
          # Data used by the recovery manager will be lost. Additional logs may
          # be required for media recovery of offline data files. Use this
          # only if the current version of all online logs are available.
          STARTUP NOMOUNT
          CREATE CONTROLFILE REUSE DATABASE "TRGT" NORESETLOGS  ARCHIVELOG
          --  STANDBY DATABASE CLUSTER CONSISTENT AND UNPROTECTED
              MAXLOGFILES 32
              MAXLOGMEMBERS 2
              MAXDATAFILES 32
              MAXINSTANCES 1
              MAXLOGHISTORY 226
          LOGFILE
            GROUP 1 '/oracle/oradata/trgt/redo01.log'  SIZE 25M,
            GROUP 2 '/oracle/oradata/trgt/redo02.log'  SIZE 25M,
            GROUP 3 '/oracle/oradata/trgt/redo03.log'  SIZE 500K
          -- STANDBY LOGFILE
          DATAFILE
            '/oracle/oradata/trgt/system01.dbf',
            '/oracle/oradata/trgt/undotbs01.dbf',
            '/oracle/oradata/trgt/cwmlite01.dbf',
            '/oracle/oradata/trgt/drsys01.dbf',
            '/oracle/oradata/trgt/example01.dbf',
            '/oracle/oradata/trgt/indx01.dbf',
            '/oracle/oradata/trgt/tools01.dbf',
            '/oracle/oradata/trgt/users01.dbf'
          CHARACTER SET WE8DEC
          ;
          # Take files offline to match current control file.
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/tools01.dbf' OFFLINE;
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/users01.dbf' OFFLINE;
          # Configure RMAN configuration record 1
          VARIABLE RECNO NUMBER;
          EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('CHANNEL','DEVICE TYPE DISK
          DEBUG 255');
          # Recovery is required if any of the datafiles are restored backups,
          # or if the last shutdown was not normal or immediate.
          RECOVER DATABASE
          # All logs need archiving and a log switch is needed.
          ALTER SYSTEM ARCHIVE LOG ALL;
          # Database can now be opened normally.
          ALTER DATABASE OPEN;
          # Commands to add tempfiles to temporary tablespaces.
          # Online tempfiles have complete space information.
          # Other tempfiles may require adjustment.
          ALTER TABLESPACE TEMP ADD TEMPFILE '/oracle/oradata/trgt/temp01.dbf' REUSE;
          # End of tempfile additions.
    
       5. Shut down the database:
    
          SHUTDOWN IMMEDIATE
    
       6. Execute the script to create the control file, recover (if necessary), archive the logs, and open the database:
    
          STARTUP NOMOUNT
          CREATE CONTROLFILE ...;
          EXECUTE ...;
          RECOVER DATABASE
          ALTER SYSTEM ARCHIVE LOG CURRENT;
          ALTER DATABASE OPEN ...;
    Caution:
          If you do not open with the RESETLOGS option,
     then two copies of an archived redo log for a given log sequence number may
     exist--even though these two copies have completely different contents.
     For example, one log may have been created on the original host and the other on the new host.
     If you accidentally confuse the logs during a media recovery,
     then the database will be corrupted but Oracle and RMAN cannot detect the problem.

    How to open the database without resetlogs?

    This will not help you. You must open the database in resetlogs mode in order to avoid such a scenario. You can open the database in mode restelogs by type
    SQL > alter database open restelogs;
    Instead, he will lose the present trancation in logs online.

    Rgds.

  • tape backup fail with RMAN-03002 RMAN-20201 and RMAN-06010

    Hello

    My level 0 backup failed over the weekend and I don't understand why. I know I have four data corruption with files, so I put the MAXCORRUPT to 5 for these specific files so the continuous backup to work. This script has completed successfully in the past, and the structure of the database has not changed since the last backup of level 0 has been taken using this script. Here's what I see in my log file that displays the RMAN script, I used to run the backup and the following error messages:

    Recovery Manager: Release 10.2.0.1.0 - Production on Sat Apr 18 00:05:24 2009

    RMAN > Connect target *.
    2 > run {}
    3 > allocate channel oem_sbt_backup1 type 'SBT_TAPE' format 'SDE_L0_ % %%U s_ t_ ";
    4 > allocate channel oem_sbt_backup2 type 'SBT_TAPE' format 'SDE_L0_ % %%U s_ t_ ";
    5 > the file VALUE of DATA MAXCORRUPT for 112,28,61,43 to 5;
    6 > database backup incremental level 0 filesperset 1;
    7 > archivelog backup all the format "%%U t_ SDE_ARCLOG_" remove entry;
    8 > delete noprompt obsolete recovery window 14 days device type 'SBT_TAPE ';
    9 > output channel oem_sbt_backup1;
    10 > output channel oem_sbt_backup2;
    11 > assign the channel oem_disk_backup1 type disc format ' / u01/app/oracle/controlfilebackups/cf_SDE_%t_%s_%U';
    12 > backup current controlfile;
    13 > output channel oem_disk_backup1;
    {14 >}
    15 >
    connected to target database: MYDATABASENAME (DBID = <>#)
    using the control file of the target instead of recovery catalog database

    allocated channel: oem_sbt_backup1
    channel oem_sbt_backup1: sid = 108 devtype = SBT_TAPE
    channel oem_sbt_backup1: NMO v5.0.0.0
    command sent on channel: oem_sbt_backup1

    allocated channel: oem_sbt_backup2
    channel oem_sbt_backup2: sid = 159 devtype = SBT_TAPE
    channel oem_sbt_backup2: NMO v5.0.0.0
    command sent on channel: oem_sbt_backup2

    executing command: SET MAX CORRUPT
    output channel: oem_sbt_backup1
    output channel: oem_sbt_backup2
    RMAN-00571: ======================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ======================================================
    RMAN-03002: failure of the command set to 18/04/2009 00:05:36
    RMAN-20201: datafile not found in the recovery catalog
    RMAN-06010: error while looking upward of datafile: 112

    DataFile 112 exist?

    See the notes 197932.1 on MOS.

  • Siri does not (problems with the connection)

    Hello

    I installed macOS Sierra yesterday. Everything seems to work fine, except Siri. With Siri I always get an error message "I am having some problems with the connection. Please try again in a moment. ». But this seems to appear every time. The network connection works fine, I can't access the Internet without problem.

    No idea how solve the problem?

    I use an iMac (27 inch, mid-2011). Internal microphone is connected, I also see the 'waves' change while I am speaking.

    Concerning

    Thomas

    Hey, thochstrasser. Thank you for using communities of Apple Support.

    It seems that Siri is reluctant to make his debut on your iMac after upgrade to Mac OS Sierra. I want to make sure that you get the benefit of this new feature on a Mac.

    1 try safe mode if your Mac does not start -even if your iMac to market, safe mode makes sure it starts successfully.

    2. How to test a question in an another user account on your Mac - since this is most likely a software problem, test to another user will indicate if it is right to your user account or throughout your system.

    3. use Time Machine to back up or restore your Mac - if it seems to be systemic, the next step should not cause problems. But it is always better "to have" a backup to the "need".

    4. on OS X Recovery - the issue as part of the operating system, reinstall should do.

    Have a great weekend!

  • Backup failed with error 18: the backup drive is not found

    Hello

    My guard time capsule saying "Backup failed" for a few days and I cannot access the old backup files either (when I enter my time machine it shows 'today', which is kind of scary, although I know that my old files is still there). I tried many ways to trouble shoot this problem, but none of this has worked. In my opinion, it's more a network problem and I made sure I connect Wi - Fi even my time capsule created.

    So far I have tried:

    -Delete the files from my internet (com.apple.airport.preferences.plist; preferences.plist and NetworkInterfaces.plist, etc.) and restart my mac

    -Remove TimeMachine.plist and restart my mac

    -Hard reset of my time capsule. Went through all configurations with success but then still backup missed (I hear the running time capsule when it is by train).

    I share this time capsule with my wife and she has no problem with that.

    I can only think of a possible alternation I did which could cause this problem.

    Because of unstable WiFi problem, I had deleted

    com Apple.Airport.Preferences.plist

    com.Apple.Network.identification.plist

    NetworkInterfaces.plist

    Preferences.plist

    or other files and reboot my mac * before * I had this problem with time capsule.

    However, this is not the first time I do it, and it wasn't a problem before...

    This could be the reason? If so, how to restore the network settings?

    Please help me with this problem. Really appreciate!

    Ted

    Here is a copy of the Console:

    24/02/16 2:44:19.308 AM com.apple.backupd [857]: from manual backup

    24/02/16 2:44:19.309 AM com.apple.backupd [857]: Destination Time machine could not be found (url: destinationID (null): AB78050D-4852-489D-9CBF-88727FBC8047)

    24/02/16 2:44:19.313 AM com.apple.backupd [857]: backup failed with error 18: the backup drive is not found.

    24/02/16 2:44:35.326 AM com.apple.backupd [857]: NAConnectToServerSync failed with the error: 64 (host is out of service) for url: afp://Ted%20Ling; AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. / data

    24/02/16 2:45:29.976 AM com.apple.backupd [857]: attempt to mount the destination network URL: afp://Ted%20Ling; AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. / data

    24/02/16 2:45:29.976 AM com.apple.backupd [857]: error - 35 during the resolution of the backup destination alias

    24/02/16 2:45:29.976 AM com.apple.backupd [857]: attempt to mount the destination network URL: afp://Ted%20Ling@TJ's%20AirPort%20Time%20Capsule._afpovertcp._tcp.local./Data

    24/02/16 2:45:30.668 AM com.apple.backupd [857]: destination network mounted at the mounting point: / Volumes/data using URL: afp://Ted%20Ling@TJ's%20AirPort%20Time%20Capsule._afpovertcp._tcp.local./Data

    24/02/16 2:45:50.428 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:45:50.428 AM com.apple.backupd [857]: wait 60 seconds and try again.

    24/02/16 2:45:59.981 AM com.apple.backupd [857]: NAConnectToServerSync failed with the error: 64 (host is out of service) for url: afp://Ted%20Ling; AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. / data

    24/02/16 2:46:42.807 AM com.apple.backupd [857]: Timed out while solving Hello destination: afp://Ted%20Ling; AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. / data

    24/02/16 2:46:42.812 AM com.apple.backupd [857]: from manual backup

    24/02/16 2:46:42.814 AM com.apple.backupd [857]: the airport of Destination Flymi Time Capsule could not be found (url: afp://Ted%20Ling;) AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. (/ data destinationID: B2187361-58BC-4D33-A7AC-1DDC429ABF3B)

    24/02/16 2:46:42.825 AM com.apple.backupd [857]: backup failed with error 18: the backup drive is not found.

    24/02/16 2:46:42.833 AM com.apple.backupd [857]: from manual backup

    24/02/16 2:46:50.544 AM com.apple.backupd [857]: network destination already mounted to: / Volumes/data

    24/02/16 2:46:50.604 AM com.apple.backupd [857]: network destination already mounted to: / Volumes/data

    24/02/16 2:47:16.683 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:47:16.683 AM com.apple.backupd [857]: wait 60 seconds and try again.

    24/02/16 2:48:20.566 AM com.apple.backupd [857]: network destination already mounted to: / Volumes/data

    24/02/16 2:48:44.360 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:48:44.360 AM com.apple.backupd [857]: wait 60 seconds and try again.

    24/02/16 2:49:48.014 AM com.apple.backupd [857]: network destination already mounted to: / Volumes/data

    24/02/16 2:50:11.885 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:50:11.885 AM com.apple.backupd [857]: give up after 3 attempts.

    24/02/16 2:50:11.903 AM com.apple.backupd [857]: backup failed with error 21:21

    24/02/16 2:50:27.245 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:50:27.250 AM com.apple.backupd [857]: from manual backup

    24/02/16 2:50:27.250 AM com.apple.backupd [857]: Destination Time machine could not be found (url: destinationID (null): AB78050D-4852-489D-9CBF-88727FBC8047)

    24/02/16 2:50:27.257 AM com.apple.backupd [857]: backup failed with error 18: the backup drive is not found.

    24/02/16 2:52:28.390 AM SystemUIServer [265]: try using XPC with a MachService which has the value HideUntilCheckIn. This will result in unpredictable behavior: com.apple.backupd.status.xpc

    24/02/16 2:52:28.390 AM com.apple.prefs.backup.remoteservice [866]: try using XPC with a MachService which has the value HideUntilCheckIn. This will result in unpredictable behavior: com.apple.backupd.status.xpc

    What model is the TC?

    Try to force the connection to 2.4 ghz using different names for the various bands... or even better to use ethernet.

    (You may need to buy love at first sight for adapter Ethernet... is an investment worth considering how unreliable wireless).

    Also give me some screenshots of the TC installing airport utility.

    Can you get it in the Finder?

  • The Web of LabVIEW user interface directly to the sensor with Ethernet connection

    Hello

    Is it possible to connect to the interface user Web of LabVIEW directly to a sensor with Ethernet connection?

    By directly, I mean without using any Web Service LabVIEW VI.

    Thank you

    Marcelo

    Hello

    The only communication with other devices using the Web user interface designer is through web services, either motorized or not LabVIEW. To connect with a sensor with the generator of the user Web interface without using LabVIEW, the sensing device must be accessible via HTTP and give you a way to read its data using XML web services based on.

  • Why I can boot into safe mode with internet connection, use the operating system, etc., but can not open a normal session without password administrator; who got the disabled.

    OEM Vista Home Premium. Normal startup does not recognize the password. When you click User icon it says: "your account has been disabled. Please, see your system administrator"I looked in the mirror, but it did not help. Booted, press F8, went in safe mode with network connection. Everything seemed to be there. Surf the internet and then started to ask me why I don't have a password here when I did normal start-up. What is the password? Check "Microsoft Answers", but what I came out which was, I need to reinstall the OS, which I can't do it without a drive anyway.  I thought that I've used it before, I knew the password. This computer has been recently "reinstalled" internal folder 'restore '. Something must happen. A unknown password can be removed from safe mode? Ultimately how reinstall you a clean Vista when all you have is the key to product and no local or OEM support? What would be the difference between a password reset disk and the OS disk.  The two would probably be stored side by side. Not to mention that most of us Dummies want to just surf to buy, and if we can not surf, we cannot buy. Dummies help us get back on the internet, Microsoft. At least take care of this shot.

    Hi PAM,.

    In Safe Mode, try to activate the high administrator account http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-windows-vista/.  Then log in using account and use it to solve problems with your normal administrator account login via control panel / user accounts / manage other accounts.  Find the one you want and make the appropriate changes to fix it.  If you can't, then you need to address as a corrupt account by using the following procedure:

    To fix this use http://windows.microsoft.com/en-AU/windows-vista/Fix-a-corrupted-user-profile.  If this is the only available administrator profile (you must be an administrator to solve this problem), activate the hidden administrator account (HAA) (i.e. what you did above, or you can do this by using these instructions instead: http://www.computerworld.com/s/article/9001970/How_to_access_the_true_Administrator_account_in_Windows_Vista?taxonomyId=17&pageNumber=1.)

    Once that is done, don't forget to disable the HAA to save it in case it is necessary once again and for safety reasons (since people often try to hack into systems using this account).  Do NOT use the HAA as your administrator account because if you lose the only administrator on the system account or it is damaged again, then you're watered.

    The fact that it says it is disabled gives me to think that you can use the guest or built-in Administrator account already (as normally, you cannot disable an account, but you can with these two which cannot be deleted and only disabled).

    The password reset disk is only good if created before that you need and only to restore a password, do not to activate a disabled account.  Another thing that goes beyond passwords here.

    A recovery disk allows you to do some advanced options of recovery by booting the disk, but it will help you restore the operating system (or help you with this problem either).

    An Installation of Vista genuinve disc (the operating system drive as you seem to be describing) is a disk that contains the operating system.  That, if it is the original disc supplied with the system and is exactly the same as the product OEM key that you must allow you to do a clean OS install (although I would be first backup you'll pretty much lost everything in the process).  The following should help: http://www.vistax64.com/tutorials/117366-clean-install-full-version-vista.html.

    If you have a factory Conditions or a recovery Partition restore disk, then these are alternatives to a clean install if you don't have this disc.  But the procedure varies according to the manufacturer, make and model of PC.  Most of the manufacturers will allow you to buy these records of restoration (for a fee) If you cannot do it with a recovery Partition cannot create diskettes from the recovery Partition or have no other option.  Visit the support site of the computer for information on this topic, available options, and related costs.

    If you cannot enable the built-in Administrator account and cannot access the system in normal mode with this or another administrator account, then I'm afraid a clean install or restore to factory conditions is your only option.

    I hope this helps.

    Good luck!

  • Backup fails with an error of device 0 x 807812.

    Original title: device error 0 x 807812

    Backup fails with an error of device 0 x 807812. I tried a disk of 1 TB of my book and a Seagate 1 TB Western Digital. Both failed with the same error. The system says that I have the most recent and correct drivers. My computer is Deel Latitude 17r.

    Hi James,

    Thanks for posting your question in the Microsoft Community.

    The error would have occurred if the services associated with Windows backup may have been disabled, you can try to restart the service, follow the steps below:

    1. click on start.

    2 type Services in the start search.

    3. in the search for Windows Services of shadow copy Volume in the list.

    4. right click on the Service.

    5. click on properties.

    6. Select the Startup Type to manual.

    7. click on OK.

    8. repeat the same for the service Windows backup.

    If the problem persists, then I suggest you run the chkdsk command, which fix chkdsk errors, follow these steps:

    i. Click Start.

    II. type cmd in the start search box.

    III. right-click on cmd.exe list programs and then select the run as Administrator option.

    IV. If you are prompted for an administrator password or for confirmation, type your password, or click on continue.

    v. in the command prompt window, type the following command and press enter Chkdsk /R

    VI. o press when you are prompted to check the drive the next time the system restarts.

    VII. close all applications and restart the computer.

    Important: Running chkdsk on the drive if bad sectors are found on the disk hard when chkdsk attempts to repair this area if all available on which data may be lost

    When you restart, Windows checks the drive for errors, and then Windows starts. Now run the disk check in command prompt, follow the steps below:

    Now, when you try to perform the backup, I recommend that you can try to disable the temporary security on the computer software and perform a backup, be sure to activate security in the computer software.

    Disable the antivirus software:
    http://Windows.Microsoft.com/en-us/Windows7/disable-antivirus-software

    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you need to disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network, while your antivirus software is disabled, your computer is vulnerable to attacks.

     

    If you need further assistance on this topic, let know us and we will be happy to help you.

  • Unable to connect target - vSphere replication Sites

    I hope someone here can help me understand a problem connecting between my two servers of VRM.

    Background:

    After passage of 6.0U2 5.5, I had problems with re-login Site Recovery Manager. Because SRM was not really in use yet (testing), I decided to redeploy fresh from the base, including replication of vSphere components.

    After removing all the rehearsals and not record old vSphere replication devices, I transferred the latest packages of EGGS to the VRM.  Everything was fine.  I have updated certificates for certificates customized our company certification and placed the root certificate in the file /opt/vmware/hms/security/hms-truststore.jks .  Then, I recorded each VRM with their respective vCenters and had no problems.

    1.png

    Both VRM active lounge and OK in vSphere replication of the Web Client:

    2.png

    When you attempt to connect to the target Site, the following error is received:

    3.png

    But then in the list of tasks, it ends with success and shows the connection, but with a connection problem error:

    4.png

    This is the architecture of our PSC and vCenters and each VRM.  All use of our certification of Enterprise SSL certificates:

    5.png

    There is no firewall between one of these servers.

    HMS logs are attached here as well.

    Any help would be appreciated.

    Thank you

    After that I originally posted this, a new version of vSphere replication was released.  After the upgrade to the latest version, my problem magically disappeared.

  • RMAN connect target ORA-01031

    Hi all

    I have a question about connect with database.

    [oracle@srv-deeps-01 ~]$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.3.0 Production on Fri Aug 23 09:11:26 2013
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> select * from v$pwfile_users;
    
    USERNAME                       SYSDB SYSOP SYSAS
    ------------------------------ ----- ----- -----
    SYS                            TRUE  TRUE  FALSE
    MON                            TRUE  FALSE FALSE
    
    [oracle@srv-deeps-01 ~]$sqlplus /nolog
    SQL*Plus: Release 11.2.0.3.0 Production on Fri Aug 23 09:00:35 2013
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    SQL> connect mon/mon@deeps as sysdba
    Connected.
    

    Also, I can connect to the database with rman

    [oracle@srv-deeps-01 ~]$ rman target /
    Recovery Manager: Release 11.2.0.3.0 - Production on Fri Aug 23 09:12:45 2013
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: deeps (DBID=3218868617)
    RMAN>
    
    [oracle@srv-deeps-01 ~]$ rman
    Recovery Manager: Release 11.2.0.3.0 - Production on Fri Aug 23 09:14:30 2013
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    RMAN> connect target mon/mon
    connected to target database: deeps (DBID=3218868617)
    RMAN>
    

    But when I try to connect to databases remotely I ORA-01031

    [oracle@srv-deeps-01 ~]$ rman
    Recovery Manager: Release 11.2.0.3.0 - Production on Fri Aug 23 09:16:20 2013
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    RMAN> connect target mon/MonDEEPDB2013@deepdb
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    ORA-01031: insufficient privileges
    RMAN>
    

    In what could be the problem?

    PS This is a RAC database

    What is the value for the parameter remote_login_passwordfile?

    Aman...

  • Open files are more associated with a connection

    Sorry if this has been posted before, but I couldn't find any mention of it.

    Steps to reproduce the problem:

    -Open SQLDev
    -Open a connection
    -Open a file (using the "Files" tab in the left pane)

    Result: the file is not associated with the connection open, and you will have to manually select from the dropdown at the top right.

    Previous versions didn't work as expected and current behavior is extremely boring.

    Hope you'll fix it as soon as POSSIBLE.

    Kind regards.

    Alessandro

    To summarize what we have:

    1. before 3.2 newly opened file based PL/SQL Editor have been associated with the connection 'default', and as xxsawer pointed out, it was a bug.

    2. once 3.2 newly opened editor is not associated with any connection and requires the user to choose one explicitly.

    After a little reflection, it seems that fix correct is for an editor newly open to study the project.qbql mapping and if there is an entry, then choose this connection (which, of course, can be changed if the user wants so).  Am I missing any other usage scenario?

    Edit: implemented for ai2.

  • ORA-00245: backup of control file failed; target is likely on a local file sys

    Hello

    our CARS (Linux 11.2.0.3.0) is relatively new and we are still on the acquisition of experiences with this system...

    At the start of the backup with RMAN, we get the following error:

    From control file and SPFILE Autobackup 4 July 12
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03009: failure of command of file control and SPFILE Autobackup on channel ORA_DISK_1 at 04/07/2012 16:41:48
    ORA-00245: backup of control file failed; target is likely on a local file system

    The reason for the error is clear ORA-00245 - in a CCR environment, the snapshot Controlfile location must be on a shared location.

    When running the RMAN command "show all" on each node, we get
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO ' / u01/app/oracle/product/11.2.0.3/db/dbs/snapcf_PROD021.f'; # by default
    for the #1 node
    and
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO ' / u01/app/oracle/product/11.2.0.3/db/dbs/snapcf_PROD022.f'; # by default
    for the #2 node

    When using a shared location for the snapshot Controlfile make us still need 2 different names for this configuration file?

    CONFIGURE SNAPSHOT CONTROLFILE NAME to ' / < shared location > / snapcf_PROD021.f'; # by default
    for the #1 node and
    CONFIGURE SNAPSHOT CONTROLFILE NAME to ' / < shared location > / snapcf_PROD022.f'; # by default
    for the #2 node

    Or should set us up as a single snapshot Controlfile?

    RMAN installation for "CONFIGURE SNAPSHOT CONTROLFILE NAME TO... "must be changed on both nodes - correct?

    I hope my question is clear enough--any help will be appreciated.

    Rgds
    JH

    Published by: VivaLaVida on 05.07.2012 11:41

    The controlfile is shared on the RAC database and having the backup of any node to shared mount point would meet the requirement.

    Configure snapshot controlfile name to ' /snapcf_PROD0.f';

    Anand

  • RMAN cannot connect targets

    RMAN > Connect target

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    ORA-04063: package body 'SPS. DBMS_BACKUP_RESTORE"contains errors
    ORA-06508: PL/SQL: called program unit is not found: 'SPS. DBMS_BACKUP_RESTORE ".
    RMAN-04015: error in establishing the nature of database target the WE8MSWIN1252 value

    905377 wrote:
    RMAN > Connect target

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    ORA-04063: package body 'SPS. DBMS_BACKUP_RESTORE"contains errors
    ORA-06508: PL/SQL: called program unit is not found: 'SPS. DBMS_BACKUP_RESTORE ".
    RMAN-04015: error in establishing the nature of database target the WE8MSWIN1252 value

    Hello

    Same mistake once again,

    >
    C:\Documents and Settings\Administrateur > rman

    Recovery Manager: release 11.1.0.6.0 - Production on Tue Jan 3 15:57:53 2012

    Copyright (c) 1982, 2007, Oracle. All rights reserved.

    RMAN > Connect target system/spsadmin@SPS

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    ORA-04063: package body 'SPS. DBMS_BACKUP_RESTORE"contains errors
    ORA-06508: PL/SQL: called program unit is not found: 'SPS. DBMS_BACKUP_RESTORE ".
    RMAN-04015: error in establishing the nature of database target the WE8MSWIN1252 value

    RMAN > exit
    >

    Some how I have in my notebook, how have solved the last time. Check below work around

    SQL> Select owner,trigger_name,triggering_event,status from dba_triggers where triggering_event like '%LOGON%' ;
    
    OWNER                          TRIGGER_NAME
    ------------------------------ ------------------------------
    TRIGGERING_EVENT
    --------------------------------------------------------------------------------
    STATUS
    --------
    SYS                            DB_LOGON
    LOGON
    ENABLED
    
    SQL> alter trigger sys.db_logon disable;
    Trigger altered.
    
    Then check for invalid objects, and recompile them @?/rdbms/admin/utlrp.sql
    
    next
    
    C:\Documents and Settings\Administrator>rman target /
    
    Recovery Manager: Release 11.1.0.6.0 - Production on Tue Jan 3 16:18:40 2012
    
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    
    connected to target database: SPS (DBID=1754608551)
    
    RMAN> list backup of database;
    
    using target database control file instead of recovery catalog
    
    List of Backup Sets
    ===================
    
    C:\Documents and Settings\Administrator>
    

    Re: why a loop the chain of synonyms occur

    Published by: CKPT on April 16, 2012 11:27

Maybe you are looking for

  • addons do not sync

    I waited patiently for v11 for Firefox Sync include modules. Now that it's here, I improved my work and home computers laptop to include modules in sync. As I use Xmarks to synchronize bookmarks and history, I just need firefox sync Add-ons, preferen

  • Call button does not

    OK so basically that my call button does not work. My command /golive work which is really strange. This started yesterday (8-31) and is still a persistent problem even after I upgraded the latest version of Skype. I checked the forum and have not fo

  • Re: Driver download problems

    Hello I always have problems to download the drivers of toshiba (all drivers XP and Vista). Can someone tell me how to contact toshiba that I've had enough. I still download them now and get so far and stops ande that past constantly and it uses all

  • An empty array to a worksheet string, delimiter

    The string table worksheet function does not accept an empty delimiter, it uses the tab character in such a case. The same is true for string array spreadsheet function (but of course this function can not work without a delimiter). I would appreciat

  • events reminder and user

    Hello I'm developing a user interface, and in my case, I'll have a lot of controls that meet the same events. One approach is to make the array of refs and use events to manage all of them. My other idea was to use callbacks instead of user events. B