Duplicate database RMAN 11 GR 2 ORA-17627 ORA-01017 RMAN-03009 ORA-17628

Hello

I'm getting ORA-17627: ORA-01017: name of user and password invalid. connection refused when using the RMAN duplicate on the same host using the account Oracle DBA. The system is Linux Oracle and Oracle 11.2.0.1 5.5

I tested the connectivity and passwords and everything works fine. What could be the reason of this problem please?

Details below:

Thank you.


H3. Summary of the solution:

A big thank you to all who responded! The problem is solved finally :-)

The ORA-17627: ORA-01017 has been corrected using the connection string to connect to the target database, instead of target rman / in the command prompt
$ rman
RMAN> connect target sys/password@orcl
RMAN> connect auxiliary sys/password@clonedb
RMAN> duplicate target database to clonedb from active database;
However, there was still another question:
channel ORA_DISK_1: starting datafile copy
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.737564331
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 12/29/2010 14:40:21
ORA-17628: Oracle error 19505 returned by remote Oracle server
continuing other job steps, job failed will not be re-run
The alert.log to the auxiliary database (clonedb) shows:

Errors in the /u01/app/oracle/diag/rdbms/clonedb/clonedb/trace/clonedb_ora_6129.trc file:
ORA-19505: impossible to identify the file ' / scratch/oradata/clonedb/datafile/orcl/datafile/system.256.737564331 '.
ORA-27040: create file error, cannot create the file
Linux-x86_64 error: 2: no such file or directory

I fixed the problem by changing the following text in the settings of the clonedb instance file:

* .db_file_name_convert =('+Data/ORCL/','/Scratch/oradata/clonedb/')
* .log_file_name_convert =('+Data/ORCL/onlinelog/','/Scratch/oradata/clonedb/logfile/')

Thank you!





H3. Problem:
[orcl@ol55]$ rman target /

Recovery Manager: Release 11.2.0.1.0 - Production on Tue Dec 28 21:40:25 2010

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

connected to target database: ORCL (DBID=1265345286)

RMAN> connect auxiliary sys/test@clonedb

connected to auxiliary database: CLONEDB (not mounted)

RMAN> duplicate target database to clonedb from active database;

Starting Duplicate Db at 28-DEC-10
using target database control file instead of recovery catalog
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=19 device type=DISK

contents of Memory Script:
{
   sql clone "create spfile from memory";
}
executing Memory Script

sql statement: create spfile from memory

contents of Memory Script:
{
   shutdown clone immediate;
   startup clone nomount;
}
executing Memory Script

Oracle instance shut down

connected to auxiliary database (not started)
Oracle instance started

Total System Global Area     839282688 bytes

Fixed Size                     2217992 bytes
Variable Size                645924856 bytes
Database Buffers             188743680 bytes
Redo Buffers                   2396160 bytes

contents of Memory Script:
{
   sql clone "alter system set  db_name = 
 ''ORCL'' comment=
 ''Modified by RMAN duplicate'' scope=spfile";
   sql clone "alter system set  db_unique_name = 
 ''CLONEDB'' comment=
 ''Modified by RMAN duplicate'' scope=spfile";
   shutdown clone immediate;
   startup clone force nomount
   backup as copy current controlfile auxiliary format  '/scratch/oradata/clonedb/controlfile/control01.ctl';
   restore clone controlfile to  '/scratch/oradata/clonedb/controlfile/control02.ctl' from 
 '/scratch/oradata/clonedb/controlfile/control01.ctl';
   alter clone database mount;
}
executing Memory Script

sql statement: alter system set  db_name =  ''ORCL'' comment= ''Modified by RMAN duplicate'' scope=spfile

sql statement: alter system set  db_unique_name =  ''CLONEDB'' comment= ''Modified by RMAN duplicate'' scope=spfile

Oracle instance shut down

Oracle instance started

Total System Global Area     839282688 bytes

Fixed Size                     2217992 bytes
Variable Size                645924856 bytes
Database Buffers             188743680 bytes
Redo Buffers                   2396160 bytes

Starting backup at 28-DEC-10
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=35 device type=DISK
channel ORA_DISK_1: starting datafile copy
copying current control file
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 12/28/2010 21:42:08
RMAN-03015: error occurred in stored script Memory Script
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 12/28/2010 21:42:08
ORA-17629: Cannot connect to the remote database server
ORA-17627: ORA-01017: invalid username/password; logon denied
ORA-17629: Cannot connect to the remote database server
H3. Configuration

H4. Listener and Tnsnames

H3. Note: (UR = A) clause in tnsnames.ora is intended to operate with a dynamically
Manager recorded for the SERVICE_NAME against SID is preferable. (ID 362656.1)

$ cat /u01/app/oracle/product/11.2.0/grid/network/admin/listener.ora

LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = ol55.example.com)(PORT = 1521))
    )
  )

SID_LIST_LISTENER =
   (SID_LIST =
       (SID_DESC =
          (ORACLE_HOME= /u01/app/oracle/product/11.2.0/db)
          (SID_NAME = clonedb)
          (GLOBAL_DBNAME= clonedb.example.com)
       )
    )




ADR_BASE_LISTENER = /u01/app/oracle

ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER = ON


$ cat tnsnames.ora
# tnsnames.ora Network Configuration File: /u01/app/oracle/product/11.2.0/db/network/admin/tnsnames.ora
# Generated by Oracle configuration tools.

CLONEDB =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ol55.example.com)(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = clonedb.example.com)
      (UR = A)
    )
  )


$ lsnrctl status

LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 28-DEC-2010 21:35:54

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

Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start Date                26-DEC-2010 02:59:35
Uptime                    2 days 18 hr. 36 min. 18 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /u01/app/oracle/product/11.2.0/grid/network/admin/listener.ora
Listener Log File         /u01/app/oracle/diag/tnslsnr/ol55/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ol55.example.com)(PORT=1521)))
Services Summary...
Service "+ASM" has 1 instance(s).
  Instance "+ASM", status READY, has 1 handler(s) for this service...
Service "clonedb.example.com" has 2 instance(s).
  Instance "clonedb", status UNKNOWN, has 1 handler(s) for this service...
  Instance "clonedb", status BLOCKED, has 1 handler(s) for this service...
Service "orcl.example.com" has 1 instance(s).
  Instance "orcl", status READY, has 1 handler(s) for this service...
Service "orclXDB.example.com" has 1 instance(s).
  Instance "orcl", status READY, has 1 handler(s) for this service...
Service "test.example.com" has 1 instance(s).
  Instance "test", status READY, has 1 handler(s) for this service...
Service "testXDB.example.com" has 1 instance(s).
  Instance "test", status READY, has 1 handler(s) for this service...
The command completed successfully
H4. pFile and spfile
$ cat initclonedb.ora
clonedb.__db_cache_size=192937984
clonedb.__java_pool_size=4194304
clonedb.__large_pool_size=4194304
clonedb.__oracle_base='/u01/app/oracle'
clonedb.__pga_aggregate_target=339738624
clonedb.__sga_target=503316480
clonedb.__shared_io_pool_size=0
clonedb.__shared_pool_size=293601280
clonedb.__streams_pool_size=0
*.audit_file_dest='/u01/app/oracle/admin/clonedb/adump'
*.audit_trail='db'
*.backup_tape_io_slaves=TRUE
*.compatible='11.2.0.0.0'
*.control_files='/scratch/oradata/clonedb/controlfile/control01.ctl','/scratch/oradata/clonedb/controlfile/control02.ctl'
*.db_block_checking='full'
*.db_block_checksum='full'
*.db_block_size=8192
*.db_create_file_dest='/scratch/oradata/clonedb'
*.db_domain='example.com'
*.db_name='clonedb'
*.db_recovery_file_dest='+FRA'
*.db_recovery_file_dest_size=12884901888
*.log_archive_dest='/scratch/oradata/clonedb/archivelog'
*.diagnostic_dest='/u01/app/oracle'
*.dispatchers='(PROTOCOL=TCP) (SERVICE=clonedbXDB)'
*.memory_target=843055104
*.open_cursors=300
*.processes=150
*.remote_login_passwordfile='EXCLUSIVE'
*.undo_tablespace='UNDOTBS1'
*.db_file_name_convert=('+DATA','/scratch/oradata/clonedb/datafile')
*.log_file_name_convert=('+DATA','/scratch/oradata/clonedb/logifle')

$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Tue Dec 28 21:26:41 2010

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

Connected to an idle instance.

SQL> startup nomount pfile='$ORACLE_HOME/dbs/initclonedb.ora'
ORACLE instance started.

Total System Global Area  839282688 bytes
Fixed Size              2217992 bytes
Variable Size            641730552 bytes
Database Buffers       192937984 bytes
Redo Buffers              2396160 bytes
SQL> 
H4. Password file and the connection test
$ orapwd file=$ORACLE_HOME/dbs/orapwclonedb password='test'

$ sqlplus 'sys/test@clonedb as sysdba'

SQL*Plus: Release 11.2.0.1.0 Production on Tue Dec 28 19:58:14 2010

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

Connected to an idle instance.
Published by: Dude on December 29, 2010 06:37

Hi guy,
Please configure the tnsnames and auditor of the target and auxiliary.
That set the script to use OIC to connect in both instances like this:

connect target sys/test@orcl
connect auxiliary sys/test@clonedb

Please after the release.
Kind regards
Tycho

Tags: Database

Similar Questions

  • RMAN DUPLICATE DATABASE RESULT IN A RE - ORG

    Database Version 10.2.0.4

    When I perform a duplicate database RMAN is the new database completely reorganized? The new database can be any fragmentation or water marks high if the source database has done?

    Thank you

    The answer to your question is no duplicate RMAN does not cause a re - org, RMAN is a block of files of database level backup, RMAN duplicate is a double level of a data block. Therefore, duplicate RMAN is fundamentally a restoration of the source database, because it is in another location and an instance of the database and the database name change.

  • RMAN-04014: failed to start: ORA-00600 during the duplicate database

    Hello

    Oracle version: 11.2.0.2

    OS: linux rhel 5

    I do duplicate database of active database
    rman target sys/*******@pindb AUXILIARY sys/*****@test
    
    Recovery Manager: Release 11.2.0.2.0 - Production on Mon Nov 26 19:56:41 2012
    
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: pindb (DBID=4116200880)
    connected to auxiliary database: TEST (not mounted)
    
    RMAN> run {
    allocate channel C1 type disk;
    allocate auxiliary channel DUP type disk;
    DUPLICATE TARGET DATABASE  TO 'TEST' FROM ACTIVE DATABASE  DB_FILE_NAME_CONVERT '/oradata/pindb','/oradata/test';
    }2> 3> 4> 5>
    
    using target database control file instead of recovery catalog
    allocated channel: C1
    channel C1: SID=699 device type=DISK
    
    allocated channel: DUP
    channel DUP: SID=5 device type=DISK
    
    Starting Duplicate Db at 26-NOV-12
    
    contents of Memory Script:
    {
       sql clone "create spfile from memory";
    }
    executing Memory Script
    
    sql statement: create spfile from memory
    
    contents of Memory Script:
    {
       shutdown clone immediate;
       startup clone nomount;
    }
    executing Memory Script
    
    Oracle instance shut down
    
    connected to auxiliary database (not started)
    released channel: C1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 11/26/2012 19:57:07
    RMAN-06403: could not obtain a fully authorized session
    RMAN-04006: error from auxiliary database: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-04014: startup failed: ORA-00600: internal error code, arguments: [kck_rls_check must use (11,0,0,0,0) or lower], [kdt.c], [9576], [11.2.0.2.0], [], [], [], [], [], [], [], []
    RMAN-04017: startup error description: ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    Please can someone offer

    Thank you

    Hello;

    In my view, that it is a bug that has to do with the compatibility of the compression.

    I think that work around is:

    alter system  set "_compression_compatibility"="11.2.0";
    

    Let me confirm with a document number of MOS

    Subsequently Cannot find the doc of MOS - this has some details:

    http://www.acehints.com/2011/11/fix-RMAN-duplicate-database-failed-ora.html

    http://bryangrenn.blogspot.com/2011/12/ora-600-kckrlscheck-must-use-110000-or.html

    Best regards

    mseberg

    Published by: mseberg on November 26, 2012 16:07

  • RMAN duplicate database RAC w/ASM to stand alone without ASM fails

    Trying to duplicate database in order to upgrade to 11.2 and migrate from Windows to Solaris with minimal downtime, using GoldenGate. The source database is 11.1.0.7 on Windows 2003 x 64 a 2 RAC node. The auxiliary database is 11.1.0.7 on a single Windows 2003 x 64 server. The steps to reach where the error has occurred are:

    1 created auxiliary instance on remote node. creating oradim and the listener.

    2 copied password for the remote node target file and put it in the directory %ORACLE_HOME%\database and % ORACLE_HOME%\dbs.

    3 created PFILE in %ORACLE_HOME%\database and copied to %ORACLE_HOME%\dbs just in case.

    db_name = "UTILAX".
    instance_name = UTILAX
    diagnostic_dest = a: \oracle\admin\utilax'
    db_file_name_convert =('+Data/util','D:\oracle\oradata\utilax')
    log_file_name_convert =('+Data/util','D:\oracle\log\utilax')
    SGA_TARGET = 5g
    control_files=D:\oracle\oradata\utilax\control01.dbf
    compatible = '11.1.0'

    4 Startup nomount performed.

    5. backup Ran full on the head node to the D drive and outside the DSO.

    rman target % = / catalog=rman/password@RMAN

    RMAN > run {}
    allocate channel d1 type disk;
    database backup in format "D:\backups\df_t%t_s%s_p%p".
    SQL 'alter system archive log current';
    backup format 'D:\backups\al_t%t_s%s_p%p' archivelog all;
    output channel d1;
    }

    6 copied only the manual backup (22 GB) to the remote host files in the same directory on the D drive. D:\backups same folder on both servers.

    7. connected with rman, target, catalog and auxiliary databases. A run the rman command to duplicate the database on the target instance.

    DUPLICATE THE TARGET DATABASE TO 'UTILAX' IN THE CURRENT DATABASE.

    Errors received
    RMAN-03009: failure of the backup on the channel ORA_DISK_1 command
    ORA-17628: error Oracle 19505 returned by remote Oracle Server

    8. looked in the auxiliary database alerts log. Errors found:
    ORA-19505: impossible to identify the file 'D:\ORACLE\ORADATA\UTILAX\DATAFILE\SYSTEM.327.716381457 '.
    ORA-27040: create file error, cannot create the file
    04002 - OSD: could not open the file
    S/O-error: (OS 3) the system cannot find the path specified

    9 creates all directories to the path and try again. Same mistakes.


    Must miss one or two steps but document metalink 382269.1 followed as closely as possible. Sorry for the lack of screenshots but databases are private networks. Someone who did that regularly offer any help?

    Thank you

    Since you have already made the backup and copied to the auxiliary server, why use again 'data base active'

    DUPLICATE THE TARGET DATABASE TO 'UTILAX' IN THE CURRENT DATABASE.

    Just try to DUPLICATE the DATABASE to 'UTILAX' TARGET nofilenamecheck;

    This would work out.

    or if you want to continue to make use of the active database functionality, then

    DUPLICATE TARGETS DATABASE to the 'UTILAX' of the active database nofilenamecheck.

    Published by: srp on December 28, 2011 12:24 AM

  • RMAN-03009: ORA-17628: all duplicate Active

    OS - Linux 64
    Oracle 11.2.0.2.0

    Database duplication "ssdev' to 'dupli' on the same server...

    connected to target database: SSDEV (DBID = 2209227163)
    connected to the auxiliary database: DUPLI (unassembled)

    RMAN > database duplicated dupli nofilenamecheck of the active database.

    From 1st March 11 Db double
    using the control file of the target instead of recovery catalog database
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: SID = 134 type device = DISK

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

    then I get these...

    From 1st March 11 backup
    using channel ORA_DISK_1
    channel ORA_DISK_1: from data file copy
    Enter a number of file datafile = 00005 name=/u01/app/oracle/oradata/ssdev/apex01.dbf
    RMAN-03009: failure of the backup command on the channel ORA_DISK_1 at 01/03/2011 15:58:47
    ORA-17628: error Oracle 19505 returned by remote Oracle Server
    continue other job steps, not a not working will not re-run
    channel ORA_DISK_1: from data file copy
    Enter a number of file datafile = name=/u01/app/oracle/oradata/ssdev/users01.dbf 00004


    Ssdev trace file

    ------

    minact-SNA-status of master: Greek-gmin scn:0 x 0000.00000000 - scn:0 x 0000.00000000 gcalc - scn:0 x 0000.00000000

    2011-03-01 15:01:46.068
    minact-SNA-status of master: Greek-gmin scn:0 x 0003 .83c1a2c2 - 0003 .83c1a2c2 gcalc - 0003 .83c1a2c2 x scn:0 x scn:0

    2011-03-01 15:06:47.200
    minact-SNA-status of master: Greek-gmin scn:0 x 0003 .83c1a3e3 - 0003 .83c1a3e3 gcalc - 0003 .83c1a3e3 x scn:0 x scn:0
    minact-SNA-status of master: Greek-gmin scn:0 x 0003 .83c1a4e7 - 0003 .83c1a4e7 gcalc - 0003 .83c1a4e7 x scn:0 x scn:0

    -------

    Nothing in the alert log...

    db_file_name_convert = (' / u01/app/oracle/oradata/ssdev '.' / u01/app/oracle/oradata/dupli ')

    Is it a '. '. (DOT) or a ',' (COMMA) between the two railways?

    Hemant K Collette

  • Database of duplicate and RMAN-20208

    I'm trying to duplicate an old backup in an auxiliary database. The backup and the auxiliary are 10g. When I run the following RMAN:
    Run {}
    until the SNA 41429334.
    target database duplicate in auxiliaries;
    }
    I get this error:
    executing command: SET until clause
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of the command set at 2010-05-17 08:54:26
    RMAN-06004: error ORACLE recovery catalog database: RMAN-20208: UNTIL CHANGE is before the RESETLOGS change
    I try to reproduce from a consistent backup of RMAN (cold) and there was a few OPEN RESETLOGS command applied to the database, as it is a development environment. Is there a way I can work around this problem in the order duplicate. I really want to avoid copying on the existing environment, as is currently under intensive use. Any suggestions, links, answers would be appreciated.

    Thank you

    John

    If you just want to restore the old cold backup, why not just copy the backup of the auxiliary database and restore it without using a DUPLICATE?

  • Duplicate database failed

    I'm on 11.2.0.2 dataguard configuration. Prepared the backup of database init.ora file. Configure the network. I am trying to use Rman to connect to the primary to the standby server, and then run the command duplicate.



    [oracle@stby]$ rman target sys/oracle@test1 auxiliary sys/oracle@test2]
    Recovery Manager: release 11.2.0.2.0 - Production on Fri 3 Feb 15:38:56 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    connected to target database: test1 (DBID = 1784854517)
    connected to the auxiliary database: test1 (unassembled)
    RMAN > run {}
    2 > allocate channel test11 type disk;
    3 > allocate auxiliary channel test2 type disk;
    4 > duplicate target database for the eve of the active database
    5 >;
    {6 >}
    using the control file of the target instead of recovery catalog database
    allocated channel: test1
    channel test1: SID = 37 type device = DISK

    allocated channel: test2
    test2 channel: SID = 391 type device = DISK

    From Db double 4 February 12
    content of Script memory:
    {
    backup that copy reuse
    TargetFile "/ oracle/11 GR 2/dbs/orapwtest1" auxiliary format
    ' / oracle/11 GR 2/dbs/orapwtest2 ";
    }
    execution of Script memory
    From backup 4 February 12
    output channel: test1
    output channel: test2
    RMAN-00571: =.
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: =.
    RMAN-03002: failure of Db in dual at 04/02/2012 00:00:00
    RMAN-05501: abandonment of duplicate target database
    RMAN-03015: an error has occurred in the script stored memory Script
    RMAN-03009: failure of the backup command on channel test1 to the 04/02/2012 00:00:00
    ORA-17629: unable to connect to the remote database server
    ORA-17627: ORA-12528: TNS: listener: all appropriate instances are blocking new connections
    ORA-17629: unable to connect to the remote database server


    Because my expectation is in nomount mode, the status of the listener is blocked. Therefore, it is impossible to connect to standby mode. The server of remote database in the error message refers to the waiting?

    I guess the answer was useful ;)

  • Question about the duplicate database active on 11 GR 1 matter?

    Hello

    I'm getting following error active creating duplicate data.


    From backup 17 April 11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID = 129 type device = DISK
    channel ORA_DISK_1: from data file copy
    Enter a number of file datafile = 00001 name=+DATA/testdb/system.dbf
    RMAN-03009: failure of the backup command on the channel ORA_DISK_1 at 17/04/2011 17:55:09
    ORA-17629: unable to connect to the remote database server
    ORA-17627: ORA-12154: TNS: could not resolve the connect identifier specified
    ORA-17629: unable to connect to the remote database server
    continue other job steps, not a not working will not re-run
    channel ORA_DISK_1: from data file copy
    Enter a number of file datafile = name=+DATA/testdb/sysaux01.dbf 00003
    RMAN-03009: failure of the backup command on the channel ORA_DISK_1 at 17/04/2011 17:57:22
    ORA-17629: unable to connect to the remote database server
    ORA-17627: ORA-12154: TNS: could not resolve the connect identifier specified
    ORA-17629: unable to connect to the remote database server
    continue other job steps, not a not working will not re-run
    channel ORA_DISK_1: from data file copy
    Enter a number of file datafile = name=+DATA/testdb/undodbs1.dbf 00002
    RMAN-03009: failure of the backup command on the channel ORA_DISK_1 at 17/04/2011 17:59:26
    ORA-17629: unable to connect to the remote database server
    ORA-17627: ORA-12154: TNS: could not resolve the connect identifier specified
    ORA-17629: unable to connect to the remote database server
    continue other job steps, not a not working will not re-run
    channel ORA_DISK_1: from data file copy
    Enter a number of file datafile = name=+DATA/testdb/rman01.dbf 00004
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Db in dual at 17/04/2011 18:01:30
    RMAN-03015: an error has occurred in the script stored memory Script
    RMAN-03009: failure of the backup command on the channel ORA_DISK_1 to 17/04/2011 18:01:30
    ORA-17629: unable to connect to the remote database server
    ORA-17627: ORA-12154: TNS: could not resolve the connect identifier specified
    ORA-17629: unable to connect to the remote database server

    Thank you

    Check on MOS:

    Duplicate of Active database error: Ora-17627: Ora-12154: Tns: could not resolve the C [1144273.1 ID]

  • RMAN-03009: failure of the delete command on... ORA-19606: can not copy or rest

    a server using 11.2.0.1.0 Suse Linux
    set up the catalog db, db main & job... almost anything with the company Manager
    keep backups 14 days

    To make 14 landfills full online, I had to archive active mode and try to get rid of these unwanted extra files.
    Additional I do every night (less til no db activity) a dump and I compress it.

    After a few days the backupjob complain that it cannot delete the old files.

    EM / manage all backups / cuts across all the)
    OVERLAP BACKUPSET;
    DUPLICATION OF COPY;
    )
    sucessful

    EM / manage all backup / delete older backups
    DELETE NOPROMPT OBSOLETE;
    )
    has failed.
    result of the script
    (
    Recovery Manager: release 11.2.0.1.0 - Production on kill 7 Sep 17:20:55 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    RMAN >
    connected to target database: < SID > (DBID = 773091283)
    RMAN >
    connected to the recovery catalog database
    RMAN >
    echo on
    RMAN > DELETE NOPROMPT OBSOLETE;
    RMAN retention policy apply to the order
    RMAN retention policy is set to 14 days recovery window
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID = 196 type device = DISK
    Remove the following obsolete backups and copies:
    Making key time filename/handle type
    Control 3831 August 3, file copy 10/opt/oracle/base/product / 11 gR 1/db/dbs/snapcf_ < SID > .f
    18750 23 August 10 backup set
    Save the song 18754 23 August 10/srv/ora/data/flash_recovery_area / < SID > / o1_mf_nnndf_BACKUP_/2010_08_23/backupset < SID >CH0_673c0hbp_.bkp
    18751 23 August 10 backup set
    Save the song 18755 23 August 10/srv/ora/data/flash_recovery_area / < SID > / o1_mf_nnndf_BACKUP_/2010_08_23/backupset < SID >CH0_673c0hbo_.bkp
    19479 24 August 10 backup set
    ...
    Save the 19482 24 August 10/tmp/o0lm3qh9_1_1 song
    19490 24 August 10 backup set
    ...
    Game backup 20087 Aug 24, 10
    Save the song 20089-24 August 10/srv/ora/data/flash_recovery_area / < SID > /autobackup/2010_08_24/o1_mf_s_727891232_677n40r3_.bkp
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03009: failure to delete the order on ORA_DISK_1 channel at 2010-09-07 17:20:57
    ORA-19606: can not copy or restore snapshot control file
    "exit";
    Complete recovery manager.
    )

    Google found some questions, but not editing responses.

    So far:
    -J' checked folder & users rights.
    -J' found some files in /tmp/ - yes I have "backup" the archivelogs saved to-delete files in / tmp - I only active archivelogmode so that I can onlinebackup
    -J' managed to connect via rman and run REMOVE OBSOLETE manual - result above.
    -Real I delete the game one by one to find the set of problems. (delete backupset 12345) in the list manually.


    Some a good idea of what went wrong?

    additional: is there a way to let the oracle to remove the archvielog directory-empy after you remove newspapers to breast?

    18:00 - the order "> of RMAN BACKUP CURRENT CONTROLFILE ' also fails.

    Edited by: 793286 the 07.09.2010 09:00

    You must have connected an SR with Oracle's Support.

    Hemant K Collette

  • RMAN-03009 and ORA-01858 everything by backing up archiving logs

    Hello!

    Since today, I get the above errors to backup the fra tape archiving logs. I tried the following: error ORA-01858 in RMAN during backup backupset format ' / test/rman/%U'
    If I manually do the backup for a client, it works!

    environment:
    Server: windows 2008 standard server
    Oracle: 10.2.0.4.0

    configuration of RMAN:
    CONFIGURE RETENTION POLICY TO THE 5 DAY RECOVERY WINDOW;
    CONFIGURE BACKUP OPTIMIZATION
    SET UP DEFAULT DISK DEVICE TYPE; # by default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO "%F" # by default
    SET UP THE DEVICE TYPE DISK PARALLELISM 1 BACKUP BACKUPSET TYPE; # by default
    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 MAXSETSIZE TO UNLIMITED; # by default
    CONFIGURE ENCRYPTION OF DATABASE # by default
    CONFIGURE THE ENCRYPTION ALGORITHM "AES128"; # by default
    CONFIGURE THE NONE ARCHIVELOG DELETION POLICY; # by default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO ' D:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\SNCFAPEX. ORA'; # by default

    Error log:
    Recovery Manager: Release 10.2.0.4.0 - Production on Thu Oct 1 04:30 2009

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

    connected to target database: APEX (DBID = 1331326226)
    connected to the recovery catalog database

    RMAN > sql 'alter system archive log current;
    2 > run {}
    3 > #-> drive backup
    4 > backup archivelog all;
    5 > # FRA-> band
    6 > allocate channel ch1 type 'sbt_tape '.
    7 > PARMS = "BLKSIZE = 262144, ENV = (CvClientName = ora5neu, CvInstanceName = Instance001)"; "
    8 > save the recovery area.
    {9 >}
    10 >
    SQL statement: alter system archive log current

    From backup 1st October 09
    Current archived log
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid = devtype 81 = DISK
    skip the log file archive D:\FRA\APEX\ARCHIVELOG\2009_09_10\O1_MF_1_2720_5BKO9BOL_. ARC; already saved 1 time
    ...
    skip the log file archive D:\FRA\APEX\ARCHIVELOG\2009_10_01\O1_MF_1_2981_5D7PZDXX_. ARC; already saved 1 time
    channel ORA_DISK_1: from archive newspaper backupset
    channel ORA_DISK_1: specification of archive log backup set
    archive log entry thread = 1 sequence = 2733 recid = 2733 stamp = 697286083
    archive log entry thread = 1 sequence = 2734 recid = 2734 stamp = 697293002
    archive log entry thread = 1 sequence = 2735 recid = 2735 stamp = 697293004
    archive log entry thread = 1 sequence = 2856 recid = 2856 stamp = 698142602
    archive log entry thread = 1 sequence = 2857 recid = 2857 stamp = 698142603
    archive log entry thread = 1 sequence = 2982 recid = 2982 stamp = 699078603
    archive log entry thread = 1 sequence = 2983 recid = 2983 stamp = 699078605
    channel ORA_DISK_1: starting piece 1 to October 1 09
    channel ORA_DISK_1: finished piece 1 to October 1 09
    piece handle = D:\FRA\APEX\BACKUPSET\2009_10_01\O1_MF_ANNNN_TAG20091001T043006_5D8520K4_. Tag BKP = comment TAG20091001T043006 = NONE
    channel ORA_DISK_1: complete set of backups, time: 00:00:03
    Backup finished on 1st October 09

    From control file and SPFILE Autobackup 1st October 09
    piece handle = D:\FRA\APEX\AUTOBACKUP\2009_10_01\O1_MF_S_699078626_5D8522W8_. Comment BKP = NONE
    File control finished and SPFILE Autobackup to on 1 October 09

    output channel: ORA_DISK_1
    allocated channel: ch1
    channel ch1: sid = 81 = SBT_TAPE devtype
    channel ch1: CommVault Systems for Oracle: Version 7.0.0 (BUILD76)

    From backup 1st October 09
    specification does not match any data file copy in the repository
    skip the log file archive D:\FRA\APEX\ARCHIVELOG\2009_09_10\O1_MF_1_2720_5BKO9BOL_. ARC; already saved 4 times
    ...
    jump key 5203 backupset; already saved 1 time
    channel ch1: from archive newspaper backupset
    channel ch1: specification of archive log backup set
    archive log entry thread = 1 sequence = 2982 recid = 2982 stamp = 699078603
    archive log entry thread = 1 sequence = 2983 recid = 2983 stamp = 699078605
    channel ch1: starting piece 1 to October 1 09
    channel ch1: finished piece 1 to October 1 09
    piece handle = i2kqm5vv_1_1 tag = comment TAG20091001T043031 = API 2.0, MMS Version 7.0.0.76 Version
    channel ch1: complete set of backups, time: 00:00:16
    entry count = 4670 stamp = 699064230 = creation_time backupset 1st October 09
    channel ch1: starting piece 1 to October 1 09
    RMAN-03009: failure of the backup command on channel ch1 at 2009-10-01 04:31:19
    ORA-01858: a non-digit character was found here where was waiting for a digital
    continue other job steps, not a not working will not re-run
    entry count = 4672 stamp = 699078622 = creation_time backupset 1st October 09
    channel ch1: starting piece 1 to October 1 09
    channel ch1: backup D:\FRA\APEX\BACKUPSET\2009_10_01\O1_MF_ANNNN_TAG20091001T043006_5D8520K4_ piece. BKP
    piece handle = i0kqm5uu_1_2 comment = API Version 2.0, Version MMS 7.0.0.76
    channel ch1: finished piece 1 to October 1 09
    channel ch1: complete set of backups, time: 00:00:07
    entry count = 4673 stamp = 699078626 = creation_time backupset 1st October 09
    channel ch1: starting piece 1 to October 1 09
    output channel: ch1
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03009: failure of the backup command on channel ch1 at 01/10/2009 04:31:35
    ORA-01858: a non-digit character was found here where was waiting for a digital

    Complete recovery manager.

    Thanks for your help!

    Ciao,.
    Christian

    See my note of the Support of Oracle:

    Subject: RMAN backup fails with RMAN-03009 ORA-01858 ORA-01861
    DOC - ID: 744047.1 Type: PROBLEM
    Modification date: 20 March 2009 status: MODERATE

    This could be a NLS_DATE_FORMAT / NLS_LANG questioned.

  • What / which method to use for the duplicate database

    Greetings, the Experts of Oracle

    I'm trying to replicate a database (src) of production to another machine (dest) for developers to do some tests before applying the changes to the production environment. The src and dest running Oracle 10 g 2 RHEL 4, 5.

    Due to the firewall in our environment policy, may that src and dest will not be able to see each other on the network. Also the directory structure will be different on src and dest.

    Now, there seems to be several methods available to achieve this:
    1. duplicate with RMAN, something like:
    rman TARGET sys/password@src NOCATALOG AUXILIARY sys/password@dest
    DUPLICATE TARGET DATABASE TO dest NOFILENAMECHECK;
    2. backup/restore with RMAN.
    3 use the Import and Export (including impdp/expdp) utilities.

    From my research so far, option 1 seems to be the method for this purpose. He also manages the directory structure difference quite well. However, it requires connection to src and dest simultaneously during replication. Is there a way it could be done from a backup image instead of a connection to the database of the CBC? Other 2 options are possible? Are there any other ways I could duplicate the database given the situation?

    Appreciate your help.

    If the CBC and destination cannot access another, then the simplest option will be #2 (restore a database to a new host: scenario) who also address the different directory structure.

  • set the database parameters using the init.ora file

    Hi all

    I'm working on a product of oracle (BI Apps), it gives a setting recommended database values in an inti.ora file. How can I apply this file to my database? in other how can words I use the values of the recommended settings in this file?

    Thanks for your time.

    Hello

    Try this:

    (1) connect to your database as a SYSDBA
    (2) issue: CREATE PFILE='/tmp/pfile.ora' OF SPFILE;
    (3) /tmp/pfile.ora to modify and add some references in your init.ora requests file - or update the current entries if those that already exist.
    (4) stop your database.
    (5) start your database in restricted using the new /tmp/pfile.ora mode to see if the settings are ok and if your database will start with them. (If he - go to 6), if no, go to 3)
    (6) question: CREATE SPFILE FROM PFILE='/tmp/pfile.ora'
    (7) judgment of the database
    (8) start as usual-, this will use the spfile with the changes.

    Nice.

    Note:
    Step 2) assumes that you are on * NIX and are actually using a spfile in your database already...

  • RMAN-06004: error ORACLE recovery catalog database: RMAN-20001: target

    Hello

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of the backup command to 2009-03-31 21:59:24
    RMAN-03014: implicit recovery catalog Resync failed
    RMAN-06004: error ORACLE recovery catalog database: RMAN-20001: target not found in the recovery catalog database


    I get the above error while taking backup RMAN Level0. I am able to connect to the database of the catalogue without any problem.

    I already have this registry database command in RMAN prompt. Now I am able to see backup list but I don't know how that DB asking to sign up for today. Until yesterday, the backups were running fine btu today his application to enter the catalog DB.

    Here we manually to connect the catalogue in this way
    rman target $ /.
    RMAN > catalog connection rmanuser/password @ < globalcatalogDB >
    connected.

    After that if I give this command means...

    RMAN > backup from the list of database;
    I get the error I pasted at the earliest.

    Thanks in advance.

    If you do not have a catalog, you need not to save the database. Rely you only on the target database controlfile. If you use a catalog, you must save the target database, but only once. If you sometimes use a catalog - and sometimes not--the appropriate command is RESYNC (although in many cases RMAN automatically done).

    Werner

  • ORA-17628: error Oracle 19505 returned by remote Oracle - Dup Active Server

    Hi all

    I'm doing a duplicate RMAN of a 11.2.0.4 database to another host on a different IP address.

    Goal

    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    

    Auxiliary (nomount)

    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    
    

    I've added an entry static listener to the file on the server to THE listener and start the instance in nomount.

    (SID_LIST =
       (SID_DESC =
          (GLOBAL_DBNAME = IST_11G)
          (ORACLE_HOME = /devdb3/u01b/app/oracle/product/11.2.0.4)
          (SID_NAME = IST_11G)
        )
    

    TNSNAMES on the server to THE:

    points to the TARGET server:

    IST_11G_192 = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.48)(PORT = 1521))(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = IST_11G)(UR=A)))
    

    the server pointing to THE

    IST_11G = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 172.21.64.72)(PORT = 1521))(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = IST_11G)(UR=A)))
    

    TNSNAMES on the TARGET server:

    IST_11G_NEW = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 172.21.64.72)(PORT = 1521))(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = IST_11G)(UR=A)))
    

    instance pFile to THE:

    Using parameters in Server pfile /devdb3/u01b/app/oracle/product/11.2.0.4/dbs/initIST_11G.ora-side

    Parameters of the system with default values:

    db_name = "IST_11G".

    I have sftp file password above and named correctly.

    Check the connections

    --from target
    $ sqlplus sys/xxx@IST_11G_NEW as sysdba
    
    SQL*Plus: Release 11.2.0.4.0 Production on Tue Jun 30 08:32:10 2015
    
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL>
    

    Since in THE

    $ sqlplus sys/xxx@IST_11G_192 as sysdba

    SQL * more: Release 11.2.0.4.0 Production on Mar 30 08:32:32 June 2015

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

    Connected to:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production

    With partitioning, OLAP, Data Mining and Real Application Testing options

    SQL >

    So I checked that I have two means of connection, my at THE start and I can connect.

    Here's my RMAN command (Note: the TARGET servers and have the same host name, don't ask...) "This is why we use the IP address in the TNSNAMES):

    connection:

    rman target sys/xxx@IST_11G_192 auxiliary sys/xxx@IST_11G | tee /home/oracle/IST_11G_duplicate.log
    

    run
    {
      duplicate target database to IST_11G from active database
      NOFILENAMECHECK
      spfile
      set DB_FILE_NAME_CONVERT = '/devdb3/u01/oradata/IST_11G','/devdb3/u02d/oradata/IST_11G','/devdb3/u02/oradata/IST_11G','/devdb3/u02d/oradata/IST_11G'
      set LOG_FILE_NAME_CONVERT = '/devdb3/u01/oradata/IST_11G/','/devdb3/u03r/IST_11G_DEVDB3/'
      set control_files = '/devdb3/u03r/IST_11G_DEVDB3/controlfile/IST_11G_ctl1.ctl', '/devdb3/u04r/IST_11G_DEVDB3/controlfile/IST_11G_ctl2.ctl'
      set audit_file_dest = '/devdb3/u01b/app/oracle/product/11.2.0.4/rdbms/audit/'
      set diagnostic_dest = '/devdb3/u01b/app/oracle/'
      set log_archive_dest =  '/devdb3/u05f/fast_recovery/IST_11G/archivelogs/'
      set MEMORY_MAX_TARGET='1G'
      set MEMORY_TARGET='1G';
    }
    

    $ rman target sys/xxx@IST_11G_192 auxiliary sys/xxx@IST_11G | tee /home/oracle/IST_11G_duplicate.log
    
    Recovery Manager: Release 11.2.0.4.0 - Production on Tue Jun 30 08:37:02 2015
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: IST_11G (DBID=525645852)
    connected to auxiliary database: IST_11G (not mounted)
    
    RMAN> run
    2> {
    3>   duplicate target database to IST_11G from active database
      NOFILENAMECHECK
      spfile
    4> 5> 6>   set DB_FILE_NAME_CONVERT = '/devdb3/u01/oradata/IST_11G','/devdb3/u02d/oradata/IST_11G','/devdb3/u02/oradata/IST_11G','/devdb3/u02d/oradata/IST_11G'
      set LOG_FILE_NAME_CONVERT = '/devdb3/u01/oradata/IST_11G/','/devdb3/u03r/IST_11G_DEVDB3/'
      set control_files = '/devdb3/u03r/IST_11G_DEVDB3/controlfile/IST_11G_ctl1.ctl', '/devdb3/u04r/IST_11G_DEVDB3/controlfile/IST_11G_ctl2.ctl'
    7>   set audit_file_dest = '/devdb3/u01b/app/oracle/product/11.2.0.4/rdbms/audit/'
    8>   set diagnostic_dest = '/devdb3/u01b/app/oracle/'
      set log_archive_dest =  '/devdb3/u05f/fast_recovery/IST_11G/archivelogs/'
    9>   set MEMORY_MAX_TARGET='1G'
      set MEMORY_TARGET='1G';
    10> }
    11>
    12>
    
    Starting Duplicate Db at Jun 30 2015 08:37:10
    using target database control file instead of recovery catalog
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: SID=216 device type=DISK
    
    contents of Memory Script:
    {
       backup as copy reuse
       targetfile  '/devdb3/oracle/app/oracle/product/11.2.0.4/dbs/spfileIST_11G.ora' auxiliary format
    '/devdb3/u01b/app/oracle/product/11.2.0.4/dbs/spfileIST_11G.ora'   ;
       sql clone "alter system set spfile= ''/devdb3/u01b/app/oracle/product/11.2.0.4/dbs/spfileIST_11G.ora''";
    }
    executing Memory Script
    
    Starting backup at Jun 30 2015 08:37:11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=365 device type=DISK
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/30/2015 08:37:12
    RMAN-05501: aborting duplication of target database
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 06/30/2015 08:37:12
    ORA-17628: Oracle error 19505 returned by remote Oracle server
    
    RMAN>
    
    
    
    
    
    
    
    
    
    

    I can't understand why I'm getting ORA-17628: error Oracle 19505 returned by remote Oracle server.

    So, I try one of the commands connecting memory se scripts to check if was not a problem with my execution block.

    backup copy reuse targetfile ' / devdb3/oracle/app/oracle/product/11.2.0.4/dbs/spfileIST_11G.ora' auxiliary format ' / devdb3/u01b/app/oracle/product/11.2.0.4/dbs/spfileIST_11G.ora';

    $ rman target sys/sys_IST_11G@IST_11G_192 auxiliary sys/sys_IST_11G@IST_11G | tee /home/oracle/IST_11G_duplicate.log
    
    Recovery Manager: Release 11.2.0.4.0 - Production on Tue Jun 30 08:41:00 2015
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: IST_11G (DBID=525645852)
    connected to auxiliary database: IST_11G (not mounted)
    
    RMAN> backup as copy reuse targetfile  '/devdb3/oracle/app/oracle/product/11.2.0.4/dbs/spfileIST_11G.ora' auxiliary format '/devdb3/u01b/app/oracle/product/11.2.0.4/dbs/spfileIST_11G.ora';
    
    Starting backup at Jun 30 2015 08:41:15
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=365 device type=DISK
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 06/30/2015 08:41:17
    ORA-17628: Oracle error 19505 returned by remote Oracle server
    
    RMAN>
    
    
    
    
    
    
    
    

    Same mistake.  Nothing is written for the journal of alerts.  IM starting to pull the hair is left on my head out and people start screaming for this database.  I could go back to datapump but I want to understand this.  Any help would be very much appreciated.

    Thank you.

    Yes, although this:

    connected to target database: IST_11G (DBID = 525645852)

    connected to the auxiliary database: IST_11G (unassembled)

    can say you that RMAN you connected the two separate databases, the process, instances should do research each other using tnsnames file entries.  Thus, incorrect tnsnames entries can have one instance pointing to itself.

    Hemant K Collette

  • RMAN-03009: failure to allocate command on ABC1 channel: Please consider the issue.

    I try to referesh a backup of the production database.

    My version of the database is: 11.1.0.7.0

    Backup is located on the tapes, which are available at the present time.

    Please see the scritp I'm runnning. and help me how to fix the error below.


    SQL 'alter session set optimizer_mode = RULE;
    UNTIL "2011-03-24-09: 21:45 ';"
    ALLOCATE channel AUXILIARY ABC1 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so ';
    ALLOCATE channel AUXILIARY ABC2 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so ';
    ALLOCATE channel AUXILIARY ABC3 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so ';
    ALLOCATE channel AUXILIARY ABC4 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so ';
    ALLOCATE channel AUXILIARY ABC5 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so ';
    ALLOCATE channel AUXILIARY ABC6 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so ';
    ALLOCATE channel AUXILIARY ABC7 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so ';
    ALLOCATE channel AUXILIARY ABC8 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so ';
    SEND "NB_ORA_SERV = msssn1.soat.com, NB_ORA_CLIENT = mssn1.soat.com";
    DUPLICATE THE ABC TARGET DATABASE;
    OUTPUT CHANNEL ABC1.
    ABC2 CHANNEL;
    OUTPUT CHANNEL ABC3.
    OUTPUT CHANNEL ABC4.
    CHANNEL ABC5.
    ABC6 CHANNEL;
    OUTPUT CHANNEL ABC7.
    OUTPUT CHANNEL ABC8;

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

    Error message...


    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03009: failure to allocate command on ABC1 channel to 26/03/2011 05:30:05
    ORA-19554: error device allocation, type of device: SBT_TAPE device name:
    ORA-27211: unable to load the media management library
    Additional information: 3857

    Published by: 784786 on March 26, 2011 03:19

    Which third-party library management (for example ibm TSM etc.) do you use?

    It seems that this is problem of backup server, which could be the possible reasons:

    1. the customer node is not registered correctly.
    2 backup server is busy and not able to allocate channels to a customer's request.
    etc.

    have ever run you backup for this computer?

Maybe you are looking for

  • What's "drag &amp; drop" left to copy stuff on iOS?

    OS X 10.11.6 iMac end 2012, iTunes 12.4.2, iPhone 4 with iOS 9.3.3 (all latest updates) Drag and drop no longer allowed? the iPhone is connected via USB to the iMac. I have iTunes game but not Apple music. I would like to cache by dragging the files

  • iMac freezing

    About 6 months ago I bought an iMac.  It worked pretty well overall. It has a wireless keyboard and mouse as well.  Recently, he was the gel and the only way out of the State is to use the power button to shut down, and then restart.  There is a sign

  • Satellite A50 - WOL

    The A50 is able to wake up on LAN? I'd do itIf so, how do I configure it?

  • PIN DAQmx

    Hi, I just bought the DAQmx, USB-6229. He was 2 meters and waveform out. I don't know how to use these functions-counters and out waveform - using PFI 0-15, the lines of the PFI 0-15 is IN or OUT. What axes belong to the waveform on. No matter what t

  • To open Internet Explorer as a background process in the batch file

    I need to write the batch file, which will open Internet explore it as a background service/mode (which you don't mind the user). Thanks in advance Paritosh