Restoring inconsistent cold backup

Hello all.
Here's the scenario: I have a 9.2.0.1 database, in noarchivelog mode, running on Windoze XP. While the database is running, I took a backup of all the datafiles, control files and online logs using copy and paste on windoze. After the copy was done, I have shut down the database. I copied back into the original location the backup of the datafiles I made earlier.
My question is: How I go about to restore this database ? I dont care wether it is consistent or not, I just want to open it to make an export out of it
Things I have tried so far unsuccessfully:
allowresetlogs_corruption
allowreadonly_corruption
If you could shed some light on it on the steps I would need to make, that would be appreciated.
Thanks

What have you tried to far (specifics please, not general statements)?
I have done something close to what you want do a couple of years ago for an Oracle 9.2.0.4 DB on Linux and am looking for my notes. One key thing I found was to not try to change anything but just get a DB up and running that would let me get the data out. That means don't try to use different file paths or anything other changes.
It involved creating a new minimal database from scratch by hand that has the same name, paths, block size as the old one. In my case this minimal DB only had the system_01.dbf, undotbs_01.dbf and users_01.dbf data files even though I ultimately needed access to about 40 others.
The idea is to get a template DB in place that refers to the same paths, then shut it down and replace the minimal system_01.dbf file with the one from your backup. It turned out for me that Oracle could open, load and use my old system tablespace even though it referred to tablespaces that didn't exist yet in the new minimal system; obviously I couldn't use them yet but they didn't cause Oracle to fail to start.
1. You can toss the redo logs since there is nothing in them you need or can use and you will never be able to read them anyway.
2. You will need to create the instance and DB using the same version of Oracle that you had. There were key differences between the early Oracle 9 versions and I wasn't able to get around them.
3. Create an instance for the correct DB version if you don't have one. The easiest way to create a new one is to do a default installation from the original set up files but DO NOT create a database. When given choices use the same values (character set, paths, etc) as your old DB.
4. You will need a text version of the init.ora file in the same location (name and path) where it was before - the character set and block size have to match what you had before. If you have a copy of this file you can try it first. If you don't then create a minimal file; that is, no entries that are not necessary. Oracle comes with a sample with a lot entries commented out.
    a. use the same db_name= parameter in the init.ora file
    b. use a db_files= parameter that is large enough for all of the data files that you will later need access to
    c. use a compatible- parameter that is 9.2.0 and no later
5. You won't be able to use your old, copied, control files since they are binary files and the content won't match the new database; trying to use them will not get you anywhere.
6. Once you can bring up this new DB the first thing you should do is shut it down and take a cold backup.
7. Replace the new system_01.dbf and users_01_dbf files with the ones you copied from the old DB. The new control file can mount and open the old tablespace file and users file since the control file (old Oracle systems only, mind you) have NAME and PATH information but do not care about actual content (how many users, etc).
8. Make sure you can now open and access the DB with your swapped system and user tablespaces. You won't be able to access objects from the system tables that refer to data files that aren't known to the control file so don't even try to yet.
9. You can add your other data files to the DB by doing a CREATE CONTROLFILE command, when unmounted, that adds the other data files that you will want access to. Obviously don't add them all at once; add one and then test to make sure that things are ok. You won't be
It turns out that the control file has the list of datafiles including their names and paths but does not have the sizes; the system tables have the size info and physical info. So you can add a datafile to the control file by path and name without needing to know how big it was supposed to be; that size info will still be in your old system tablespace.I may have missed something and if I fiind my notes will repost with anything else I think of.

Similar Messages

  • Restore from cold backup (rac server)

    Hi All,
    Oracle version : 10g
    OS : SunOS dixie1 5.10 Generic_118855-36 i86pc i386 i86pc
    I am having cold backup of RAC server (2 nodes), I want to restore from cold backup.
    The problem is that : when i performed the cold backup using rman at that time Oracle was having 3 ASM diskgroups.But unforunately that disk is no more in use due to some fault.
    Now my question is how can i restore from the cold backup as when i'll restore from the cold backup this will ask for the same ASM diskgroups.Even more if i creates the same diskgroup with the same name and same configuration then my doubt is that rman will allow me to restore the same from the cold backup as ASM disk header changed now ?
    Thanks,
    Vipin

    VipinK wrote:
    Hi All,
    Oracle version : 10g
    OS : SunOS dixie1 5.10 Generic_118855-36 i86pc i386 i86pc
    I am having cold backup of RAC server (2 nodes), I want to restore from cold backup.
    The problem is that : when i performed the cold backup using rman at that time Oracle was having 3 ASM diskgroups.But unforunately that disk is no more in use due to some fault.
    Now my question is how can i restore from the cold backup as when i'll restore from the cold backup this will ask for the same ASM diskgroups.Even more if i creates the same diskgroup with the same name and same configuration then my doubt is that rman will allow me to restore the same from the cold backup as ASM disk header changed now ?
    Yes.You can do these and restore/recover your database.First you need startup your ASM instance then create your ASM disk groups and do following:
    1.Edit pfile and change controlfile location to diskgroup(Consder that +dgr1)
    2.Restore controlfile to this disk group using backup of controlfiles(you say that is cold backup)
    rman target /
    /*Instance  need starting up from pfile*/
    startup nomount ;
    /*then restore controlfile,give full path of controlfile from coldbackup*/
    restore controlfile from 'coldbackup_location\coltrolfile';
    alter database mount;
    catalog start with 'coldbackup_location';
    backup as copy database format  '+dgr1';
    switch database to copy;
    alter database open;

  • A question about restoring from cold backup(control file backup not clear)

    Hi,
    I had another question about restoring the cold backup. My database is in noarchivelog mode and after taking a consistent cold backup, all I need to do is to restore the backup right? -Why I got this question is because: when I backup my control file to trace, I see statements like this:-----
    -- Commands to re-create incarnation table
    -- Below log names MUST be changed to existing filenames on
    -- disk. Any one log file from each branch can be used to
    -- re-create incarnation records.
    -- ALTER DATABASE REGISTER LOGFILE '/uo1/app1/arch1_1_647102958.dbf';
    -- Recovery is required if any of the datafiles are restored backups,
    -- or if the last shutdown was not normal or immediate.
    RECOVER DATABASE
    -- Database can now be opened normally.
    ALTER DATABASE OPEN;
    My database is in noarchivelog mode now so don't know why these statements (of register the logfile) is there in the backup of control file? so when I restore the cold backup of this database, it will still work correct? (there is no logfile I have only CRD files in cold backup -no archive log files.)
    thanks
    Nirav

    Thanks for your inputs! It is most useful to me.
    Regards
    Nirav

  • ORA-00313: open failed for members during restore from COLD backup

    Hi all,
    I took a cold backup of an 11.1 database using RMAN (database in mount state).
    I used the following command to restore it:
    restored the controlfile and then
    RESTORE DATABASE FROM TAG 'TAGxxxxxxxxxx';
    Now I'm restoring it and it's taking too much time. When checking alert log it says:
    ORA-51106: check failed to complete due to an error. See error below
    ORA-48318: ADR Relation [HM_FINDING] of version=3 cannot be supported
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/oracle1/oradata/******/redo1_02.log'
    ORA-27037: unable to obtain file status
    HPUX-ia64 Error: 2: No such file or directory
    Additional information: 3
    RMAN is still in progress, why does it complain about redo?
    I'm not doing recovery since it was a cold backup.
    Thanks in advance.

    Hi Michael,
    Yes, it's the correct one because it says "full restore complete":
    ORA-00312: online log 1 thread 1: '/oracle1/oradata/******/redo1_01.log'
    ORA-27037: unable to obtain file status
    HPUX-ia64 Error: 2: No such file or directory
    Additional information: 3
    Tue Apr 30 14:38:14 2013
    Full restore complete of datafile 32 /oracle1/oradata/******/apr_sesm_index_01.dbf. Elapsed time: 1:25:42
    checkpoint is 12652187135448
    last deallocation scn is 12651877642745
    Tue Apr 30 15:38:04 2013
    Full restore complete of datafile 34 /oracle1/oradata/******/apr_stage_data_01.dbf. Elapsed time: 6:42:52
    checkpoint is 12652187135448
    last deallocation scn is 12651877637877
    thanks,

  • Database Restore from COLD Backup

    Dear all,
    I .m trying to restore a production database from a COLD backup. Before the COLD BAckup, we have take a HOT backup as usual and then shutdown the database to perform the Cold Backup.
    After restirong all the oracle files and arch redo log, i have tried to restart the datbase but it failed with the followgin error message:
    SVRMGR> connect internal
    Connected.
    SVRMGR> startup
    ORACLE instance started.
    Total System Global Area 625729520 bytes
    Fixed Size 69616 bytes
    Variable Size 133795840 bytes
    Database Buffers 491520000 bytes
    Redo Buffers 344064 bytes
    Database mounted.
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/usr/oracle/8.1.6/disk1/IF1/system01.dbf'
    SVRMGR> exit
    Server Manager complete.
    root@dbserver#su - oracle
    Sun Microsystems Inc. SunOS 5.8 Generic Patch October 2001
    Then i have recovered but it seems that the Oracle process do not started and here is what i have found in alert log file:
    Errors in file /usr/oracle/8.1.6/admin/IF1/bdump/if1_smon_609.trc:
    ORA-00600: internal error code, arguments: [4194], [52], [52], [], [], [], [], []
    Mon Mar 8 11:42:46 2004
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 29954 Reading mem 0
    Mem# 0 errs 0: /usr/oracle/8.1.6/disk2/IF1/redo1a.rdo
    SMON: terminating instance due to error 600
    Instance terminated by SMON, pid = 609
    WARNING! Recovering data file 1 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 2 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 3 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 4 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 5 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 7 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 8 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 9 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 26 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 27 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 29 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 31 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 34 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 36 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 40 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 43 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 49 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 53 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 54 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 55 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 58 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    Media Recovery Log
    Could someone explain to me what i did wrong?
    Thank you
    ORA-01113
    ORA-01110
    ORA-00600: internal error code, arguments: [4194], [52], [52], [], [], [], [], []

    Please do not confuse between the backup copies you have. Ensure that you have the latest copy whether cold or hot. If you have COLD copy then simply replace all the data files, redo log files, and the control files and start the database it should start. I do not understand your back up strategy because if you have a Hot backup then why do you need a cold backup. Please let me know in what mode your database is running?
    Regards,
    DJ

  • Partial restore from Cold backup

    Hi,
    I want to create a copy of our dev database to another server.
    We have Oracle 10.2.0.4 server running on Solaris 10 OS.
    This database is @ 120GB in size and has got lots of application data.
    Now I want to create a copy of this DB without having the application data.
    Can I do the following?
    1. Take cold backup of this database.
    2. copy the oracle binaries, controlfile, logfile to target server.
    3. copy the datafiles only for SYSTEM, UNDO, TEMP and SYSAUX tablespace to target.
    4. restore / create the new database? - will you pls provide me the steps for this?
    Thanks,
    DR

    Hi,
    In order to create a clone of your dev database trough the copy procedure you have to follow these steps:
    1. Take a cold backup of your database files (and i mean ALL the files: controlfile, data files, etc)
    2. Take a "cold" backup of oracle binaries (with your instance down, copy $ORACLE_HOME dir)
    3 You have to ensure you have the directory structure in the new server.
    4. The new server must accomplish with all the libraries requiered for clean installation (that's because you have to relink oracle binaries)
    5. Once the oracle binaries are in $ORACLE_HOME, run "relink all". If everything is fine, you don't have to see any errors; if not, check the log.
    6. After a succesful relink, you have to copy the database files on their corresponding directories.
    7. Start the instance.
    I know, it's not a friendly process, but it works.
    I offer you another way.
    1. Install another engine (same as your dev server).
    2. Clone your dev database with one of the following procedures:
    2.a. RMAN Clone
    2.b. Directly import with oracle data pump.
    regards

  • ORA-00314 -  Restoring from Cold Backup.  ( Redologs on Raw Disk startup)

    Greetings,
    We're running Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production ( Solaris Sparc )
    we've recently switched to redologs on raw disks to improve DB write performance. Have taken a cold backup of db , But db denies to open normally after restoration.
    Any ideas what could be wrong? and how to fix this?
    TIA,
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 1.0737E+10 bytes
    Fixed Size 1996520 bytes
    Variable Size 3640658200 bytes
    Database Buffers 7063207936 bytes
    Redo Buffers 31555584 bytes
    Database mounted.
    ORA-00314: log 1 of thread 1, expected sequence# doesn't match
    ORA-00312: online log 1 thread 1: '/dev/rdsk/c1t4d0s3'
    ORA-00312: online log 1 thread 1: '/dev/rdsk/c1t5d0s3'

    Try this ..
    First i create a backup of control file:
    SQL> alter database backup controlfile to trace;
    Database altered.
    Then i check udump directory. There are some trace files To find out which one contains control file, i simply make a text search :
    testdb oracle@aurora:/data06/app/oracle/admin/testdb/udump> grep 'CREATE CONTROLFILE REUSE DATABASE' *.*
    testdb_ora_181267.trc:CREATE CONTROLFILE REUSE DATABASE "testdb" NORESETLOGS NOARCHIVELOG
    testdb_ora_181267.trc:CREATE CONTROLFILE REUSE DATABASE "testdb" RESETLOGS NOARCHIVELOG
    I execute the commands which is included with CREATE CONTROLFILE REUSE DATABASE
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area 314572800 bytes
    Fixed Size 1302944 bytes
    Variable Size 106700384 bytes
    Database Buffers 205520896 bytes
    Redo Buffers 1048576 bytes
    SQL> CREATE CONTROLFILE REUSE DATABASE "testdb" RESETLOGS NOARCHIVELOG
    2 MAXLOGFILES 4
    3 MAXLOGMEMBERS 4
    4 MAXDATAFILES 1000
    5 MAXINSTANCES 1
    6 MAXLOGHISTORY 4544
    7 LOGFILE
    8 GROUP 1 '/data07/oradata/testdb/redo01.log' SIZE 50M,
    9 GROUP 2 '/data07/oradata/testdb/redo02.log' SIZE 50M,
    10 GROUP 3 '/data07/oradata/testdb/redo03.log' SIZE 50M
    11 DATAFILE
    12 '/data07/oradata/testdb/system01.dbf',
    13 '/data07/oradata/testdb/undo01.dbf',
    14 '/data07/oradata/testdb/sysaux01.dbf',
    15 '/data07/oradata/testdb/users01.dbf',
    16 '/data07/oradata/testdb/data01.dbf',
    17 '/data07/oradata/testdb/work01.dbf',
    18 '/data07/oradata/testdb/ascs01.dbf',
    19 '/data07/oradata/testdb/uccs_data01.dbf',
    20 '/data07/oradata/testdb/uccs_index01.dbf'
    21 CHARACTER SET WE8ISO8859P9
    22 ;
    Control file created.
    Then recover db.
    SQL> RECOVER DATABASE USING BACKUP CONTROLFILE

  • RMAN Restore from cold backup ?

    Hi ,
    I am trying to restore the database from production db using the RMAN cold Backup. Both the prod and test(Restore database) are on the same machine. And also I wanted to have the restore db name should be different.
    And the restore db name should be different. What are the options I have ?

    refer the thread:-
    RMAN Restore using RMAN COLD Backup!!
    RMAN Restore using RMAN COLD Backup!!

  • Restoration of cold backup on differnet server

    Question: 1) I have cold backup of sunday using User managed backup on A server & all archivelogs upto wednesday on A server.
    2) I transfer my cold backup & archivelogs on B server.
    3) Now I need to recover my B server's database upto wednesday.
    Note: 1) I have different location of datafiles,controlfiles.redologs on B server as of A server..
    2) OS is AIX 5.3
    3) Oracle databse version 10.2.0.4 on both server

    duplicate thread
    rman backup optimization question
    Aman....

  • Restoration of Cold backup on another server

    Hi ALL,
    Question: 1) I have cold backup of sunday using User managed backup on A server & all archivelogs upto wednesday on A server.
    2) I transfer my cold backup & archivelogs on B server.
    3) Now I need to recover my B server's database upto wednesday.
    Note: 1) I have same location of datafiles,controlfiles.redologs on B server as of A server..
    Please Help
    Regards

    user13364785 wrote:
    Hi ALL,
    Question: 1) I have cold backup of sunday using User managed backup on A server & all archivelogs upto wednesday on A server.
    2) I transfer my cold backup & archivelogs on B server.
    3) Now I need to recover my B server's database upto wednesday.
    Note: 1) I have same location of datafiles,controlfiles.redologs on B server as of A server..
    Please Help
    RegardsIf your OS is windows then you have to create OracleService using oradim utility,then create need directory for data/control/log files and according background/diag/trace also parameter file.
    After creating these directories startup mount database using STARTUP MOUNT PFILE='PFILELOCATION' then issue command RECOVER DATABASE USING BACKUP CONTROLFILE in this case oracle will read default location of archive logs and will apply,if this directory is different then main server then execute RECOVER DATABASE USING BACKUP CONTROLFILE UNTIL CANCEL and apply archive logs manually and open database with ALTER DATABASE OPEN RESETLOGS.

  • Recovery of Database -- Restore from Cold Backup

    Hi All
    I was trying to understand the possible failures so as to enhance my recovery capabilities of Oracle database 10.2.0.4.
    We take weekly hot back up of the database on every sunday including archive logs. Archive logs are also backed up when the log_archive_dest_1 disk space utilization grows beyond 80%. All the backup goes into an alterate disk made available on the host. The archive back up is triggered mostly twice a week, on one of the thursday/friday/Saturday depending on the redo generation in that week.
    Imagine we have a failure on thursday leading me to restore the complete database from backup taken on the earlier sunday. I also realise there is 1 archive log from tuesday missing and its not backed up for sure. I restore from backup and try to recover. As all the archive logs are available since Sunday till the point of failure except for that one missing file from Tuesday, I want to recover the database until the point of failure although there is one log sequence missing in archive destination. how can I do that? Is it possible? Please advice.
    I remember reading on net that recover database command can be hinted by an init parameter so as it does not check for sequece numbers and continue to apply archives (does not check sequence numbers) as they are available. But I am not able to recollect it exactly. while I was searching on net, I came to this forum hoping if some one knew it.
    Let me know if you know how to go about this. Thanks in advance.
    Sarat.

    You cannot skip an archivelog (there is no init parameter to do so).
    Think about this :
    Imagine that there is one very long transaction. A transaction that deletes or updates 1 million records. With the redo logs being, say, 100MB each, the transaction spans multiple redo logs.
    These redo logs are archived as, say, sequence #121 to 128.
    Supposing that sequnece #123 is deleted by mistake.
    Can you recover the database with sequence# 121, 122, 124-128 ? Can that transaction be consistent ?
    OR think about this :
    A redo log file is 99% full. A transaction for 1000 rows begins. All the redo entries for that transaction do not fit into that last 1%. The transaction spans into the next redo log file.
    Can recovery be done with either of these missing ?
    If you think through these scenarios, you will see that there will almost always be transactions spanning redo logs. That means, that you cannot skip redo logs during recovery.
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • ORA-12560 in database restore cold backup

    Hi guys,
    I'm trying to restore a cold backup (WINDOWS NT) and I did the following:
    1. Restore the datafiles in a specific location, according to the directory that the files were before.
    2. Create the service:
    C:\>oradim -new -sid ORCL -startmode auto -pfile C:\oracle\admin\ORCL\pfile\initORCL.ora
    3. startup the listener with the instance.
    4. When I try to connect as follows, I receive the following error:
    C:\>connect "/as sysdba"
    'connect' is not recognized as an internal or external command,
    operable program or batch file.
    C:\>sqlplus "/as sysdba"
    SQL*Plus: Release 9.2.0.3.0 - Production on MiΘ Ago 13 17:20:32 2003
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Enter user-name:
    C:\>
    What am I missing???
    TIA.

    You may be hitting bug 4598734. See Metalink Note:359428.1 - Windows: Starting the instance service fails to start the database in Server rel. 10g

  • Partition Restore Cold Backup Different System and Different Version DB

    Is it possible, can we restore the cold backup at different database version and different operating system(but same ENDIAN_FORMAT) ????????
    My original system HP-UX (64-bit) and database version 10.2.0.3.0 i have cold backup and i want to partion restore on Linux Redhot 5.5 (64-bit), database version 10.1.0.4.0 .
    If it is possible. How can i do this.

    My original system HP-UX (64-bit) and database version 10.2.0.3.0 i have cold backup and i want to partion restore on Linux Redhot 5.5 (64-bit), database version 10.1.0.4.0 .1. AFAIK you can not do it i mean wiht cold backup move from HP to linux
    2. You can try to use exp-imp if you want to change db version.
    See below notes:
    Master Note For Oracle Database Upgrades and Migrations [ID 1152016.1]
    Different Upgrade Methods For Upgrading Your Database [ID 419550.1]
    Regard
    Helios

  • Restore cold backup

    Hi
    After restoring the cold backup
    I need to recreate the controlfile.
    Do I need to recover afterwards? since I created new controlfile.
    or just
    alter database open;
    Oracle 9i, user managed backups

    scofield wrote:
    Hi
    After restoring the cold backup
    I need to recreate the controlfile.
    Do I need to recover afterwards? since I created new controlfile.
    or just
    alter database open;
    Oracle 9i, user managed backupsWe have said couple of things many times but seems that people don't really care.
    1) Always mention complete thing/story, not just a snippet of it.
    2) Always tell the complete version, 9202 9208.
    3) Check the oracle docs,
    [Restoring and Re-Creating Control Files|http://download.oracle.com/docs/cd/B10501_01/server.920/a96572/osrestore.htm#26488]
    HTH
    Aman....

  • Cold backup restore to a different bit level

    Hi all. I am planning for a coldback restore between two databases. The source db is 10.2.0.3 on 32-bit server Windows 2003 and the destination db is 10.2.0.4 on windows 64-bit. Is it possible to perform this restore? Also is RMAN restore possible? Thanks for any responses.

    Hi, I performed a restore of cold backup from 10.2.0.3 database to 10.2.0.4 database on another server. I am receiving this error:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-01159: file is not from same database as previous files - wrong database id
    I am restoring only the schema specific datafiles from the old database and not system, sysaux files .. I understand that there is a mismatch here because the source datafiles are not compatible with the new system files. Any idea what can be done here to get around this error? I am trying to perform a clone of the database into another server. The database name is same.

Maybe you are looking for

  • Alternative to Anonymous/Inner when Adding Behavior to Swing Elements?

    Hello! I am new to Java and have been trying to teach myself the basics by writing a Swing "JApplet". In adding mouse-click behavior to elements, I have been able to get the desired results by using anonymous "inner" classes. However, I am wondering

  • How to get the only the last raw of the table

    Hello All, While fetching a table into internal table, how to get only the last record of the table.? Thanks and Regards, Pradeep

  • Replacing a pattern in a file

    Hi., In my file I want to replace the occurance of the VARIABLE_1 with VARIABLE_2 in a particular line.. HERE is the Example: # sed -e 's/multimediaGroup type="media" dbid=$a/multimediaGroup type="media" dbid=$b /' abc>abc.new here I am replacing the

  • Changed icon now iPhoto does not respond

    Hi, Can anyone help me, I went a bit silly changing my folder icons, but have now found that iPhoto does not work. I did change the icon for my pictures folder, and the data is still there, but now when I try to open iPhoto it just says 'loading libr

  • Can't access Google pages

    Has anyone else had trouble accessing gmail, Google search engine, or anything else Google-related over the past three days? I can't load anything. When I try with Safari I get: The error was: "lost network connection" (NSURLErrorDomain:-1005) I have