(URGENT) How to recover tablespace/datafile from an old backup ?

Hello,
I'm in charge of installation of IBM Websphere Commerce with an Oracle DB.
When I installed this software I do a "shutdown immediate" and copy all the files (data, ctl & redo) in an other directory a month ago.
I have some issues on a specific tablespace and I'd like to recover this tablespace so that my tablespace will be in the same state a month ago.
When I try "recover automatic tablespace data" Oracle restored and reload all the logs.
How can I restore with that old tablespace and find the content of september or is it possible to restore a tablespace without reload the redo logs ?
Thanks for any precious help.
Guillaume

If it was a complete set of files after shutdown immediate, you can mount that database on some other server with same structure and check the data in the tablespace. I dont see a need to load the old tablespace in the current database just to see some values.
By restoring the old tablespaces, you might even run into some referentials (if any) problem.

Similar Messages

  • How I restore the iPhone from an old backup?

    How I restore the iPhone from an old backup? When I restore just appear the 3 last backups. I want one before these.

    If you don't see them, you don't have them to restore.

  • How to recover RSS feeds from Time Machine backup?

    Hi,
    I have deleted an RSS feed and so even his messages are gone. Then I have tried to recover it from my TM backup but I just discovered that TM shows me the RSS feed but it does not allow me to select them to recover.
    Is it correct?
    Is there any way to recover that?
    thanks!

    Thanks for the response BDAqua, I did use Migration Assistant to transfer her data from the SuperDuper backup.  Are you suggesting that I use Migration Assistant to transfer data from the Time Machine backup?  Will that result in duplication?  Sorry, but I've no experience at all with Time Machine backups and don't know whether you can 'pick and choose' what to restore from the Time Machine using Migration Assistant.
    Cheers
    Tricia

  • How to recover Safari bookmarks from a previous backup?

    Hello,
    After about six months, I had to do a complete factory restore to resolve a nasty 3G connectivity problem. The restore to factory settings was a pain but it worked. Most of my apps have desktop versions to store crucial data files, but I forgot to save my Safari bookmarks. Is there any way I can selectively go to the past backup data files and find my bookmark links? I don't want to restore to a past backup in case it reintroduces the same problem that messed up my 3G connectivity, though I am tempted.
    I tried opening some of the data backups in textedit but of course all I could see was code.
    Thanks for any help.
    Jim

    No, a backup and restore is either all or nothing. You can't selecte what to backup or to restore.
    Message was edited by: lllaass

  • HT5262 how to restore my iPad from an old backup?

    My iPad broke but it was backed up.
    I eventually got a replacement iPad, but when I click on the Restore button, it does not find my backup, only the sync I performed on the new iPad.
    I know the backup is there since I can see the folder and it is not empty:
    C:\Users\bitola88\AppData\Roaming\Apple Computer\MobileSync\Backup
    Please help!

    Restore from iTune Backup
    1. Settings>General>Reset>Erase all content and settings
    2. You'll be asked twice to confirm
    3. You'll see Apple logo and progress bar
    4. You'll see a big iPad logo on screen
    5. Configuration start
    6. Set language
    7. Set country
    8. Select Network and input Password>Join
    9. Enable Location Service>Next
    10. You'll be given 3 options (a) Setup as New iPad (b) Restore from iCloud Backup (c) Restore from iTune Backup
    11. Select Restore from iTune Backup
    12. You will see picture of USB cable pointing towards iPad
    13. Connect iPad to iTune (make sure iTune is on standby)
    14. Tap Continue (computer)
    15. Restore iPad from Backup (computer)
    16. See progress bar with estimated time (computer)
    17. See Restore in Progress on iPad
    18. See Apple logo
    19. See Apple and Progress Bar
    20. Slide to Unlock
    21. Copying Apps back to iPad (computer)
    22. You'll see Loading/Installing/Waiting below the Apps (iPad)
    23. Sync Music/Podcast/Movies to iPad (computer)
    24. Sync completed (computer)

  • How to recover a library from a laptop that doesn't work

    My laptop died(my brother in law spilled cola on it). I have a new one but I don't know how to recover my library from the old one:( it doesn't start,the GeekSquad told me the motherboard is the problem(too expensive) but I can recover the library if I contact iTunes. So I was thinking to check the forum first,maybe somebody had the same problem.
    Thank you

    If you have everything on an iPod, you can get it back from that, too.
    I don't know if I would trust the Geek Squad person who said contact itunes.
    iTunes store support will not help you with hardware!
    Maybe someone else on the squad could get your entire itunes folder off the hard drive.

  • How to move a specific tablespace datafile from one directory to another

    Database: 10.2.0.1
    OS : Generic
    Problem Description : How to move a specific tablespace datafile from one directory to another considering that the database is on Oracle Dataguard setup
    ** Oracle is working on this issue, but in parallel is opening the topic to the Community so that Community members can add their perspective, experience or knowledge. This will further enhance all knowledge bases including My Oracle Support and My Oracle Support Communities **
    Edited by: ram_orcl on 16-Aug-2010 21:21

    Dear ram_orcl,
    Please follow the procedures here;
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14239/manage_ps.htm#i1034172
    8.3.4 Renaming a Datafile in the Primary Database
    When you rename one or more datafiles in the primary database, the change is not propagated to the standby database. Therefore, if you want to rename the same datafiles on the standby database, you must manually make the equivalent modifications on the standby database because the modifications are not performed automatically, even if the STANDBY_FILE_MANAGEMENT initialization parameter is set to AUTO.
    The following steps describe how to rename a datafile in the primary database and manually propagate the changes to the standby database.
       1.
          To rename the datafile in the primary database, take the tablespace offline:
          SQL> ALTER TABLESPACE tbs_4 OFFLINE;
       2.
          Exit from the SQL prompt and issue an operating system command, such as the following UNIX mv command, to rename the datafile on the primary system:
          % mv /disk1/oracle/oradata/payroll/tbs_4.dbf
          /disk1/oracle/oradata/payroll/tbs_x.dbf
       3.
          Rename the datafile in the primary database and bring the tablespace back online:
          SQL> ALTER TABLESPACE tbs_4 RENAME DATAFILE      2> '/disk1/oracle/oradata/payroll/tbs_4.dbf'
            3>  TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
          SQL> ALTER TABLESPACE tbs_4 ONLINE;
       4.
          Connect to the standby database, query the V$ARCHIVED_LOG view to verify all of the archived redo log files are applied, and then stop Redo Apply:
          SQL> SELECT SEQUENCE#,APPLIED FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;
          SEQUENCE# APP
          8 YES
          9 YES
          10 YES
          11 YES
          4 rows selected.
          SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
       5.
          Shut down the standby database:
          SQL> SHUTDOWN;
       6.
          Rename the datafile at the standby site using an operating system command, such as the UNIX mv command:
          % mv /disk1/oracle/oradata/payroll/tbs_4.dbf /disk1/oracle/oradata/payroll/tbs_x.dbf
       7.
          Start and mount the standby database:
          SQL> STARTUP MOUNT;
       8.
          Rename the datafile in the standby control file. Note that the STANDBY_FILE_MANAGEMENT initialization parameter must be set to MANUAL.
          SQL> ALTER DATABASE RENAME FILE '/disk1/oracle/oradata/payroll/tbs_4.dbf'
            2> TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
       9.
          On the standby database, restart Redo Apply:
          SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE
            2> DISCONNECT FROM SESSION;
    If you do not rename the corresponding datafile at the standby system, and then try to refresh the standby database control file, the standby database will attempt to use the renamed datafile, but it will not find it. Consequently, you will see error messages similar to the following in the alert log:
    ORA-00283: recovery session canceled due to errors
    ORA-01157: cannot identify/lock datafile 4 - see DBWR trace file
    ORA-01110: datafile 4: '/Disk1/oracle/oradata/payroll/tbs_x.dbf'Hope That Helps.
    Ogan

  • How to recover system datafile???

    Hello,
    Do you guys have any idea how to recover SYSTEM datafile if the datafile is missing and it's not being back up ?
    suhaimi
    [email protected]

    Dear Suhaimi,
    The only possible way of recovering the SYSTEM tablespace (and its datafiles) is from the Hot or Cold backups taken earlier. For ensure complete recoverability, I advise you to run your database in ARCHIVELOG mode and take regular online backups.
    Ciao!

  • How to recover offlined datafiles

    Hi,
    While starting up the db im getting the below error
    ORA-01113: file 12 needs media recovery
    ORA-01110: data file 12:
    I checked the status of the datafiles and i found that the two datafiles(12 & 13) where in recovery mode.
    I checked the alertlog and found that
    1) Datafile 12 went offline on 13th Nov 2008
    Thu Nov 13 12:28:24 2008
    Errors in file c:\oradba\admin\bdump\db_ckpt_4528.trc:
    ORA-01171: datafile 12 going offline due to error advancing checkpoint
    ORA-01110: data file 12: '\\network drive\TAB_5.ORA'
    ORA-01115: IO error reading block from file 12 (block # 1)
    ORA-27072: skgfdisp: I/O error
    OSD-04006: ReadFile() failure, unable to read from file
    O/S-Error: (OS 6) The handle is invalid.
    2) Datafile 13 went offline on 27th Jan 2009
    Tue Jan 27 23:31:49 2009
    Errors in file c:\oradba\admin\bdump\db_ckpt_4568.trc:
    ORA-01171: datafile 13 going offline due to error advancing checkpoint
    ORA-01110: data file 13: '\\network drive\TAB_6.ORA'
    ORA-01115: IO error reading block from file 13 (block # 1)
    ORA-27072: skgfdisp: I/O error
    OSD-04006: ReadFile() failure, unable to read from file
    O/S-Error: (OS 6) The handle is invalid.
    I tried recovering datafile 12 and it is archive for archivedlogs from Nov 13, but i have archive logs only from 22nd Jan 2009.
    I can recover the datafile 13 using this archive logs.
    Can anyone tell me how to recover the datafile 12 ????
    Thanks in advance.
    Prem.

    thanks for your reply
    .>>>> I tried recovering datafile 12 and it is asking for archivedlogs from Nov 13, but i have archive logs only from 22nd Jan 2009 <<<<<
    Im having archivelogs only from 22nd jan 2009.
    Since the datafile 12 was offline from Nov 13 2008 therewont be any transactions on the datafile.
    So is there any way to bring it online and to the current SCN.
    Thanks,
    Prem

  • How do I recover my password from an old email account I do not have access to?

    How would I recover my passwrod from an old I Tunes account?

    See http://support.apple.com/kb/HT5787.

  • How can i recover my data from an old hard drive after replacing it?

    How can I recover my data from an old hard drive after replacing it?

    Internal or external hard drive? Was the drive still working before you replaced it?

  • Hey guys i just wanna ask you if you know any way how to recover pics deleted from my camera rol and photo stream, i deleted accidentally without backing it up on icloud, any ideas how i can get it back

    hey guys i just wanna ask you if you know any way how to recover pics deleted from my camera rol and photo stream, i deleted accidentally without backing it up on icloud, any ideas how i can get it back

    If you deleted them from both PhotoStream and the camera roll, and you don't otherwise have them backed up, they're gone.

  • How to recover the mailboxes from the decommissioned exchange db .

    Hello All,
    I have 2 EDB files on my exchange server which is no longer active its been decommissioned and the EDB mailbox is dismounted, 
    I would like to recover few emails/mail boxes from the EDB file and am not able to find any free tool which can help me in recovering the emails, 
    1. How to recover the mailboxes from the decommissioned exchange db 
    2.Tried using from free 3rd party tools which helped me view the mail boxes however am  unable to convert or recover the emails using the demo/ trial version and cant think of buy/purchasing the application since its very expensive $299 and $399 
    I know there are lot of exchange gurus here who can help me with some workaround in recovering the mailboxes from the EBD or on how to convert the edb file to pst 
    Looking forward to get some help from exchange gurus 
    Thanks, 
    Jean
    Jean

    Hello All,
    I have 2 EDB files on my exchange server which is no longer active its been decommissioned and the EDB mailbox is dismounted, 
    I would like to recover few emails/mail boxes from the EDB file and am not able to find any free tool which can help me in recovering the emails, 
    1. How to recover the mailboxes from the decommissioned exchange db 
    2.Tried using from free 3rd party tools which helped me view the mail boxes however am  unable to convert or recover the emails using the demo/ trial version and cant think of buy/purchasing the application since its very expensive $299 and $399 
    I know there are lot of exchange gurus here who can help me with some workaround in recovering the mailboxes from the EBD or on how to convert the edb file to pst 
    Looking forward to get some help from exchange gurus 
    Thanks, 
    Jean
    Jean
    Hello,
    There are so many third party software available in Web that can easily fix your Exchange Database issues, you can check out such  a software from here http://www.exchangerecoverytools.org . By using this software (Kernel for Exchange Server Recovery),
    you can immediately repair and convert damaged EDB to PST files.

  • How to recover weekly jobs from the past schedules

    How to recover weekly jobs from the past schedules

    Hi
    You may also need to check the 'Scheduled' option to check for jobs which were schduled but were never released.
    Regards
    Sandeep

  • How to recover lost files from ipad on mac

    I have stored many videos, contacts, notes, music files and more on my ipad. Unfortunately, I lost my some files on it owing to my wrong operation. Now I am
    looking for the ways how to get them back quickly, but it is failed. If you are familiar with this problem, please continue reading to give me some clues about how to recover these lost files from iPad on Mac computer? 100 coins will be added!

    Firstly, you can rely on iCloud or iTunes to recovery iPad data, such as recover deleted text messages, photos, notes, restore iPhone contacts, after all, it is free. 
    1. Connect your iPad with iTune on computer 
    2. Right-click or control-click on the iPad icon under iDevice on iTunes 
    3. Select "Restore from Backup" from the given options 
    4. After it finishs, your contacts are back to your iPhone 
    Important Note: This works only if you have made a backup for your data on iTunes. 
    In case that the iCloud or iTunes cannot help to make a iPad Data Recovery, you can turn to a third party tool.
    how to recover deleted files on iPad
    http://www.iphone-data-recovery.com/recover-files-on-ipad.html
    how to recover deleted photos from iPad
    http://www.iphone-data-recovery.com/recover-ipad-photos.html
    how to recover deleted videos from iPad
    http://www.iphone-data-recovery.com/ipad-video-recovery.html

Maybe you are looking for

  • Hello.war_deployed not generated for Sun Java System Application Server

    I have installed and started the Sun Java System Application Server successfully, and can access http://localhost:8080 without any problem. However, after I copied the hello.war following the below instruction in "QuickStart", the hello.war_deployed

  • Connecting iPhone to home network?

    I was wondering whether using the internet on the iphone through my home network will be shown in my phone bill? Cause I heard it doesn't cost for the phone if I'm using wireless connection on the iPhone or wifi. But I just wanted to make sure before

  • Not possible to use ranges in the transformation rule

    Hello The system generates the following errow in the transformation rule : IF SOURCE_FIELDS-MOVETYPE IN r_movetype.       MOVE SOURCE_FIELDS-PSTNG_DATE TO RESULT.     ELSE.       RESULT = ''.     ENDIF. Only the following limits are allowed: "I" - w

  • Survey / questionnaire data storage

    Hello CRM guru's! Does  anyone know if the entered values in a questionnaire / survey are stored in tables? And if this is the case; in which tables are they stored? Will reward points! Regards, Joost Goudriaan

  • Changing log file name (weblogic.log)