Split-mirror backup: Attempt to mount unknown instance

Hi experts,
I am backing up the Oracle database of an SAP system online via the split-mirror approach with a BRBACKUP -t online_split command. After having copied all datafiles, BRBACKUP terminates with the following error message (excerpt):
BR0330I Starting and mounting database instance X86/SPLIT ...
BR0278E Command output of '/oracle/X86/102_64/bin/sqlplus':
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Aug 1 00:28:15 2008
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
SQL> ERROR:
ORA-12545: Connect failed because target host or object does not exist
SQL>
SQL> ORA-12545: Connect failed because target host or object does not exist
SQL>
BR0280I BRBACKUP time stamp: 2008-08-01 00.28.15
BR0279E Return code from '/oracle/X86/102_64/bin/sqlplus': 0
BR0302E SQLPLUS call for database instance X86/SPLIT failed
BR0332E Start and mount of database instance X86/SPLIT failed
At this point,
- all data files have been copied successfully;
- the control files have been copied;
- a copy of the backup summary .fnd file has been written to the sapbackup directory of both database host and backup host;
- I verified that the tablespaces had been put into backup mode before the split command was executed.
I wonder why BRBACKUP is trying to mount an instance "X86/SPLIT" that is not defined in tnsnames.ora?
What is the function of this step, and how can I suppress it as this flags the entry of the backup run in DB12 as failed?
OS version: Solaris 10 x64 (database and backup host)
Database: Oracle 10.2.0.2.0
SAP Kernel: 700
BRTOOLS Version: 7.00 (34)
Best regards,
Rainer

Michael,
the command
more /oracle/X86/.dbenv.sh | grep X86/SPLIT
did not return any matching line. I tried with .dbenv.sh, .dbenv.csh, .dbenv_<db_hostname>.sh, .dbenv_<db_hostname>.csh.
A sample is the following:
# @(#) $Id: //bc/700-1_REL/src/ins/SAPINST/impl/tpls/ora/ind/DBENV.CSH#7 $
# Oracle RDBMS Environment
setenv THREAD NOPS
if ( $THREAD == NOPS ) then
    set    DBSID = X86
else
    if ( $THREAD != "001" ) then
       set DBSID = X86_${THREAD}
    else
       set DBSID = X86
    endif
endif
setenv dbms_type       ORA
setenv dbs_ora_tnsname $DBSID
setenv dbs_ora_schema  SAPSR3
setenv ORACLE_SID      $DBSID
setenv DB_SID          X86
setenv ORACLE_BASE     /oracle
# check for running user and set for orasid ORA_NLS10
set USER = `id | awk -F\( '{print $2}' | awk -F\) '{print $1}'`
set TRUL = 'tr "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz"'
set ORASID = "ora`echo $DB_SID | $TRUL`"
if ( $USER != $ORASID ) then
  setenv TNS_ADMIN       /usr/sap/X86/SYS/profile/oracle
  set ADD=/oracle/client/10x_64/instantclient
  set _t=/oracle/X86/102_64/bin/sqlplus
  set _f=/sapmnt/X86/profile/DEFAULT.PFL
  set SAPDBHOST=""
  if ( -r "$_f" ) then
    set SAPDBHOST=`awk -F= '/^[      ]*SAPDBHOST[      ]*=/ {print $2; exit}' $_f | awk '{print $1}'`
  endif
  if ( -r "$_t" || `uname -n` == "$SAPDBHOST"  ) then
    setenv ORACLE_HOME /oracle/X86/102_64
  endif
else
  setenv ORACLE_HOME     /oracle/X86/102_64
  set ADD=/oracle/X86/102_64/lib
endif
setenv NLS_LANG        AMERICAN_AMERICA.UTF8
setenv SAPDATA_HOME    /oracle/X86
setenv DIR_LIBRARY     /usr/sap/X86/SYS/exe/run
if ( $?ORACLE_HOME ) then
  foreach d ( $ORACLE_HOME/bin )
    set i=0
    foreach p ( $path )
        if ( "$p" == "$d" ) then
            set i=1
            break
        endif
    end
    if ( $i == 0 ) then
        set path = ( $d $path )
    endif
  end
endif
switch (`uname`)
    case AIX*:
        if ( ! $?LIBPATH ) then
            setenv LIBPATH /usr/lib:/lib:${ADD}:/usr/sap/X86/SYS/exe/run
        else
            foreach d ( /usr/sap/X86/SYS/exe/run ${ADD} )
                set i=0
                foreach p ( `echo $LIBPATH | sed 's/:/ /g'` )
                    if ( "$p" == "$d" ) then
                        set i=1
                        break
                    endif
                end
                if ( $i == 0 ) then
                    setenv LIBPATH ${LIBPATH}:$d
                endif
            end
        endif
        breaksw
    case HP*:
        if ( ! $?SHLIB_PATH ) then
            setenv SHLIB_PATH ${ADD}:/usr/sap/X86/SYS/exe/run
        else
            foreach d ( /usr/sap/X86/SYS/exe/run ${ADD} )
                set i=0
                foreach p ( `echo $SHLIB_PATH | sed 's/:/ /g'` )
                    if ( "$p" == "$d" ) then
                        set i=1
                        break
                    endif
                end
                if ( $i == 0 ) then
                    setenv SHLIB_PATH ${SHLIB_PATH}:$d
                endif
            end
        endif
        breaksw
    case SIN*:
    case Reliant*:
    case Linux*:
        if ( ! $?LD_LIBRARY_PATH ) then
            setenv LD_LIBRARY_PATH ${ADD}:/usr/sap/X86/SYS/exe/run
        else
            foreach d ( /usr/sap/X86/SYS/exe/run ${ADD} )
                set i=0
                foreach p ( `echo $LD_LIBRARY_PATH | sed 's/:/ /g'` )
                    if ( "$p" == "$d" ) then
                        set i=1
                        break
                    endif
                end
                if ( $i == 0 ) then
                    setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:$d
                endif
            end
        endif
        breaksw
    case OSF*:
        if ( ! $?LD_LIBRARY_PATH ) then
            setenv LD_LIBRARY_PATH ${ADD}:/usr/sap/X86/SYS/exe/run
        else
            foreach d ( /usr/sap/X86/SYS/exe/run  ${ADD} )
                set i=0
                foreach p ( `echo $LD_LIBRARY_PATH | sed 's/:/ /g'` )
                    if ( "$p" == "$d" ) then
                        set i=1
                        break
                    endif
                end
                if ( $i == 0 ) then
                    setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:$d
                endif
            end
        endif
        breaksw
    default:
        if ( ! $?LD_LIBRARY_PATH ) then
            setenv LD_LIBRARY_PATH ${ADD}:/usr/sap/X86/SYS/exe/run
        else
            foreach d ( /usr/sap/X86/SYS/exe/run ${ADD} )
                set i=0
                foreach p ( `echo $LD_LIBRARY_PATH | sed 's/:/ /g'` )
                    if ( "$p" == "$d" ) then
                        set i=1
                        break
                    endif
                end
                if ( $i == 0 ) then
                    setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:$d
                endif
            end
        endif
        breaksw
endsw
# define some nice aliases
alias cdora 'cd /usr/sap/$SAPSYSTEMNAME/SYS/profile/oracle'
# end Oracle RDBMS Environment
Thank you for your time,
Rainer

Similar Messages

  • SAP-compliant Split Mirror Backup

    IHAC with an SAP deployment on Solaris Containers; hence I cannot use the EMC "cookbook" for SAP backups with EMC Replication Manager, since RM  (and EMC in general) has limited support for Solaris containers.  Consequently, I am scripting the synch/split/mount integration with BRBACKUP.
    My question is, does a file-based backup of the mirrors (in this case, EMC Business Continuance Voumes - BCVs) suffice for an SAP-compliant split mirror backup, or must the database replicas be mounted and started on the mount host(s)?  Moreover, are there any special considerations if the production host is a Solaris container? With Exchange Server for instance, an integrity check is performed on the BCVs to meet Microsoft backup compliance.  However, I have reviewed many SAP split mirror documents, and I do not see this expressly stated as a requirement.
    Regards,
    MikeC

    I have only seen split mirror backups on HP-UX with XP-frames. So i cannot say anything specific about the Solaris/EMC. But there we only do file backups, even for online backups. Like this:
    - set the database in backup mode
    - split the disks and mount the filesystems (on the backup server), end backup
    - backup the files
    - umount the filesystems, resync the disks
    Offline backups work more or less the same, but instead of backup mode, you shutdown the database. The only time we might start an instance on the split side is, when we do a restore test with recovery.
    Cheers Michael

  • Online split mirror Backup is getting completed with a warning message

    Dear Experts,
    Recently we have configured the online split mirror backup and it is getting completed with a warning message that "BR0494W Oracle pfile cannot be created from spfile in remote OPS$ connect mode on UNIX platforms"
    Please suggest and below is the complete backup log and appreciate quick help
    Detail log:                    bdxudchg.anf
    BR0051I BRBACKUP 6.40 (15)                                                                               
    BR0055I Start of database backup: bdxudchg.anf 2008-04-26 17.56.04                                                                               
    BR0049W Last BRBACKUP run was probably killed                                                                               
    BR0494W Oracle pfile cannot be created from spfile in remote OPS$ connect mode on UNIX platforms                                                                               
    BR0351I Restoring /oracle/PD1/sapbackup/cntrlPD1.dbf                                                                               
    BR0355I from /oracle/PD1/sapbackup/cntrlPD1.dbf ...                                                                               
    BR0319I Control file copy created: /oracle/PD1/sapbackup/cntrlPD1.dbf 34349056                                                                               
    BR0101I Parameters                                                                               
    Name                           Value                                                                               
    oracle_sid                     PD1                                                                               
    oracle_home                    /oracle/PD1/920_64                                                                               
    oracle_profile                 /oracle/PD1/920_64/dbs/initPD1.ora                                                                               
    sapdata_home                   /oracle/PD1                                                                               
    sap_profile                    /oracle/PD1/920_64/dbs/initPD1.sap                                                                               
    backup_mode                    ALL                                                                               
    backup_type                    online_split                                                                               
    backup_dev_type                util_file                                                                               
    orig_db_home                   /oracle/PD1                                                                               
    util_par_file                  /oracle/PD1/920_64/dbs/initPD1.utl                                                                               
    primary_db                     PD1BKP.world                                                                               
    split_cmd                      /wipro/SD-scripts/SD_split_mount_delay.sh                                                                               
    resync_cmd                     NULL                                                                               
    system_info                    orapd1/orapd1 peppdb HP-UX B.11.23 U ia64                                                                               
    oracle_info                    PD1 9.2.0.7.0 8192 23999 11040627253                                                                               
    sap_info                       640 SAPPD1 PD1 Z0784028998 R3_ORA 0020209102                                                                               
    make_info                      hpia64 OCI_920 Oct  9 2004                                                                               
    command_line                   brbackup -u / -c -d util_file                                                                               
    BR0116I ARCHIVE LOG LIST before backup for database instance PD1                                                                               
    Parameter                      Value                                                                               
    Database log mode              Archive Mode                                                                               
    Automatic archival             Enabled                                                                               
    Archive destination            /oracle/PD1/oraarch/PD1arch                                                                               
    Archive format                 %t_%s.dbf                                                                               
    Oldest online log sequence     23996                                                                               
    Next log sequence to archive   23999                                                                               
    Current log sequence           23999      SCN: 11040627253                                                                               
    Database block size            8192       Thread: 1                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.47.42                                                                               
    BR0315I 'Alter tablespace PSAPPD1 begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.00                                                                               
    BR0315I 'Alter tablespace PSAPPD1640 begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.03                                                                               
    BR0315I 'Alter tablespace PSAPPD1USR begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.08                                                                               
    BR0315I 'Alter tablespace PSAPTOOLS begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.57                                                                               
    BR0315I 'Alter tablespace PSAPUNDO begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.59                                                                               
    BR0315I 'Alter tablespace SYSTEM begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.59                                                                               
    BR0295I Splitting mirror disks...                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.32                                                                               
    BR0296I Split of mirror disks successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1 end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1640 end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1USR end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPTOOLS end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPUNDO end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace SYSTEM end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0340I Switching to next online redo log file for database instance PD1 ...                                                                               
    BR0321I Switch to next online redo log file for database instance PD1 successful                                                                               
    BR0117I ARCHIVE LOG LIST after backup for database instance PD1                                                                               
    Parameter                      Value                                                                               
    Database log mode              Archive Mode                                                                               
    Automatic archival             Enabled                                                                               
    Archive destination            /oracle/PD1/oraarch/PD1arch                                                                               
    Archive format                 %t_%s.dbf                                                                               
    Oldest online log sequence     24023                                                                               
    Next log sequence to archive   24026                                                                               
    Current log sequence           24026      SCN: 11041541242                                                                               
    Database block size            8192       Thread: 1                                                                               
    BR0118I Tablespaces and data files                                                                               
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_1/pd1.data1                12884910080    4  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_2/pd1.data2                12884910080    5  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_3/pd1.data3                12884910080    8  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_21/pd1.data21              12884910080   11  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_11/pd1.data11              12884910080   10  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_4/pd1.data4                12884910080    9  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_31/pd1.data31              12884910080   12  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_51/pd1.data51              12884910080   14  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_5/pd1.data5                12884910080   16  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_6/pd1.data6                 6442459136   25  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_52/pd1.data52              12884910080   24  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_42/pd1.data42              12884910080   23  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_32/pd1.data32              12884910080   22  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_22/pd1.data22              12884910080   21  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_12/pd1.data12              12884910080   20  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_91/pd1.data91              12884910080   19  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_81/pd1.data81              12884910080   18  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_71/pd1.data71              12884910080   17  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_44/pd1.data44              12884910080   42  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_24/pd1.data24              12884910080   41  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_14/pd1.data14              12884910080   40  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_93/pd1.data93              12884910080   39  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_83/pd1.data83              12884910080   38  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_73/pd1.data73              12884910080   37  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_63/pd1.data63              12884910080   36  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_53/pd1.data53              12884910080   35  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_7/pd1.data7                12884910080   34  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_95/pd1.data95              12884910080   59  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_75/pd1.data75               6442459136   58  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_85/pd1.data85              12884910080   57  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_65/pd1.data65              12884910080   56  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_9/pd1.data9                 6442459136   55  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_55/pd1.data55               6442459136   54  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_35/pd1.data35              12884910080   53  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_45/pd1.data45              12884910080   52  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_25/pd1.data25              12884910080   51  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_67/pd1.data67               6442459136   76  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_87/pd1.data87              12884910080   75  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_57/pd1.data57               6442459136   74  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_37/pd1.data37              12884910080   73  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_27/pd1.data27               6442459136   72  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_47/pd1.data47               6442459136   71  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_17/pd1.data17               6442459136   70  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_96/pd1.data96               6442459136   69  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_76/pd1.data76              12884910080   68  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_89/pd1.data89               6442459136   93  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_59/pd1.data59               6442459136   92  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_39/pd1.data39               6442459136   91  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_29/pd1.data29               6442459136   90  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_49/pd1.data49               6442459136   89  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_19/pd1.data19               6442459136   88  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_98/pd1.data98               6442459136   87  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_78/pd1.data78               6442459136   86  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_68/pd1.data68               6442459136   85  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_141/pd1.data141             6442459136  110  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_131/pd1.data131             6442459136  109  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_121/pd1.data121             6442459136  108  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_111/pd1.data111             6442459136  107  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_101/pd1.data101             6442459136  106  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_100/pd1.data100             6442459136  105  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_80/pd1.data80               6442459136  104  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_70/pd1.data70               6442459136  103  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_90/pd1.data90               6442459136  102  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_113/pd1.data113             6442459136  127  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_103/pd1.data103             6442459136  126  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_192/pd1.data192             6442459136  125  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_182/pd1.data182             6442459136  124  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_172/pd1.data172             6442459136  123  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_162/pd1.data162             6442459136  122  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_152/pd1.data152             6442459136  121  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_142/pd1.data142             6442459136  120  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_132/pd1.data132             6442459136  119  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_221/pd1.data221             6442459136  208  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_211/pd1.data211             6442459136  207  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_201/pd1.data201             6442459136  206  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_190/pd1.data190             6442459136  205  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_200/pd1.data200             6442459136  204  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_170/pd1.data170             6442459136  203  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_180/pd1.data180             6442459136  202  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_140/pd1.data140             6442459136  201  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_160/pd1.data160             6442459136  200  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_150/pd1.data150             6442459136  199  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_110/pd1.data110             6442459136  198  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_130/pd1.data130            6442459136  197  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_120/pd1.data120             6442459136  196  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_189/pd1.data189            6442459136  195  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_199/pd1.data199            6442459136  194  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_169/pd1.data169             6442459136  193  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_179/pd1.data179             6442459136  192  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_159/pd1.data159             6442459136  191  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_149/pd1.data149             6442459136  190  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_139/pd1.data139             6442459136  189  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_109/pd1.data109             6442459136  188  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_129/pd1.data129             6442459136  187  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_119/pd1.data119             6442459136  186  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_188/pd1.data188             6442459136  185  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_198/pd1.data198             6442459136  184  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_168/pd1.data168             6442459136  183  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_178/pd1.data178             6442459136  182  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_148/pd1.data148             6442459136  181  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_158/pd1.data158             6442459136  180  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_138/pd1.data138             6442459136  179  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_108/pd1.data108             6442459136  178  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_128/pd1.data128           12884910080  177  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_118/pd1.data118             6442459136  176  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_187/pd1.data187             6442459136  175  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_197/pd1.data197             6442459136  174  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_167/pd1.data167             6442459136  173  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_177/pd1.data177            6442459136  172  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_157/pd1.data157             6442459136  171  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_147/pd1.data147             6442459136  170  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_137/pd1.data137             6442459136  169  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_117/pd1.data117             6442459136  168  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_127/pd1.data127             6442459136  167  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_107/pd1.data107             6442459136  166  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_186/pd1.data186             6442459136  165  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_196/pd1.data196             6442459136  164  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_166/pd1.data166             6442459136  163  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_176/pd1.data176            6442459136  162  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_156/pd1.data156             6442459136  161  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_146/pd1.data146             6442459136  160  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_136/pd1.data136             6442459136  159  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE   

    Hi again
    Please let me know whether we need to put the parameter remote_login_password=exclusive in pfile or spfile
    I prefer the spfile, just:
    SQL> alter system set remote_login_passwordfile = exclusive scope = spfile;
    To grant sysoper to system:
    SQL> grant sysoper to system;
    And restart the instance.
    Regards
    Michael

  • Can Split Mirror backups be used for RMAN database duplication?

    Hi
    We running Oracle 11gR2 EE.
    We have storage backup procedures in place,which use Split Mirror technology, i.e BCV
    We want to use RMAN to duplicate the source DB, using the BCV copy
    Is this possible/feasible?
    Rudi

    Hi
    Thanks for the reply.
    My intention is not to backup using RMAN from the BCV.Instead I want RMAN to use this BCV as the storage for our reporting DB
    I will elaborate further my intended workflow.
    Btw,the reporting DB will have a new name and all the SqlNet files will be in place.
    Please let me know what you think.
    On the target
    In the existing production server (source) :
    1.Put the DB in backup mode
    2.Split the disks
    3.End backup
    4.Keep record of SCN
    4.Register the new backups as datafile copy
    On the target server (target)
    1.Mount the report DB
    2.perform incomplete recovery the report DB until the SCN
    3.Open resetlogs
    2 issues I'm not sure about :
    a.How to I sync the report DB controlfile,so it will "see" the new backup?
    b.Do I need a RMAN repository?
    Rudi
    Edited by: Rudi on Jan 7, 2013 5:12 AM

  • Split mirror backup action in db13

    Dear gurus,
    I am trying to schedule  Split Mirror Datbase Offline / Split Mirror Datbase Online Backup through db13. But these specific action is not showing in DB13.
    I am using AIX with Oracle 10g (sap ecc6 version)
    Please guide how to configure the same
    regards
    vgbs

    Hi,
    Refer below link,
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8044c539-0d01-0010-6e82-bcf0857283f2
    Regards,
    Ravi

  • Restoration of backup done using Split-Mirror Disk in SAP

    Hi,
      I need to the DR activity tomorrow.
    Its an Oracle database. We are doing the Split-Mirror backup of Prod. db on QA server.
    I need to do the restore part. From where the restore script need to be given QA or Prod.
    What are the changes I need to do in the util file for the restore to work.
    Regards
    Amit.

    Ashok,
    HDS has in there own lab was able to use shadow image to create a copy of the ASM disk and present it to another server. HDS has not worked with Oracle to produce a Certified copy of the process. If you look on the ASM page you will see Netapp and EMC are just a few that have been Certified. I also have put ask HDS to work with oracle to allow us to use this feature.
    Al

  • RMAN and split mirror

    Hi
    About interest of RMAN split mirror backup. Have you one example where RMAN split backup is necessary ?
    Regards
    Den

    With databases growing from gigabytes to terabytes, taking backups to tape from
    the production system can overload the system and their completion time can
    exceed the backup window. Utilizing a split mirrored solution is becoming more
    popular because of higher performance disk to disk snapshot technology. There
    are several vendors that have certified their snapshot technology for use with
    Oracle databases. The list of Oracle Storage Compatibility Program (OSCP)
    snapshot vendors can be found on OTN

  • Attempting to use Migration Assistant to restore a Time Capsule backup to a mounted partitioned drive?

    Had a power surge and my Mac Pro did not fare well. Was able to boot from one of the drives in read only mode, so I did a Time Capsule backup of everything on the drive. Reinstalled Mountain Lion. Booted the computer up and am trying to use Migration Assistant to take the Time Capsule backup and restore it to the 1TB drive. When I use Migration Assistant, it says that there is not enough space on the drive to do the restore. I looked in Disk Utility and saw that the start up disk is another one of the 1TB drives with about 600GB used, therefore not enough space to do the restore. I want to restore to the original drive, but it says it is a "Mounted Partitioned Drive". Can I use Migration Assistant to restore a Time Capsule backup to this mounted partitioned drive?
    Thanks in advance for any help - greatly appreciated.

    I am not sure, never had to go there, I have multiple bootable clones of the system online and off, and a couple 1500VA/900W UPS units powering everything.
    http://support.apple.com/kb/HT1427
    http://www.recovermymac.co.uk/data-recovery/time-capsule-data-recovery/
    This is a great article:
    http://pondini.org/OSX/SetupLion.html
    Most questions about TimeCapsule and TimeMachine are under Mac OS X forum as in -
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion#/?tagSet=1468

  • Cloning a drive and mirror backup techniques

    Hi all,
    I have configured my new Mac Pro and loaded new apps and am at a point now where I want to put together a 'backup plan' for backing up work files and a clone drive of my OS/apps drive. I currently have my OS/apps drive (the orig 320GB) in bay #1.
    My 'work files' drive is a seagate 500GB in bay #2. I am not familiar with 'mirror backup' technologies but an ideal backup plan for me would be to have a drive in bay #3 that automatically mirrors anything I do on my 'work' drive in bay #2.
    Can anyone help me out with suggestions to accomplish this or have a suggestion on a different backup plan? I also would like to have a clone OS/apps drive in bay #4 in case my main OS/apps drive should go down. Again, an ideal situation in this instance would be that any updates or app adds that I make on drive #1 would automatically be mirrored on clone drive #4. Is there a way to accomplish this without having a RAID array and drives? Also, is there a way to make a clone of my up to date OS/apps drive in bay #1 on a drive in bay #4 without having to load all the software and OS again?
    Thanks in advance for any input.
    I have found this forum invaluable, especially since upgrading to Mac Pro.
    As I was contemplating a while back on the upgrade and asked in this forum
    for input on moving to the 24" iMac (which is a great machine) vs. the Mac Pro, someone suggested that the iMac may be more cost effective in the short term but the Mac Pro would ultimately be the most cost effective in terms of expandability. I am so glad I went with the Mac Pro.
    Best,
    Dennis

    If you stay on the small side 1 or 2 external FW800 or eSATA drives work rather well. If you start having 5 or 10 1 - 15 TB hard drives then the mentioned sled type external drives are nice. I have really too many external drive cases. I finally purchased a 4 drive Sonnet eSATA, FW800/400 & USB2 interfaces which requires only 1 cable for any of the 4 types of connections & have easy to change hot-swap drive sleds.
    Drive makers usually have s Server class hard drive for the best reliability. Seagate's are called their ES2 line of drives. They come in sizes up to 1 TB. Their Barracuda 7200.11 1.5TB Hard Drives still have a 5 year warranty, but are not rated for 24/7 use.
    FW800 is an easier to use external drive connector scheme. And as others have mentioned, a back-up can be done slowly in the back ground so does speed really matter. I do my backups to both internal & external drives. Internal for speed & ease. Then external for safety. If you really have information that could cost you a lot of lost time, effort &/or many then an off-site back copy is very important. This could be kept at your parent's, kid's, brother's, sister's, relative's, friend's or storage off-site storage unit.
    My son uses SuperDuper for his clones. I use CarbonCopyCloner most of the time, but I also have a copy of SuperDuper. This is what I use to copy my working system to a new drive, then I keep up the old drive as my backup system. All you have to do is keep the files up to date, or reclone them when there is enough changes made. I like to do the updating & then use the system to be sure that it works way of doing things.
    the beauty of all of this is that there are enough different ways that you can find 1, 2 or more of them to meet your current or future needs. As someone else said what works for him, may not work for you.

  • Can I mount another instance of standby database

    1. If I have a RAC physical standby database and instance 1 is mounted and is applying redo, can i mount second instance if I wish for example to perform a backup using rman?
    2. If instance 1 is mounted and applying redo can I stop it and start instance 2 and continue to apply redo??
    Thank you.
    Regards.
    Cristina.

    1. If I have a RAC physical standby database and instance 1 is mounted and is applying redo, can i mount second instance if I wish for example to perform a backup using rman?Yes as Emre mentioned, you can mount all of the instances in cluster.
    2. If instance 1 is mounted and applying redo can I stop it and start instance 2 and continue to apply redo??Redo apply will active only on one node, remaining standby instances will be idle
    So you can start recovery any instance where you wish.

  • How can I split a backup on two hard drives with Time Machine ?

    Back-up of my Imac with time machine is 1,3 TB. I have two 1 TB external hard drives but even if I had both as available in Time machine, it seems it doesn't allow to split the backup between the two hard drives. Any way to resolve this without buying another hard drive with more space?
    Thanks in advance

    You cannot directly split a backup. Your only option would be to open the TimeMachine preferences from System Prefs. and add things to the exclusion list for one of the backups. Then, when you go to do the other backup you would reverse the process and add everything else to the exclusion list and remove the things you had on there in the first place.
    Seems fairly intensive though when you could just go and buy a 2 or 3TB external drive and do it all in one...Black Friday is coming up
    Regards,

  • My imac G5 isight September 2006 hard drive takes several attempts to mount. When it does it works fine. Is there anything I can do to repair or do I just abandon it and sell it for parts?

    My imac G5 isight September 2006 hard drive takes several attempts to mount. When it does it works fine. Is there anything I can do to repair or do I just abandon it and sell it for parts?

    It's an Intel iMac the last G5s were built in 2005.
    How to identify iMac models
    1. Go to: Apple > System Preferences > Startup Disk and check to besure the that OS X 10.6 on the Macintosh HD is set as the Startup Disk.
    2. Start up from you Snow Leopard Upgrade DVD, navagate to Utilities > Disk Utility and Repair the Macintosh HD.
    About Disk Utility's Repair Disk Permissions feature

  • Operation Not Supported on Socket/Backup disc wont mount

    For a few months I have been wirelessly backing on a G5 iMac and Intel Macbook to a partition on a G4 mac mini with no problems. All are on Leopard and all updates applied.
    I now cant:
    connect to the Time Machine backup
    back up
    mount the sparesbundle
    Help! I have recently lost a harddrive on my mini and macbook so def want to back up!
    The error I get when I try to do the above is either "the backup disk could not be mounted' or 'not supported on this socket"
    I recently ran all updates. Also, until yesterday I had only used that partition for back ups. I used it to transfer iTunes music then deleted the folder and wondering if this has affected it.
    Thanks!
    Gus

    I run Time Machine between a dual G4 and an external RAID 1 drive connected by Firewire; no problems there, but I also decided to back up a Mac Mini to the same drive via Time Machine, over the network and through the G4 to reach the external drive. I wasn't expecting the sparsebundle structure to be created on the drive-- I had not heard of a sparsebundle before and thought Time Machine on the Mac Mini would create a backup structure similar to the one the G4 had created on the external drive, as I gather happens with a networked disk like Time Capsule. In any case, the Mac Mini created and populated the sparsebundle fine the first time it backed up and continued to add to it hourly/daily, but a few days later, after restarting the machines, the sparsebundle could no longer be mounted. I thought it might be something shaky in the Firewire link to the external drive, so I also tried backing up to a G4 internal drive which would then be backed up by the G4's Time Machine to the external drive. Same result-- the sparsebundle backup worked the first time and continued hourly/daily, but could no longer be mounted after restarting. (This seems to me like a simpler situation than some in the discussion, where people are dealing with a sparsebundle via a different machine than created it.) Permission fixing with chmod does not seem to have helped thus far, though I am not so familiar with chmod as to be sure I am doing it right. I'm approaching this incrementally, as I've heard the warnings about chmod's power and I'm not in a crisis mode at the moment, e.g., having lost data I really need to recover. Still, it seems reasonable to me to be able to use networked machines to spread valuable data recoverably across different physical drives, so I'm wondering why it is not simpler.

  • USB disks no longer mount, unknown filesystem

    Ran a routine weekly update on an arch box this morning, didn't think anything of it as usual. Until Thunar started spitting errors at me whenever I tried to mount a USB device. gvfs makes the devices appear in the left pane for one-click mounting... usually.
    A partition on the hard drive attached has started telling me I don't have permissions to mount it any more - never had issues before, I'm in storage so I don't see why.
    The other issue comes with a USB hard drive, and when trying to mount it as above, Thunar throws this at me:
    Error mounting /dev/sdb1 at /run/media/pip/HD-PVU2: Command-line `mount -t "vfat" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid-100,shortname=mixed,dmask=0077,utf8=1,showexec" "/dev/sdb1" "/run/media/pip/HD-PVU2"' exited with non-zero exit status 32: mount: unknown filesystem type 'vfat'
    Searching both pacman and AUR gave me no packages to do with vfat filesystems, and the wiki article "USB Storage Devices" provided no solutions at all.
    Using XFCE4 DE on 32-bit Arch. All packages have been updated to latest versions as of the time of this post.

    I probably experience the same kind of problem as you guys. I'm using udisksvm to mount USB drives and when I plug one, I get something like that:
    $ udisksvm
    Automounting for non optical devices enabled
    Added object : /org/freedesktop/UDisks2/drives/Intenso_Basic_10011100031138
    Added object : /org/freedesktop/UDisks2/block_devices/sdb
    Added object : /org/freedesktop/UDisks2/block_devices/sdb1
    Automounting /dev/sdb1...
    Mounting failed with error:
    GDBus.Error:org.freedesktop.UDisks2.Error.NotAuthorizedCanObtain: Not authorized to perform operation
    traydvm for /org/freedesktop/UDisks2/block_devices/sdb1 now running with pid : 2694
    /usr/lib/python2.7/site-packages/gi/types.py:47: Warning: g_variant_unref: assertion `value->ref_count > 0' failed
    return info.invoke(*args, **kwargs)
    $ udisksvm
    Automounting for non optical devices enabled
    Added object : /org/freedesktop/UDisks2/drives/Nokia_S60_359557013658840
    Added object : /org/freedesktop/UDisks2/block_devices/sdb
    Added interface on object : /org/freedesktop/UDisks2/block_devices/sdb
    Automounting /dev/sdb...
    Mounting failed with error:
    GDBus.Error:org.freedesktop.UDisks2.Error.NotAuthorizedCanObtain: Not authorized to perform operation
    traydvm for /org/freedesktop/UDisks2/block_devices/sdb now running with pid : 3025
    /usr/lib/python2.7/site-packages/gi/types.py:47: Warning: g_variant_unref: assertion `value->ref_count > 0' failed
    return info.invoke(*args, **kwargs)
    And the device is not mounted automatically. I have the packages dosfstools, ntfs-3g, systemd-sysvcompat installed (I use systemd). Mounting manually from console works well.

  • Is it possible to take a full backup without shutting down an instance?(10g

    Hi. everyone.
    Is it possible to take a full backup without shutting down an instance?
    The db version is 10gr2.
    As far as I know, in order to take a full backup of a database,
    one need to shutdown a database.
    Our db environment is a RAC environment which has two nodes.
    Yesterday, I heard from a hardware vendor that we do not need to shutdown
    instances(2-nodes) in order to take a full backup.
    Best Regards.

    Hi,
    >>As far as I know, in order to take a full backup of a database, one need to shutdown a database.
    In fact, a database operating in NOARCHIVELOG mode is necessary to shutdown the database in order to perform a full backup (Cold Backup), but otherwise a database that is operating in ARCHIVELOG mode, then is possible to perform a full database backup with the database in a open state. (Hot Backup)
    For more information see if these links below can help you:
    Oracle Backup and Recovery
    http://www.oracle.com/technology/deploy/availability/htdocs/BR_Overview.htm
    Oracle Backup and Recovery FAQ
    http://orafaq.com/faqdbabr.htm
    Cheers

Maybe you are looking for