Restore missing datafile

Hello,
I clone a database to a new DRP Server, I create the control file to reorganice the datafiles and open the database.
Now I see that 2 datafiles have a quote en the name (xxxx.dbf´) and the backup software didn´t take them.
If I copied this files from production to DRP (I put the tablespace in backup mode, copy this files and then put the tablespace in end backup mode)
and then rename the datafile (alter database create datafile file '/u01/oracle/product/10.2.0/db_1/dbs/MISSING00047' AS '/datos2/oradata/CNA_1/TH_OMEART04.dbf';)
Does it work ?
The status in the v$datafile is "RECOVER"
Thank for you help.
Adrian

If you have flashback on you can flashback to before the resetlogs and add the files.
If not, then you can't add the datafile back, so you may as well drop it.
alter database datafile 'xxxxx' offline drop;

Similar Messages

  • How do i restore missing files for i work 09 as it is asking me to reinstall but cant find the disk?

    how do i restore missing files for i work 09 as it is asking me to reinstall but cant find the disk?

    Hello Jessica472,
    It sounds like you need to recover some missing files but do not have access to the iWork '09 disc you used to install it. If you have a Time Machine backup and know what files you need, you can use the "Restoring specific files or folders" section of the following article to restore them:
    Mac Basics: Time Machine backs up your Mac
    If you do not have Time Machine, you will need the disc to reinstall the software suite.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Restore single datafile from source database to target database.

    Here's my issue:
    Database Release : 11.2.0.3 across both the source and targets. (ARCHIVELOG mode)
    O/S: RHEL 5 (Tikanga)
    Database Storage: Using ASM on a stand-alone server (NOT RAC)
    Using Oracle GG to replicate changes on the Source to the Targets.
    My scenario:
    We utilize sequences to keep the primary key in tact and these are replicated utilizing GG. All of my schema tables are located in one tablespace and datafile and all of my indexes are in seperate tablespace (nothing is being partitioned).
    In the event of media failure on the Target or my target schema being completely out of whack, is there a method where I can copy the datafile/tablespace from my source (which is intact) to my target?
    I know there are possibilites of
    1) restore/recover the tablespace to a SCN or timestamp in the past and then I could use GoldenGate to run the transactions in (but this could take time depending on how far back I need to recover the tablespace and how many transactions have processed with GG) (This is not fool-proof).
    2) Could use DataPump to move the data from the Source schema to the Target schema (but the sequences are usually out of order if they haven't fired on the source, get that 'sequence is defined for this session message'). I've tried this scenario.
    3) I could alter the sequences to get them to proper number using the start and increment by feature (again this could take time depending on how many sequences are out of order).
    I would think you could
    1) back up the datafile/tablespace on the source,
    2)then copy the datafile to the target.
    3) startup mount;
    4) Newname the new file copied from the source (this is ASM)
    5) Restore the datafile/tablespace
    6) Recover the datafile/tablespace
    7) alter database open;
    Question 1: Do I need to also copy the backup piece from the source when I execute the backup tablespace on the source as indicated in my step 1?
    Question 2: Do I need to include "plus archivelog" when I execute the backup tablespace on the source as indicated in my step 1?
    Question 3: Do I need to execute an 'alter system switch logfile' on the Target when the recover in step 6 is completed?
    My scenario sounds like a Cold Backup but running with Archivelog mode, so the source could be online while the database is running.
    Just looking for alternate methods of recovery.
    Thanks,
    Jason

    Let me take another stab at sticking a fork into this myth about separating tables and indexes.
    Let's assume you have a production Oracle database environment with multiple users making multiple requests and the exact same time. This assumption mirrors reality everywhere except in a classroom where a student is running a simple demo.
    Let's further assume that the system looks anything like a real Oracle database system where the operating system has caching, the SAN has caching, and the blocks you are trying to read are split between memory and disk.
    Now you want to do some simple piece of work and assume there is an index on the ename column...
    SELECT * FROM emp WHERE ename = 'KING';The myth is that Oracle is going to, in parallel, read the index and read the table segments better, faster, whatever, if they are in separate physical files mapped by separate logical tablespaces somehow to separate physical spindles.
    Apply some synapses to this myth and it falls apart.
    You issue your SQL statement and Oracle does what? It looks for those index blocks where? In memory. If it finds them it never goes to disk. If it does not it goes to disk.
    While all this is happening the hundreds or thousands of other users on the database are also making requests. Oracle is not going to stop doing work while it tries to find your index blocks.
    Now it finds the index block and decides to use the ROWID value to read the block containing the row with KING's data. Did it freeze the system? Did it lock out everyone else while it did this? Of course not. It puts your read request into the queue and, again, first checks memory to see if it needs to go to disk.
    Where in here is there anything that indicates an advantage to having separate physical files?
    And even if there was some theoretical reason why separate files might be better ... are they separate in the SAN's cache? No. Are they definitely located on separate stripes or separate physical disks? Of course not.
    Oracle uses logical mappings (tables and tablespaces) and SANS use logical mappings so you, the DBA or developer, have no clue as to where anything physically is located.
    PS: Ouija Boards don't work either.

  • How to fix a missing datafile with status recover

    Dear all,
    We have Oracle 10 database. And we create a datafile by mistake, and also by mistake we drop the datafile.
    Now the condition is, the datafile is missing but still mentioned in control file, and produce an error every time we do a backup since there's a file missing.
    If we select from $vdatafile, the datafile status is recover.
    We tried to offline the datafile, but its no help.
    How to fix this?
    Thanks.

    Sorry to bump this thread again,
    I tried to get the same error in a Oracle sandbox server.
    I deleted a datafile, so i got a missing datafile, and then i offlined the datafile.
    Then, i created a backup control file and deleted line that refer to the error datafile, and then run it as a sql script to create a new control file.
    But when a new control file was created, the control file got a missing datafile and offlined it automatically.
    This is the control file backuped to a trace file, please notice datafile DATA00001
    STARTUP NOMOUNT
    CREATE CONTROLFILE REUSE DATABASE "XE" NORESETLOGS  NOARCHIVELOG
        MAXLOGFILES 16
        MAXLOGMEMBERS 3
        MAXDATAFILES 100
        MAXINSTANCES 8
        MAXLOGHISTORY 292
    LOGFILE
      GROUP 1 'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_58SZY41W_.LOG'  SIZE 50M,
      GROUP 2 'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_58SZY59P_.LOG'  SIZE 50M
    -- STANDBY LOGFILE
    DATAFILE
      'C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF',
      'C:\ORACLEXE\ORADATA\XE\UNDO.DBF',
      'C:\ORACLEXE\ORADATA\XE\SYSAUX.DBF',
      'C:\ORACLEXE\ORADATA\XE\USERS.DBF',
      'C:\ORACLEXE\ORADATA\XE\DATA00001',
      'C:\ORACLEXE\ORADATA\XE\DATA00002',
      'C:\ORACLEXE\ORADATA\XE\DATA00003'
    CHARACTER SET AL32UTF8
    -- Take files offline to match current control file.
    ALTER DATABASE DATAFILE 'C:\ORACLEXE\ORADATA\XE\DATA00001' OFFLINE DROP;
    and so on...
    This is the script to recreate
    STARTUP NOMOUNT
    CREATE CONTROLFILE REUSE DATABASE "XE" NORESETLOGS  NOARCHIVELOG
    DATAFILE
      'C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF',
      'C:\ORACLEXE\ORADATA\XE\UNDO.DBF',
      'C:\ORACLEXE\ORADATA\XE\SYSAUX.DBF',
      'C:\ORACLEXE\ORADATA\XE\USERS.DBF',
      'C:\ORACLEXE\ORADATA\XE\DATA00002',
      'C:\ORACLEXE\ORADATA\XE\DATA00003'
    CHARACTER SET AL32UTF8
    This is the result
    STARTUP NOMOUNT
    CREATE CONTROLFILE REUSE DATABASE "XE" NORESETLOGS  NOARCHIVELOG
    DATAFILE
      'C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF',
      'C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\MISSING00005',
      'C:\ORACLEXE\ORADATA\XE\DATA00002',
      'C:\ORACLEXE\ORADATA\XE\DATA00003'
    CHARACTER SET AL32UTF8
    -- Take files offline to match current control file.
    ALTER DATABASE DATAFILE 'C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\MISSING00005' OFFLINE;
    and so on..
    Edited by: Fendhy Ongko on Sep 11, 2009 12:16 PM

  • How do i restore missing iTunes music from my time machine

    how do i restore missing itune files from timemachin backup

    Time Machine tip:
    http://pondini.org/TM/Home.html
    How do I view or restore selected items?
    http://pondini.org/TM/15.html

  • How can I restore missing applications from my ipad

    how can I restore missing purchases from my ipad

    You can re download them from the App Store.  Open the App Store and tap the 'purchased' tab.  Select 'Not on this iPad' and a list will appear with all purchases you've made.

  • MISSING datafile

    Dear Experts,
    I am working on ORACLE 10g(Windows XP), database in archivemode
    I have backup controlfile to trace after that I added new tablespace tb1(OMF), now I delete all the control files and recreate the controlfile using script generated in trace.
    But I am unable to recover the datafile(TB1),
    SQL> alter database create datafile 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\MIS
    SING00005' as 'C:\oradata\datafile.dbf';
    alter database create datafile 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\MISSING0
    0005' as 'C:\oradata\datafile.dbf'
    ERROR at line 1:
    ORA-01178: file 5 created before last CREATE CONTROLFILE, cannot recreate
    ORA-01111: name for data file 5 is unknown - rename to correct file
    ORA-01110: data file 5: 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\MISSING00005'
    How to recover datafile ?
    Thanks & Regards
    Sunil Kumar

    user637769 wrote:
    Dear Experts,
    I am working on ORACLE 10g(Windows XP), database in archivemode
    I have backup controlfile to trace after that I added new tablespace tb1(OMF), now I delete all the control files and recreate the controlfile using script generated in trace.
    But I am unable to recover the datafile(TB1),
    SQL> alter database create datafile 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\MIS
    SING00005' as 'C:\oradata\datafile.dbf';
    alter database create datafile 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\MISSING0
    0005' as 'C:\oradata\datafile.dbf'
    ERROR at line 1:
    ORA-01178: file 5 created before last CREATE CONTROLFILE, cannot recreate
    ORA-01111: name for data file 5 is unknown - rename to correct file
    ORA-01110: data file 5: 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\MISSING00005'
    How to recover datafile ?
    Thanks & Regards
    Sunil KumarHi, actually existis missing datafile in disk or you deleted this file?(existis this file C:\oradata\datafile.dbf or not?)

  • Why is Oracle RMAN restoring a datafile to a different diskgroup?

    Hello,
    When I was trying an RMAN restore of a datafile, I found it is restoring the datafile to a new location. Why is Oracle restoring a datafile to a different diskgroup instead of restoring to the original diskgroup where the datafile was originally present?
    1) I have a datafile '+DATA3/slob1/datafile/undotbs2.260.819992871' which is on +DATA3 diskgroup
    2) I am taking a backup on to +FRA diskgroup
    3) I then offline and delete the datafile 5 using asmcmd to simulate the loss of a datafile
    4) I perform restore and recover of datafile 5 from the backup set on +FRA
    5) Unfortunately the datafile got restored on to +FRA instead of +DATA3. I realize that the file name can change because it is going to be a new file on ASM but I would assume this will be on the same diskgroup atleast since the control file has it pointing to '+DATA3/slob1/datafile/undotbs2.260.819992871' before restoration.
    When I tested on file system, this gets restored on to file system correctly.
    Anyone has any idea why the datafile was restored on to +FRA instead of +DATA3?
    Below is the screen output of what I did.
    [oracle@ltc-rac02[SLOB11]:/home/oracle ]$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Thu Jul 11 17:09:21 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: SLOB1 (DBID=4051414893)
    RMAN> report schema;
    using target database control file instead of recovery catalog
    Report of database schema for database with db_unique_name SLOB1
    List of Permanent Datafiles
    ===========================
    File Size(MB) Tablespace           RB segs Datafile Name
    1    720      SYSTEM               ***     +DATA3/slob1/datafile/system.258.819992865
    2    590      SYSAUX               ***     +DATA3/slob1/datafile/sysaux.259.819992869
    3    24430    UNDOTBS1             ***     +DATA3/slob1/datafile/undotbs1.256.819992725
    4    5        USERS                ***     +DATA3/slob1/datafile/users.262.819992873
    5    25       UNDOTBS2             ***     +DATA3/slob1/datafile/undotbs2.260.819992871
    6    10824    IOPS                 ***     +DATA3/slob1/datafile/iops.257.820445551
    RMAN> backup as backupset datafile 5 format '+FRA';
    Starting backup at 11-07-2013 17:10:03
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=687 device type=DISK
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    input datafile file number=00005 name=+DATA3/slob1/datafile/undotbs2.260.819992871
    channel ORA_DISK_1: starting piece 1 at 11-07-2013 17:10:04
    channel ORA_DISK_1: finished piece 1 at 11-07-2013 17:10:05
    piece handle=+FRA/slob1/backupset/2013_07_11/nnndf0_tag20130711t171003_0.256.820516205 tag=TAG20130711T171003 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    Finished backup at 11-07-2013 17:10:05
    RMAN> SQL 'alter database datafile 5 offline';
    using target database control file instead of recovery catalog
    sql statement: alter database datafile 5 offline
    RMAN> quit
    Recovery Manager complete.
    [oracle@ltc-rac02[SLOB11]:/home/oracle ]$ asmcmd rm +DATA3/slob1/datafile/undotbs2.260.819992871
    [oracle@ltc-rac02[+ASM2]:/home/oracle ]$ asmcmd ls -l  +DATA3/slob1/datafile/undotbs2.260.819992871
    ASMCMD-08002: entry 'undotbs2.260.819992871' does not exist in directory '+DATA3/slob1/datafile/'
    [oracle@ltc-rac02[+ASM2]:/home/oracle ]$ . oraenv
    ORACLE_SID = [+ASM2] ? SLOB11
    The Oracle base remains unchanged with value /u01/app/oracle
    [oracle@ltc-rac02[SLOB11]:/home/oracle ]$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Thu Jul 11 17:12:27 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: SLOB1 (DBID=4051414893)
    RMAN> report schema;
    using target database control file instead of recovery catalog
    Report of database schema for database with db_unique_name SLOB1
    List of Permanent Datafiles
    ===========================
    File Size(MB) Tablespace           RB segs Datafile Name
    1    720      SYSTEM               ***     +DATA3/slob1/datafile/system.258.819992865
    2    590      SYSAUX               ***     +DATA3/slob1/datafile/sysaux.259.819992869
    3    24430    UNDOTBS1             ***     +DATA3/slob1/datafile/undotbs1.256.819992725
    4    5        USERS                ***     +DATA3/slob1/datafile/users.262.819992873
    5    0        UNDOTBS2             ***     +DATA3/slob1/datafile/undotbs2.260.819992871
    6    10824    IOPS                 ***     +DATA3/slob1/datafile/iops.257.820445551
    RMAN> restore datafile 5;
    Starting restore at 11-07-2013 17:12:43
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=687 device type=DISK
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00005 to +DATA3/slob1/datafile/undotbs2.260.819992871
    channel ORA_DISK_1: reading from backup piece +FRA/slob1/backupset/2013_07_11/nnndf0_tag20130711t171003_0.256.820516205
    channel ORA_DISK_1: piece handle=+FRA/slob1/backupset/2013_07_11/nnndf0_tag20130711t171003_0.256.820516205 tag=TAG20130711T171003
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    Finished restore at 11-07-2013 17:12:46
    RMAN> report schema;
    Report of database schema for database with db_unique_name SLOB1
    List of Permanent Datafiles
    ===========================
    File Size(MB) Tablespace           RB segs Datafile Name
    1    720      SYSTEM               ***     +DATA3/slob1/datafile/system.258.819992865
    2    590      SYSAUX               ***     +DATA3/slob1/datafile/sysaux.259.819992869
    3    24430    UNDOTBS1             ***     +DATA3/slob1/datafile/undotbs1.256.819992725
    4    5        USERS                ***     +DATA3/slob1/datafile/users.262.819992873
    5    25       UNDOTBS2             ***     +FRA/slob1/datafile/undotbs2.257.820516365
    6    10824    IOPS                 ***     +DATA3/slob1/datafile/iops.257.820445551
    RMAN> recover datafile 5;
    Starting recover at 11-07-2013 17:13:37
    using channel ORA_DISK_1
    starting media recovery
    media recovery complete, elapsed time: 00:00:01
    Finished recover at 11-07-2013 17:13:39
    RMAN> SQL 'alter database datafile 5 online';
    sql statement: alter database datafile 5 online
    Thanks,
    Rijesh

    Hello,
    Can you check what is the value set for the parameter "db_create_file_dest" on the database ?
    Regards,
    Shivananda

  • OMF enabled but still receiving ORA-02199: missing DATAFILE/TEMPFILE clause

    Any Ideas?
    SQL> show parameter DB_CREATE
    NAME TYPE VALUE
    db_create_file_dest string /path/to/datafiles
    db_create_online_log_dest_1 string /path/to/redo
    SQL> create tablespace test;
    create tablespace test
    ERROR at line 1:
    ORA-02199: missing DATAFILE/TEMPFILE clause
    Note this normally works but I ran into a problem with a script and pinpointed it to a problem with the system not recognizing that it should use OMF.
    - There is plenty of space on the filesystems

    _omf was disabled by accident by another team.                                                                                                                                                                                                                   

  • Missing datafiles when trying to restore DB

    Hi,
    For some reason when running duplicate database command, rman does not find few datafiles on my LAST weekly LEVEL 0 backup ,
    and tried to restore them from the prevoius LEVEL 0. the datafiles are stored on tapes and not on the disk.
    I would like to know if / what command i need to execute using rman , before taking another LEVEL 0 backup.
    Thanks

    Hi Yoav,
    I would like to know if / what command i need to execute using rman , before taking another LEVEL 0 backup.Maybe you can check the status of the datafiles in v$datafile and v$datafile_header?
    Was there a reason why some datafiles were not backed up? Was it a failure on the backup server side (like no empty tapes)?
    Do you have a logfile with an error?
    You should be able to run a new level 0 without any problem if all is OK.
    (You do not have to do a clean up if that's your question.)
    Regards,
    Tycho

  • Missing datafile after cloing oracle EBS from production to test

    Good Day
    I have done a restore from the production system to the test system some time ago . Today I got an error on my test system saying ORA-00376: file 375 cannot be read at this time . After checking I found that the file seems to be missing on the test environment .
    SQL > select file_name from dba_data_files where file_id=375 ;
    /gldb11i/devdb/9.2.0/dbs/MISSING00375
    So I got the name from production and since the file seems to be avilabe in test I did the rename as follows :
    SQL> alter database rename file '/gldb11i/devdb/9.2.0/dbs/MISSING00375' to '/gld
    b11i/oradevd/oradata/dev/gld16.dbf' ;
    Database altered.
    But when I tryed to recover the file I got the error .
    SQL> recover datafile '/gldb11i/oradevd/oradata/dev/gld16.dbf'
    ORA-00283: recovery session canceled due to errors
    ORA-01110: data file 375: '/gldb11i/oradevd/oradata/dev/gld16.dbf'
    ORA-01122: database file 375 failed verification check
    ORA-01110: data file 375: '/gldb11i/oradevd/oradata/dev/gld16.dbf'
    ORA-01206: file is not part of this database - wrong database id
    Ofcourse that is becuse my test dataabse was renamed from production name fmprod to test name fmdev .
    Is there any way to recover the file ? . I have all the archive logs avilable . Can nid change the database id in the file if it is only one file ?
    Why did I not get any errors when I was doing the post cloneing process ?
    Please note my databse is versio 9.2.0.6
    Many thanks to all

    1. Use Transportable feature to transport the remaining datafile from production to test.
    How can I do that without stopping production or making it read only .
    2. Reclone only that tabespace from Production to test.
    How , I used the oracle provided scripts for the cloning process ie . adcfgclone.pl
    3. Depending on the size of data contents, manually drop and recreate the tablespace in test, export contents from Production, import into test.
    I am worried about the data consistancy . Will the database be consistant it I do that there might be tables on other tablespaces related to this tablespace
    Thanks

  • Missing datafile from system-tablespace?

    Hello!
    We've got a major power-loss yesterday. After that our database does not start correct.
    I got the message:
    ORA-00600: Interner Fehlercode, Argumente: [kccpb_sanity_check_2], [9577], [9542], [0x0], [], [], [], []
    After that I searched the forum and recreated the controlfiles and started recover database.
    Now I always got the following error-message:
    ORA-01173:Data dictionary indicates missing data file from system tablespace
    I'm not really shure if I created another datafile for that tablespace. Even though there is no other datafile in the "oradata-directory".
    Does anyone know how to go further?
    Regards, Sascha
    Message was edited by:
    Sorehead

    Hello,
    Need help very quickly please!
    I have the same error message. ORacle 10.2.0.3 AIX 5.3 on a datawarehouse.
    I need to recover one tablespace from the database.
    I restored my system tablespace and the data tablespace on a test environment and recreated the controlfile. I recovered my database. Recover OK and when I open the database resetlogs the message is :
    Thread 1 opened at log sequence 1
    Current log# 2 seq# 1 mem# 0: /oradata5/RL_G2_1.ORA
    Successful open of redo thread 1
    Thu Feb 18 13:59:47 2010
    SMON: enabling cache recovery
    Thu Feb 18 13:59:47 2010
    Errors in file /opt/app/oracle/admin/MKT1/udump/mkt1_ora_2318672.trc:
    ORA-00704: bootstrap process failure
    ORA-00604: error occurred at recursive SQL level 2
    ORA-01173: data dictionary indicates missing data file from system tablespace
    Thu Feb 18 13:59:47 2010
    Error 704 happened during db open, shutting down database
    USER: terminating instance due to error 704
    Instance terminated by USER, pid = 2318672
    ORA-1092 signalled during: alter database open resetlogs...
    Thanks for help, production data ;)

  • How to I restore missing StickiesDatabase file from Time Machine?

    I have looked all over for a solution to this. Basically, I am trying to restore a stickiesdatabase file from a Time Machine backup. I put in a new HD and am slowly pulling files over in pieces. The thing is, the backup that had the stickies I want to restore did not seem to back that file up. I navigated to user/library to find StickiesDatabase, and it is not there, even though I went into the terminal and unhid invisible folders and files (other greyed out invisibles showed up so I know it worked). But here's the weird thing, when looking on my current hard drive, I could find that file for my new, empty stickies just fine. Also, I went further to a Time Machine backup from a year ago, and I found the stickiesdatabase file in the library as well. It's like these last two backups I did that had the stickies I want did not include that file in the backup. Any thoughts? Am I doomed? Oh, and I am currently on Mavericks and the backup in question was also Mavericks. And I have a 2008 Macbook Pro if that info is helpful.

    There is another, huge thread on TM backups on this forum and exactly this issue has come up. Sadly, no one has a perfect answer. I do not have a spare drive available to test this myself, but I would try something along these lines.
    -- Ask TM to restore your full Library and the Masters, if Referenced. I believe that TM will give you the option to not overwriting your current Library, but be careful. However you do, stick this "Recovery Library" out somewhere. (Yes, this is gonna take some time, run it overnight.)
    -- Open "Recovery" with Aperture and select the Project(s) that contain the images you want. Export these "Projects as New Library."  (Don't export as either Versions or Masters.) I would select the box "Consolidate Masters" and I would probably discard the Previews. Stick this somewhere.
    -- Now open "Original Library" and import the "Library" that you exported back into your Original Library as something like "Stupid Lost Project."
    -- You should now have a Project full of adjusted, and adjustable images. (N.B. this is basically the technique I use with my laptop. I shoot, load into AP3 on the laptop, noodle, and then export/import into AP3 on the MacPro when I get home.)
    -- Clean up. (Delete "Recovery", convert the recovered Project back to Referenced Masters, if you wish, etc.)
    One good argument for never throwing those old USB drives away.
    I have missed some of the details in the process, so be careful, but I believe that this will work until Apple lets us run Aperture inside Time Machine.
    Best wishes.

  • Is there a way to restore missing lightroom files without the original files?

    I am currently trying to reedit some old work, unfortunately, I lost the memory card with all the original files, is there a way I can restore the files in LR without the originals? I figure since the program still has some of the data and can show us a preview of the images, there should be a way around this.

    clow54 wrote:
    I am currently trying to reedit some old work, unfortunately, I lost the memory card with all the original files, is there a way I can restore the files in LR without the originals? I figure since the program still has some of the data and can show us a preview of the images, there should be a way around this.
    I assume you copied the original memory card files to HDD during import into LR. Did you later move the files or the containing folder to another location from outside LR and now they are missing?
    https://helpx.adobe.com/lightroom/help/locate-missing-photos.html

  • HT1451 How to restore missing playlists

    I was updating to iOS 7 on my ipad 2. I did the upgrade through iTunes. First, I did a a complete sync and then did the upgrade.
    After the iOS 7 upgrade and the restore to my iPad, I noticed that about half of my playlists were missing in iTunes. All my music is still in iTunes but playlists are gone.
    Anything I can do to get the playlists back?

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

Maybe you are looking for

  • If I deauthorise my iPhone and put it on a new Apple ID, will I lose my apps and game scores?

    My step-dad has bought yet another Apple product, and we're now over the 10 devices limit. He wants me to switch to my own ID instead, but will I loose all the paid apps I have bought, and all my game scores (some of them have taken me ages!!)????? T

  • The keyboard of my computer doesn't work

    **** apple community, i have a very serius problem with my macbook. Today, i iniciated my computer to start working as usual, but i discovered that my computer do not recognize the keyboard or the trackapd that are attached to it. These are not exter

  • Why can I not install Windows 8 on my Mac?

    Hello, I have been trying to install Windows on my Mac lately, and whenever I try to partition the drive, I hit a wall. It claims that I need to reformat my primary partition and try again. I have already done this and restored all of my data. My com

  • Attempted to connect to Acer 24" monitor not possible

    I tried recently with the supplied adapter to connect to a Acer 24" monitor but I got "device not supported" How do I fix this!? Cheers Paul

  • Validate w/ schema ---Problem setting up JAXP1.2 jar

    Sorry, I may just be being a retard I am trying to validate an xml document with a schema. I know that I need to use a JAXP 1.2 parser. I am using Eclipse 2.1 right now, but I tried this through the command prompt to see if it was something I was doi