Actions to be performed after a online backup restore

Hello Guru's,
I have an online backup of a system.
(AIX - ORACLE)
If I restore the backup using Tivoli Storage Manager I still have to perform some actions to recover the database.
I have read through the SAP documentation and it seems I can restore the logs using brtools (brrecover).
My questions actually is, which option do I have to take if I want to apply the offline archive logs as far as possible ?
"Complete database recovery" of "database point in time recovery" ?
I want to make sure that only the archivelogs are being applied and that the database restore is not peformed again.
Thank you all !
bye
BUD

Hello Hans,
> and it seems I can restore the logs using brtools (brrecover).
If you only want to restore your archivelogs, then use brrestore.
brrecover is for recovering the database, not for restoring.
Take a look at here:
http://help.sap.com/saphelp_nw04/helpdata/en/88/cadaca94734ae5b8ea3491f615741b/content.htm
and here:
http://help.sap.com/saphelp_nw04/helpdata/en/0d/d3077b4a0c11d182b80000e829fbfe/content.htm
> My questions actually is, which option do I have to take if I want to apply the offline archive logs as far as possible ?
> "Complete database recovery" of "database point in time recovery" ?
In this case you have to do an incomplete database recovery or in other words called "point in time recovery". For the difference between these two restore types take a look at the oracle documentation:
http://download-uk.oracle.com/docs/cd/B19306_01/backup.102/b14192/intro004.htm#i1016863
After you have restored your archive logs you can perform the recovery manually:
> SQL> recover database using backup controlfile until cancel;
> SQL> cancel;
> SQL> alter database open resetlogs;
Btw.as you are using TDP for SAP you can use backfm to restore only some several files.
Regards
Stefan

Similar Messages

  • Music on my phone does not show all the iTunes artwork, even after doing a backup restore, eliminating all music and restoring

    Music on my phone does not show all the iTunes artwork, even after doing a backup restore, eliminating all music and restoring  I have an iphone5 64 syncing about 8000 songs, so updating all is a time consuming, and now maddening process. Never had a problem before iOS 8. Someone (hello Apple) needs to develop a utility to help manage artwork recovery.

    See earlier post by tt2
    https://discussions.apple.com/message/7217190#7217190

  • How does recovery work after an online backup

    Hello,
    While trying to conceptually understand how backup and recovery works, I came accross a question concerning hot (online) backup.
    This is a conceptual question (I am trying to understand how things work), it is not a "how should I proceed/ what should I do step by step" question.
    As far as I understand, an online backup of a tablespace can be performed by copying the OS files making up a tablespace while the database is up and being used (i.e. transactions are modifying data in the database). Before the copying of the OS files starts, the Oracle RDMS must be notified that an online backup is being taken via "ALTER...BEGIN BACKUP" (such that some additional information is written to the Redo Log, which may be required for subsequent recovery using the online backup). During recovery the Oracle RDBMS uses the copies of the OS files together with the online and archived redo logs in order to reconstruct all committed transactions and it further uses the UNDO tablespace to rollback open (uncommitted) transactions.
    Thinking about this, it seems to me, that in order for this to work in all possible scenarios the undo information from the time the backup was taken may be required. Therefore backup of the UNDO tablespace should be taken as well (see the explanation for this assumption below). However browsing the internet (including the Oracle online documentation) I did not find any statements concerning the backup of the UNDO tablespace when an online backup is taken. Moreover I couldn't figure out when exactly such a backup of the UNDO tablespace must be done, to ensure that the database can be recovered in all scenarios.
    I believe that undo information from the time the hot backup was taken may be required e.g. in the following scenario:
    Assume we are taking a hot backup of a given tablespace, i.e. we are copying all OS files that make up this tablespace, while the database is potentially being used. Let D1 be one of the datafiles in our tablespace and let transaction T1 modify datafile D1. Let transaction T1 further be uncommitted while the copy of datafile D1 is being made and let (at least some of) the changes from T1 be included in the backup copy D1' of D1 (because DBWR has already written the modified blocks at the time they were being copied to the backup). Let transaction T1 be rolled back after the copy is completed. D1' will thus contain modifications from T1, while D1 will not.
    Now some time later the datafile D1 is lost. When recovering D1 from the copy D1', the (archived) redo logs will be applied to D1'. Before that, transaction T1 should be rolled back in the copy D1', because modifications from T1 must not appear in the recovered version of the database.
    I do however not understand, where the information to rollback transaction T1 exactly comes from. It may still be in the current UNDO tablespace. I do however assume that rollback information is not kept in the UNDO tablespace forever. I see three possible answers to this
    (a) There are some requirements which I missed so far to backup the UNDO tablespace whenever a hot backup is made.
    (b) Since the Oracle "RDBMS" has to be notified that an online backup is being done, it might store all relevant undo information (e.g. write it to the redo log) when the tablespace is put in backup mode.
    (c) There are situations when recovery is not possible due to "missing old UNDO information".
    Answer (b) seems the most plausible to me. I did however not find any confirmation of this and if (b) really is the answer, I would be interested to understand what information is stored where by the Oracle RDMBS and how it is used for recovery.
    To summarize I have the following questions:
    (I) Is there any requirement to backup the UNDO tablespace together with an online backup of a tablespace, and if so, where is this stated in the Oracle documentation?
    (II) What mechanisms ensure that uncommitted transactions can be cleared from the online copy of a tablespace (potentially a long time after the copy was taken)?
    (III) Do you know any links (Oracle documentation or other online resources) explaining these datails?
    Thank you for any hints and answers
    kind regards
    Martin

    Its a highly technical question and I can be completely wrong due to my very less knowledge but I would attempt to answer still. Hope I say something sensible so bear with me.
    As far as I understand, an online backup of a tablespace can be performed by copying the OS files making up a tablespace while the database is up and being used (i.e. transactions are modifying data in the database).Correct. But it would depend on the tool you are going to use to do so.Using o/s level commands like CP and all would require you to manually copy the files to the backup location. Using RMAN, it would be lot easier and RMAN would take care of everything.
    Before the copying of the OS files starts, the Oracle RDMS must be notified that an online backup is being taken via "ALTER...BEGIN BACKUP" (such that some additional information is written to the Redo Log, which may be required for subsequent recovery using the online backup). Again, this is a requirement only in the case of user-managed backup . In that case, because of the fractured block issue , its important that the corresponding older information/image of the buffer is also copied in the redo stream and that's done when the begin backup command is used. Using RMAN, this is not needed as RMAN can read the consistent image which it would store in the backup piece, exactly in the same way in which select request is fulfilled by oracle for a dirty buffer which is yet to be made consistent.
    During recovery the Oracle RDBMS uses the copies of the OS files together with the online and archived redo logs in order to reconstruct all committed transactions and it further uses the UNDO tablespace to rollback open (uncommitted) transactions.Correct!
    Thinking about this, it seems to me, that in order for this to work in all possible scenarios the undo information from the time the backup was >taken may be required. Therefore backup of the UNDO tablespace should be taken as well (see the explanation for this assumption below). >However browsing the internet (including the Oracle online documentation) I did not find any statements concerning the backup of the UNDO >tablespace when an online backup is taken. Moreover I couldn't figure out when exactly such a backup of the UNDO tablespace must be done, to >ensure that the database can be recovered in all scenarios.The reason that its not a must to do so is that if the transaction is yet active, there is no way that Oracle would overwrite the Undo information of it, even if you may come after 100 years, it would be there. The Undo segment would mark those blocks as active undo blockswhich contains the information of that transaction whose status within the transacton table of that undo segment is still marked as active. So its there all the time in the undo tablespace. Now, for an instance, let's assume that the undo is not there as well( it would be but let's assume), the changes made to the undo segment's blocks are also recored in the redo as its just a change happening to any other segment like EMP,DEPT except with the difference that its not done by you but by oracle. So using that information, in the future , if there would be a need to replay those changes, necessary information to do so can be brought up from the redo blocks stored in the redo/archive logs. Yes, if there would be pending transactions that would require Undo information to get them rolled back and you have lost Undo tablespace and have no backup of it , you wont be able to bring back the database as it would be inconsistent and oracle would not let you to do it. In that case, you may require to use hacks to get it up and that would be really tricky situation.
    (I) Is there any requirement to backup the UNDO tablespace together with an online backup of a tablespace, and if so, where is this stated in the Oracle documentation?As I said above, it must be there if you are anticipating loss of Undo tablespace. If you have lost it, you would need a backup and all the archive logs and redo logs to recover and get it back to the point where the current database is . Rest, oracle would take care as it would reapply the redo contents of the undo segments over the undo segment and get it consitent.
    (II) What mechanisms ensure that uncommitted transactions can be cleared from the online copy of a tablespace (potentially a long time after the copy was taken)?As I said , pending transaction's undo is never overwritten by Oracle. Its always kept and marked as active undo . Only a transaction end would make it elgible to get overwritten and that too won't happen immediately(undo_retention would kick in) .
    (III) Do you know any links (Oracle documentation or other online resources) explaining these datails?I have to see if its there some where step by step mentioned and I shall update the reply once I shall find the link. Hoep someone else in the meantime finds it .
    HTH
    Aman....

  • Duplicate node in configtool.sh after files sytem backup / restore

    Hello,
    We are doing EHP4 installations for our live ECC6 (ABAP+Java) landscape. We wanted to achieve EHP4 installation more consistently and accurately in our test system first. We are performing system copy from our Production system (sapecp) to TEST  system host (sapecb) using full file system backup and restore.
    We have restored most recent full file system backup of our PRD(sapecp) on our TEST System (sapecb). Due to the different host name of test system we aslo finished the host renaming steps from note 8307 and 757692. Our DBAsu2019 also adjust the new
    host name in Oracle after the file system restore. After this we are able to start SAP instance successfully on TEST system.
    However we have noticed that configtool.sh is now showing two nodes automatically instead of a single node in both PRD and TEST systems. 
    Q: Is their anything else we still need to change in configtool.sh in our TEST system to remove references of PRD ?
    Q: is this a normal behavior of configtool.sh after a file system backup and restore ?
    Q: is their a way to clean up the configtool nodes in both system ?
    Please advice if anyone has faced the similar issue ?
    Thanks,
    Harshal

    Dear Reagan,
    Infra team did only the Backup Restore of the Prod system and no Export Import of Prod using the sapinst.
    Should I do the export import as it sounds by your and Pavan's reply that it might be required
    We are doing Restore for Dual stack first time done the backup restore for ABAP stack a couple of times for ECC Quality refresh.
    Should this be the option that I should select in sapinst for JAVA Export and JAVA Import:
    JAVA Export
    JAVA Import
    Regards,
    APS

  • DB13 online backup restore

    I am taking daily online backup from DB13 with the option"database backup+redolog file" on a tape medium.If I want to restore this taken backup what is the procedure and commands to be used

    Hi Diego,
    Move to your sap backup folder and execute the following commands
    $ at now/usr/sap/SID/sys/exe/brrestore -c force -b -m fullc trl+d
    will give you the output at what time it is going to start. to check the job running or not
    $ ps -ef | grep br
    it will show the job which is running .....To recover online redologs, you  need to start your database in mount mode and execute the following command
    Recover database using backup controlfile until cancel;
    If you want to reset logs...
    Alter database open reset logs.
    Hope this helps you
    And also you can use brtools to restore instead of command level.
    Thanks
    Kishore

  • My ipod touch's PhotoStream photos not retained after an icloud backup restore??? HELPP !!

    So just yesterday I reset my ipod touch 4g into factory settings by deleting all the content on it just because I had encountered some technical issues before that, but then after I had activated my ipod touch again and initiated a restore from an icloud backup, I noticed that the photostream feature was on but WITHOUT its previous contents that were there when I made the backup on icloud ! so why is this ?!! im confused ... only my cameraroll content was restored. Photostream feature was there but the window just says "NO PHOTOS". how can this even be?! i mean, it was with its content when i made the backup on icloud ! -_- and more interestingly, on my iphone 5(my other idevice), photostream can be found with all its content, but on my ipod touch 4g , the photostream has lost all its content after the factory reset cuz apparently icloud can't back up photostream content. SO plz suggest me what i should do to sort this out and recover my photostream content on my ipod touch 4g.. and TELL me how photostream all works.. THNX

    This is the iPhone forum
    That said... PhotoStream is a stream of photos. The contents of the PhotoStream are not part of the backup. PhotoStream will hold the last 30 days of photos on-line. After 30 days, the photos are deleted from the servers. If they have already been downloaded from the cloud and appear on a device, they will remain there. However... if the device is wiped, restored, etc. or PhotoStream on the device is turned off then back on, ONLY the photos still resident in the cloud will download.
    If the photos were over 30 days old, they are no longer in the cloud. If you didn't have them backed up elsewhere, they are gone.

  • Can't sync applications after Time machine backup restoration

    Hello.
    I'm running 10.5.4 on a Macbook whose hard drive crashed. I replaced it with another one and restored from my closest time machine backup. Everything is OK with the files, the problem was when I tried to sync my ipod touch.
    The ipod is running 2.0.2. It contained 9 applications, but after the first try to sync I got the error message that several applications couldn't be synced. For each of them I had a message like "Application blah blah could not be synced because you lack the permissions to do so".
    More importantly, the iPod touch now doesn't contain any of these applications, even though they still get reported as a problem during syncing. Rather than deleted, they seem to be hidding, though I can't access any from the touch.
    How can I recover my applications being synced without losing their data?

    I have used iTunes to reset the iPod to the factory default settings. After the syncronisation and reuploading of all my music and photos, I still get the same error on application syncing: I have no permissions to sync applications.
    I have tried downloading new free applications from the App store, but it is the same, nothing gets synced, the new applications are added to the list of problematic programs that can't be synced.
    Here's a snapshot of the error: http://gradha.sdf-eu.org/appsyncerror.png

  • ITunes crashing after Time Machine backup restored?

    Hi there, I recently restored my system using Time Machine and after I did this my iTunes started crashing, I've re-installed it and this hasn't helped and I also tried using the Disk Utility to repair my volume but this hasn't worked either.
    Here's the details that are given after the crash occurs:
    Process: iTunes [181]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: 9.2.1 (9.2.1)
    Build Info: iTunes-9210501~4
    Code Type: X86 (Native)
    Parent Process: launchd [85]
    Date/Time: 2010-08-17 14:12:20.345 -0600
    OS Version: Mac OS X 10.6.3 (10D2084)
    Report Version: 6
    Interval Since Last Report: 2311 sec
    Crashes Since Last Report: 7
    Per-App Interval Since Last Report: 53 sec
    Per-App Crashes Since Last Report: 7
    Anonymous UUID: 06A0E202-5663-4948-A4A7-EAB9CD47F26E
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x00000000000000a1
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.iTunes 0x000e8138 0x1000 + 946488
    1 com.apple.iTunes 0x000a91b9 0x1000 + 688569
    2 com.apple.iTunes 0x000a2748 0x1000 + 661320
    3 com.apple.HIToolbox 0x93b78109 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    4 com.apple.HIToolbox 0x93b773d0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    5 com.apple.HIToolbox 0x93b7722f SendEventToEventTargetWithOptions + 58
    6 com.apple.HIToolbox 0x93b9d222 HIView::SendVisibilityChanged() + 146
    7 com.apple.HIToolbox 0x93b9d27c HIView::AncestorBecomingVisible() + 60
    8 com.apple.HIToolbox 0x93b9d2b3 HIView::AncestorBecomingVisible() + 115
    9 com.apple.HIToolbox 0x93b8ea2e HIView::Show(unsigned char) + 150
    10 com.apple.HIToolbox 0x93b9d0c7 WindowData::PrepareForVisibility() + 93
    11 com.apple.HIToolbox 0x93b9c6b6 _ShowHideWindows + 291
    12 com.apple.HIToolbox 0x93bff3a1 ShowWindow + 79
    13 com.apple.iTunes 0x000e8113 0x1000 + 946451
    14 com.apple.iTunes 0x001b879b 0x1000 + 1800091
    15 com.apple.iTunes 0x0000c8de 0x1000 + 47326
    16 com.apple.iTunes 0x0000c76c 0x1000 + 46956
    17 com.apple.iTunes 0x00004a6d 0x1000 + 14957
    18 com.apple.iTunes 0x000036fb 0x1000 + 9979
    19 com.apple.iTunes 0x00003629 0x1000 + 9769
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x94ec7b42 kevent + 10
    1 libSystem.B.dylib 0x94ec825c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x94ec7719 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x94ec74be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x94ec6f41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x94ec6d86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x94ec6bd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x94ec7168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x94ec6d86 start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x94ea12fa machmsgtrap + 10
    1 libSystem.B.dylib 0x94ea1a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x908e000f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x908df0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x908e5034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x00360870 0x1000 + 3537008
    6 libSystem.B.dylib 0x94ecea19 pthreadstart + 345
    7 libSystem.B.dylib 0x94ece89e thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x94ea1342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94eceeb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x94f1742f pthreadcondwait + 48
    3 com.apple.iTunes 0x0000b9c1 0x1000 + 43457
    4 com.apple.iTunes 0x0001cae5 0x1000 + 113381
    5 libSystem.B.dylib 0x94ecea19 pthreadstart + 345
    6 libSystem.B.dylib 0x94ece89e thread_start + 34
    Thread 5:
    Thread 6:
    0 libSystem.B.dylib 0x94ec0286 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x9091f82d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x94ecea19 pthreadstart + 345
    3 libSystem.B.dylib 0x94ece89e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x019c7800 ebx: 0x0000009d ecx: 0x00000000 edx: 0x0000000d
    edi: 0xbfffcb98 esi: 0x00000000 ebp: 0xbfffca98 esp: 0xbfffca80
    ss: 0x0000001f efl: 0x00010282 eip: 0x000e8138 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x000000a1
    Binary Images:
    0x1000 - 0xc8efc3 com.apple.iTunes 9.2.1 (9.2.1) <BE631E2D-9B61-B478-E1AA-4F48253675D3> /Applications/iTunes.app/Contents/MacOS/iTunes
    0xee5000 - 0xeedff7 com.apple.ipodsynchronization 3.0 (116) <B41B2240-34E9-4A5E-A210-F02D99E3C00E> /System/Library/PrivateFrameworks/iPodSync.framework/Versions/A/iPodSync
    0xef5000 - 0xefaff7 com.apple.iPod 1.6 (17) <4CCD2720-D270-C0D2-1E14-1374779C2401> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0xf00000 - 0xf87fe7 com.apple.iTunes.iPodUpdater 9.2 (9.2) <E1F7F978-79CB-CF0E-681C-4B914732457A> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0xfd6000 - 0x1016ff7 com.apple.vmutils 4.2 (106) <7AAF9FDA-AC1E-09FD-889E-68FFB5F94BA8> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x13800000 - 0x14921fef com.apple.CoreFP 1.8.23 (1.8) <DE13B6FE-EB73-475C-7F7C-3DC57B7B6CEC> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x14a71000 - 0x14a72ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x14a7a000 - 0x14a7eff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <62FB7131-7CCC-A773-8D45-DF7B95B45DA1> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x14a83000 - 0x14a89ffb com.apple.audio.AppleHDAHALPlugIn 1.8.4 (1.8.4fc2) <52A6B7E8-024C-18CA-99F8-849260D79C97> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14a9a000 - 0x14a9fff7 com.apple.QuartzComposer.iTunesPlugIn 1.2 (16) <8511A037-AFDE-5D1A-67DA-1B4837432D85> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    0x14ab2000 - 0x14b67fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2E52683A-7E8E-68D5-5AC6-09962C37CB98> /usr/lib/libcrypto.0.9.7.dylib
    0x14d54000 - 0x14db7feb com.apple.mobiledevice 392.8 (392.8) <F6DE13AA-4BBD-0492-18BF-F411EACE9596> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x19031000 - 0x19057fff libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <73B10885-F9AF-5B9D-A91C-D96869959EA5> /usr/lib/libssl.0.9.7.dylib
    0x19066000 - 0x19286feb com.apple.audio.codecs.Components 2.0.1 (2.0.1) <3B1071C3-1AB4-0F6A-2CFC-7A258A0C2C46> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1a456000 - 0x1a804fe3 com.apple.RawCamera.bundle 3.3.0 (533) <05A38D21-8556-434C-8BAA-850A6EC99B37> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1a902000 - 0x1a9b2fe3 com.apple.QuickTimeImporters.component 7.6.6 (1742) <76B0E668-214A-AB71-AAB8-E39E7F227C9B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x70000000 - 0x700caffb com.apple.audio.units.Components 1.6.1 (1.6.1) <0E7E5B62-94E2-F6D6-E35D-683D48CC3EDA> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <6C9B2A0B-632C-A651-A9CF-719C5E7B936F> /usr/lib/dyld
    0x900b2000 - 0x9012bff7 com.apple.PDFKit 2.5.1 (2.5.1) <2B62428D-0738-B499-C47C-3194B2967BD9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9012c000 - 0x901f6fef com.apple.CoreServices.OSServices 357 (357) <C4D2E59A-8D1F-4B0D-3035-E25D74A4ED8A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x901f7000 - 0x901faffb com.apple.help 1.3.1 (41) <EF92C648-2085-C085-8EA7-A1AF37AE94F4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9064d000 - 0x90690ff7 libGLU.dylib ??? (???) <87050E98-0183-E8AA-4886-C4F5B5843C04> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x906d3000 - 0x90724ff7 com.apple.HIServices 1.8.0 (???) <BE4D9BC1-B527-D416-F4EB-FFB66EDA5DBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90725000 - 0x90827fef com.apple.MeshKitIO 1.1 (49.2) <D0CBE997-5BDC-C0ED-B821-ACA6E6EE8B59> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x90828000 - 0x908a2fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <BCED691A-F85F-F2C5-C1A2-F07C647D0686> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x908a3000 - 0x90a1cffb com.apple.CoreFoundation 6.6.1 (550.19) <9CA9F114-5DD6-26AA-F909-E9E87B764F93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90a1d000 - 0x90a27fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90a4a000 - 0x90a85feb libFontRegistry.dylib ??? (???) <B1D9DD51-D047-DA0C-753B-B8AA901F9D9D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x90a86000 - 0x90adefe7 com.apple.datadetectorscore 2.0 (80.7) <F7416A84-E91C-5BDC-10E3-4940EB7AE5C9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90adf000 - 0x90adfff7 com.apple.Carbon 150 (152) <221E90ED-2F6B-8296-9236-8D4D9E5B13BC> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90bf7000 - 0x90c3dff7 libauto.dylib ??? (???) <0898A4A1-28BC-5337-EE17-D55C74F975F4> /usr/lib/libauto.dylib
    0x90c3e000 - 0x90ddbfef com.apple.JavaScriptCore 6531.21 (6531.21.9) <261D9551-3E1E-98D7-6942-96881B15732A> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90ddc000 - 0x90f1efe3 com.apple.QTKit 7.6.6 (1729) <ECB11513-A6CF-0B41-EB0B-C54C38F02728> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90f1f000 - 0x90f20ff7 com.apple.TrustEvaluationAgent 1.1 (1) <07E7D892-5054-23A8-7144-3F19D3BFD48F> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x90f21000 - 0x90f25ff7 IOSurface ??? (???) <6AD01372-3BE0-1843-4F3C-14FEC6E0A8F1> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90f2e000 - 0x90f62ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C185A2D5-508E-0337-86A0-DB124BE14D06> /usr/lib/libssl.0.9.8.dylib
    0x90f63000 - 0x90f66fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x90f67000 - 0x90f7bfe7 libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x90f7c000 - 0x90f9dfe7 com.apple.opencl 12.1 (12.1) <C3E87DE8-8D11-41C3-6C76-6BD82C740BBD> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x90f9e000 - 0x90fa0ff7 libRadiance.dylib ??? (???) <8AE5AE8F-807F-8E22-5CE7-3A9D02C4EA4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90fc8000 - 0x9132fff7 com.apple.QuartzCore 1.6.1 (227.18) <3812EA02-2CB5-7879-0473-94716B0B01BC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91330000 - 0x913cbff7 com.apple.ApplicationServices.ATS 4.1 (???) <7D470055-2A4F-37D4-97D5-CA5A774DA2D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x913cc000 - 0x913dcff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x913dd000 - 0x913eaff7 com.apple.NetFS 3.2.1 (3.2.1) <E483137C-8239-E4DE-821C-05A9C22726AB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x913eb000 - 0x914c6ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <AE3C3048-74BE-92C3-5A72-2149E83A15F3> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x914c7000 - 0x915a4ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x915a5000 - 0x915b3fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <2020E84A-F5A1-9D49-B0CA-7C68A8085BAA> /usr/lib/libz.1.dylib
    0x915b4000 - 0x91651fe3 com.apple.LaunchServices 362.1 (362.1) <ED243C3B-9A16-A6CB-CA51-5924F48569DE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9165f000 - 0x9165fff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91660000 - 0x916b0ff7 com.apple.Symbolication 1.1 (67) <A173E87D-4F8D-C1F1-891C-48981656F84C> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x917a9000 - 0x9181dfef com.apple.CoreSymbolication 2.0 (23) <8C63D09A-6DF5-082A-553B-3E7610604C5D> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x91829000 - 0x9182aff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9182b000 - 0x91863ff7 com.apple.LDAPFramework 2.0 (120.1) <C324E71E-17DE-A3E3-4EBC-99F4730FB99A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91864000 - 0x918d2ff7 com.apple.QuickLookUIFramework 2.2 (327.4) <C98C26D1-C609-1CC0-9351-680129078C4C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x918d3000 - 0x918e7ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918e8000 - 0x918fdfff com.apple.ImageCapture 6.0 (6.0) <0E86F45E-E656-9015-7AD4-A2C5F8D8A2FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x918fe000 - 0x91902ff7 libGIF.dylib ??? (???) <0D00124C-1B80-F26A-33EF-2130E2F8174E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x919b0000 - 0x91a32ffb SecurityFoundation 36840.0.0 (compatibility 1.0.0) <BC991DBB-3296-0946-EE77-E9335548C92F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91a33000 - 0x91a4eff7 libPng.dylib ??? (???) <F0282E23-43A1-D9DC-A17C-A545D7D1B02E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91a4f000 - 0x91b2afe7 com.apple.DesktopServices 1.5.5 (1.5.5) <82DFBC40-4D05-FEA9-1077-D6FD5F9BB0E6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91b2b000 - 0x91b2bff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91c63000 - 0x91c73ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x91c74000 - 0x91cd8ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91cd9000 - 0x91cfffff com.apple.DictionaryServices 1.1.1 (1.1.1) <00C1B034-5AE7-996C-CDD3-5A21DA1DBAC9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91d0b000 - 0x91d46fe7 com.apple.DebugSymbols 1.1 (70) <1D0447CB-C221-A112-AA68-372951672A3D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x91ebb000 - 0x91f3bfeb com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91f3c000 - 0x91f5efef com.apple.DirectoryService.Framework 3.6 (621.3) <BCB030BE-60E2-9AF3-80BE-CC090FCEA6F0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91f5f000 - 0x92375ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92420000 - 0x92740feb com.apple.CoreServices.CarbonCore 861.6 (861.6) <58254FA9-A30C-2246-A5FE-538DA6869AFE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92741000 - 0x92741ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92742000 - 0x927eaffb com.apple.QD 3.35 (???) <37854644-864D-A3F2-7116-89F2F28E1CA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x927eb000 - 0x927ebff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x927ec000 - 0x92884fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <C1E87A20-A2F0-FEA9-34F0-212B38F9768A> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92885000 - 0x928effe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x928f0000 - 0x929a6fef libFontParser.dylib ??? (???) <58D3E8DC-FDF9-E720-7957-2349DFD341DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x929a7000 - 0x929b5ff7 com.apple.opengl 1.6.7 (1.6.7) <27686B70-9E5F-EFF5-7B33-3FEC6334A8DD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x929b6000 - 0x92a27ff7 com.apple.AppleVAFramework 4.8.12 (4.8.12) <A5E5769A-8BBB-8237-05E4-A7E6921C5096> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92a6d000 - 0x92beffe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <790F5013-01FD-2CA8-7815-8DB9D009B937> /usr/lib/libicucore.A.dylib
    0x92bf0000 - 0x92dd2fff com.apple.imageKit 2.0.3 (1.0) <D79FCBC7-05BD-07CD-7F85-6D0F35A760F7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92dd3000 - 0x92dd5fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x92dd6000 - 0x93001ff3 com.apple.QuartzComposer 4.1 (156.13) <564B8831-02AC-CD9D-D315-EF74CA6B807A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93043000 - 0x93044ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <F3872A43-6157-098D-F9DD-210187B95FD3> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93045000 - 0x93092feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <E2632F3E-6B5C-2E92-CD11-15BC0CE109CA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x93093000 - 0x9310aff3 com.apple.backup.framework 1.2.2 (1.2.2) <7F360AB7-6F4C-167B-4C28-A69A55ECE433> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93112000 - 0x9311eff7 libkxld.dylib ??? (???) <595DBB0E-02B1-F758-A1FE-26BE7BD823C1> /usr/lib/system/libkxld.dylib
    0x9312d000 - 0x931d6ff7 com.apple.CFNetwork 454.9.4 (454.9.4) <D1D0D2B9-9BD0-6F36-FC6D-24436EDE02F0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x931d7000 - 0x931e8ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <41B2FB02-A638-2513-3620-CE30B391AC64> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x931e9000 - 0x93243fe7 com.apple.CorePDF 1.1 (1.1) <843DBF62-02D7-5661-C5AB-08D8783E8235> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x93244000 - 0x93679ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93699000 - 0x93699ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x936b9000 - 0x93929ffb com.apple.Foundation 6.6.2 (751.21) <7E50458D-02FC-7EEC-87D9-18BBAA843083> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9392a000 - 0x93935ff7 com.apple.CrashReporterSupport 10.6.3 (250) <E573829B-1E46-D9FE-5069-D5D0AFBBD5D2> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93997000 - 0x939a4fe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <38F79C3C-8356-6EC8-588D-0AE8873A3559> /usr/lib/libbz2.1.0.dylib
    0x93a11000 - 0x93a42ff3 libTrueTypeScaler.dylib ??? (???) <ADB44F5B-4D7E-E5AB-C0E2-493A2D072496> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x93a43000 - 0x93b4fff7 libGLProgrammability.dylib ??? (???) <BA1EB270-6E42-CDB1-45A6-72ADB28EFD83> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93b50000 - 0x93b6fff7 com.apple.CoreVideo 1.6.1 (45.5) <2FB7F93F-39C8-6ACE-EDFD-C843965842CD> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93b70000 - 0x93e94fef com.apple.HIToolbox 1.6.2 (???) <75872DB8-A178-7BFB-B795-60E4012F589A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93e95000 - 0x93e9aff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93e9b000 - 0x93f9cfe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <AB3A3749-B577-1EB3-72DF-215E866F1168> /usr/lib/libxml2.2.dylib
    0x93f9d000 - 0x93fddff3 com.apple.securityinterface 4.0.1 (37214) <195A203C-FD6F-64D2-E8E1-D4F83479EAFD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94127000 - 0x94158ff7 libGLImage.dylib ??? (???) <D8305C56-3C0F-FC15-6D2D-ABB291E30117> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94159000 - 0x94948537 com.apple.CoreGraphics 1.543.33 (???) <152BC992-D1EB-D018-32AE-AAC599B6F99B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94949000 - 0x94986ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <BD51473D-5F8F-F38F-768C-59738F27A1B6> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94987000 - 0x9498eff7 com.apple.agl 3.0.12 (AGL-3.0.12) <8FBA6937-15EC-EC20-18AD-69F8C473C4B2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9498f000 - 0x94a3fff3 com.apple.ColorSync 4.6.3 (4.6.3) <68B6A1B9-86CF-0C5A-7D63-56ED4BB2EB5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94a4b000 - 0x94a55ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <6E3481DF-645E-6095-0CD7-9BEBEC2ED9D1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94a90000 - 0x94aa8ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94ad4000 - 0x94b18fe7 com.apple.Metadata 10.6.3 (507.8) <AA82A951-84B9-B781-2656-77F584F907FA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94b19000 - 0x94b2bff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <7C8A3958-BE2C-A0F9-D545-44FD48B2F30A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x94b2c000 - 0x94c1eff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D0EC9F75-387E-D003-27D9-320D88B4F766> /usr/lib/libcrypto.0.9.8.dylib
    0x94c1f000 - 0x94e81ff3 com.apple.security 6.1.1 (37594) <276DD6FE-C6EE-CEEE-423D-DA375462F18E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94ea0000 - 0x95045feb libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <DEC6C669-EBBB-A533-6F97-A016BDBF9E6D> /usr/lib/libSystem.B.dylib
    0x95046000 - 0x9506dff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9506e000 - 0x950afff7 libRIP.A.dylib 543.33.0 (compatibility 64.0.0) <D1DA661B-AC42-DBC0-E98F-2FB75F78A201> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x950b0000 - 0x950bbff7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <5A00AB61-1172-05E5-7B05-942D871B7B65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x950bc000 - 0x9510cff7 com.apple.framework.familycontrols 2.0.1 (2010) <B54EA59E-F6C3-177B-0658-3120DD5FBBF6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95137000 - 0x951e4fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <22CD62D4-9E7D-C31A-F585-FCEF1FE4C39A> /usr/lib/libobjc.A.dylib
    0x9522c000 - 0x95432feb com.apple.AddressBook.framework 5.0.1 (868) <082B34B2-2FBF-3283-82AB-AA9F37F9188A> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x954a2000 - 0x954a8ff7 com.apple.DisplayServicesFW 2.2.2 (251) <C7D0797A-DBFF-2A81-223C-E68556580D07> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x954a9000 - 0x954d9ff7 com.apple.MeshKit 1.1 (49.2) <0828CB45-3CC6-9A9E-070A-141A30F534E3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x954da000 - 0x9553bfe7 com.apple.CoreText 3.1.0 (???) <F9E654F5-107E-8CED-2D6A-F5008A854A4D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9553c000 - 0x95547ff7 libGL.dylib ??? (???) <EAD85409-9036-831B-C378-E50780305DA6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95550000 - 0x95574ff7 libJPEG.dylib ??? (???) <C8C7652B-0CA7-A4B2-4139-5F0714B607B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95575000 - 0x95646fe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <77241533-B77C-EAC4-17A9-182D36A5EC33> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x95647000 - 0x95689ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <EF769BD0-63B6-B65D-FA54-8F2354CAD865> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9568a000 - 0x956e0ff7 com.apple.MeshKitRuntime 1.1 (49.2) <B821BF19-0938-711C-7DC9-B8330DA01F77> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x956e1000 - 0x9578fff3 com.apple.ink.framework 1.3.3 (107) <0AFEBD7C-D83C-7847-C075-9B427505F7F0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95790000 - 0x958c7ff7 com.apple.CoreAUC 6.04.00 (6.04.00) <00EE905B-F174-F409-106B-29C8C61E4936> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x958c8000 - 0x960f2fe7 com.apple.WebCore 6531.21 (6531.21.8) <985AB79C-53C9-8CEE-0515-79A8E170C7DD> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x960f3000 - 0x960f7ff7 libGFXShared.dylib ??? (???) <86C0BF66-BCE7-FD11-64D9-8EF09987846A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x960f8000 - 0x96101ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96102000 - 0x961e6ff7 com.apple.WebKit 6531.21 (6531.21.11) <9EAF9318-2004-56D1-481F-C8F3B9BDD923> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x961e7000 - 0x963c2ff3 libType1Scaler.dylib ??? (???) <AC36591C-855F-FDD3-523F-616FD9F5C4A1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x963c3000 - 0x96880ffb com.apple.VideoToolbox 0.484.4 (484.4) <A27D8C1B-43FA-14F0-9966-602A600CF75F> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x969e2000 - 0x96b9eff3 com.apple.ImageIO.framework 3.0.2 (3.0.1) <11AC358A-879A-9F68-C273-F0B974C083E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96b9f000 - 0x96ba2ff7 libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) <F18A7DFC-7FA9-FC63-785C-426AE122745C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x96ba3000 - 0x96c5cfe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x96c5d000 - 0x96d8bfe7 com.apple.CoreData 102.1 (251) <460D594D-09DC-9082-3FD3-F93D6A08AE71> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96d8c000 - 0x96d92fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96d93000 - 0x97672ff7 com.apple.AppKit 6.6.5 (1038.29) <AD25C99A-19D1-B9D8-8A22-67166B4100A2> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97673000 - 0x976b2ff7 com.apple.ImageCaptureCore 1.0.1 (1.0.1) <A03C5D7E-54CD-D56D-E120-9B35EBC9D8F1> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x976e7000 - 0x97829ff7 com.apple.syncservices 5.2 (578.3) <C57BBAC9-B7CC-88BF-DEDD-9C43711655DC> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x979f0000 - 0x979f7ff3 com.apple.print.framework.Print 6.1 (237.1) <9758733E-7FBB-29CF-04F3-0D6D6B4C6A78> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x979fd000 - 0x97b7dfeb com.apple.MediaToolbox 0.484.4 (484.4) <8E400FE3-6B93-D4FE-18C9-E521F8CD652C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x97b7e000 - 0x97bedff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <5C3D7DA5-29EB-A745-E32B-26DBF547D532> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97bee000 - 0x97c31ff7 com.apple.NavigationServices 3.5.4 (182) <ED268D94-E544-5548-AA59-7EC70DCB5EE4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x97c32000 - 0x97c78ffb com.apple.CoreMediaIOServices 130.0 (1035) <70F99DED-C70B-84FC-E9BC-2FFC1C4A216A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x97c79000 - 0x97cb7ff7 com.apple.QuickLookFramework 2.2 (327.4) <098B29B3-9DDD-86DF-C950-0602CA5BC37A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x97d06000 - 0x97d06ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97d07000 - 0x97e33fff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <B9469F98-E349-3C27-86C4-B99AD178FDF1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x97e34000 - 0x97e8fff7 com.apple.framework.IOKit 2.0 (???) <76E6AC9F-7899-9C75-B477-C75BCEE4AF57> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97e90000 - 0x97e90ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97e91000 - 0x97ecfff7 com.apple.CoreMedia 0.484.4 (484.4) <59F10C78-522D-FB5A-2454-7C32788E6225> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x981c6000 - 0x981f9ff7 com.apple.AE 496.4 (496.4) <582F5E9D-1B8E-6D03-EBB8-AA85F66253E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x981fa000 - 0x981fdff7 libCoreVMClient.dylib ??? (???) <ADCA7D46-631F-BC06-8C74-C50C565F9964> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x981fe000 - 0x98242ff3 com.apple.coreui 2 (114) <E6096C79-94B0-730E-6070-3AE93B5678FE> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98243000 - 0x9825ffe3 com.apple.openscripting 1.3.1 (???) <480D41B6-F98E-8E21-CA3C-4CA6A9752D3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x98260000 - 0x98288ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x98289000 - 0x98582fef com.apple.QuickTime 7.6.6 (1729) <4C99ED7D-5A4B-E41E-602D-2D01A99168CD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x985af000 - 0x985b1ff7 com.apple.securityhi 4.0 (36638) <2C51D7FF-3B60-8A24-08C3-0D9E7D415C61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x985c5000 - 0x98657fe3 com.apple.print.framework.PrintCore 6.2 (312.5) <2A8801E6-6D9F-68F5-947D-A1D68BE4F876> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x98658000 - 0x98678fe7 libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <906E554A-F2E3-F2CE-30CD-B156A2787AAB> /usr/lib/libresolv.9.dylib
    0x98679000 - 0x986aeff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A544BF9D-6D84-A7BC-CF32-6734A062F517> /usr/lib/libcups.2.dylib
    0x986af000 - 0x986afff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x986dd000 - 0x98726fe7 libTIFF.dylib ??? (???) <B07126AD-8BDA-1B36-5EF4-5CD2BF650916> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <DEC6C669-EBBB-A533-6F97-A016BDBF9E6D> /usr/lib/libSystem.B.dylib
    Model: MacBookPro6,2, BootROM MBP61.0057.B09, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.14.7)
    Bluetooth: Version 2.3.2f4, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-898
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa130000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0xfa120000

    OK, the upgrade to 10.6.4 is what worked for me, because I was on 10.6.3:
    --Run software update, which should tell you you need to upgrade to 10.6.4.
    --Do not choose everything and update all at once, that crashed my kernel. I suggest you just update the system itself.
    --iTunes should open and your library should be fine (mine asked to locate the library).
    --After this, go back and do the Java and other necessary software updates. I avoided the Safari update because I have seen many posts about Safari system updates causing weird flukey things.
    One additional complication was that I was restoring from Time Machine after a transfer from old MBP to new MBP via Migration Assistant. That could have been responsible for the kernel panic. I was required to use the shipping disk to reinstall the system and do disk repair before I could upgrade to 10.6.4.

  • Online Backup/Restore error

    Just formated my hardrive and reinstalled VOBU desktop app. Went to restore and got "error while checking for changes". Totally freaked out if I cant get my data back. Anywone got a clue how to fix this?
    Thanks,

    Just formated my hardrive and reinstalled VOBU desktop app. Went to restore and got "error while checking for changes". Totally freaked out if I cant get my data back. Anywone got a clue how to fix this?
    Thanks,

  • Online DB2 database Copy via backup/restore

    Hi Guru's
    I am new in the world of DB2 (I am always working with Oracle)
    I have to perform an online database copy of our SAP which is running on DB2, but I do not want to use the SAPinst method
    I just want to perform it through the backup/restore method as I always do with oracle databases
    Which procedure do I have to follow on my source and target SIDs
    Regards
    Richard

    Hi Richard,
    Follow the below step db2 nackup restore activity.
    1). Perform full offline or online backup of source system
    2). Go to cd /sapmnt/SSID/exe and run the below script
    brdb6brt -bm RETRIEVE -es –replace SourceSID=TargetSID,db2SourceSID=db2TargetSID,/db2/SourceSID=/db2/TargetSID
    3). Above Generate the script copy the Target System.
    4). Offline PRD (Target System) Backup Images copy to Source Path (Any One Path)
    5). Stop SAP System only DB2 must be Started.
    6). Start the db2 backup redirect restored in Quality System
    7). before run the script below activity must be finished.
    Make Changes to the restore script
    Go to script path
    1). Replace Source SID (XXX) with Target SID (XXX)
    2). Change the backup location
    3). User (source db2sid) USING (Source db2sid Password)
                 USER db2xxx USING XXX(Password)
    8). Restoring Database
         Log in db2sid (db2sid) User
    Go to backup & script Path
    9). Run the below Script
    db2 -tvf <script.scr> for exp. db2 -tvf  xxx_NODE0000.scr
    After successfully restore backup below command run
    10). First Check Roll Forward Status
    Open DB with the below command
    db2 rollforward db <TargetSID> query status – check status of DB
    db2 rollforward db <TargetSID> complete
    11). Once the copy is complete we can check below parameter and make corrections as per your preprocessing
    Db2 list tablespaces show detail (To check tablespaces)
    parameter automatic storage & re-sized YES
    Check the Archive log (LOGARCHMATH1) path
    Log in db2sid & run the below command for change the db2 LOGARCHMATH1 Parameter value.
    After successfully change the parameter restart the db2 database
    12). Perform below step before the Start SAP System
    13). Create SAP connects user using
    PATH :- /usr/sap/SID/SYS/global
    scdb6up create <connect user password> <sidadm password>
    above command will update entry in /sapmnt/SID/global/dscdb6.conf
    Regards,

  • BI Online Backup recovery

    Hi experts,
    We need to make an online bakup of our BI system. But we had some infopackages that ran after the online backup, so the delta timestamps in ECC are greater than the timestamp of the backup.
    Do you know if after the recovery of the BI online backup the timestamps in ECC will be also reverted?
    If not, is there any way of performing this activity?
    Thanks in advance
    Best Regards

    hi,
    Find the document below it may help you.
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/001ef297-9bbf-2910-bbaa-babedc1b01ca;jsessionid=(J2EE3414800)ID1551428150DB11188012514138478496End
    Regards,
    Shiva.
    Edited by: Shivu  Kumar on Sep 17, 2009 7:16 AM

  • SAP BI online backup recovey

    Hi experts,
    We need to make an online bakup of our BI system. But we had some infopackages that ran after the online backup, so the delta timestamps in ECC are greater than the timestamp of the backup.
    Do you know if after the recovery of the BI online backup the timestamps in ECC will be also reversed?
    If not, is there any way of performing this reverse activity?
    Thanks in advance
    Best Regards
    Edited by: João Anastácio on Sep 17, 2009 12:23 AM

    We need to know why you need to do a restore. In case you can do a full recovery (apply all redo logs), then you don't loose anything.
    Besides that be aware that you might run into the NOLOGGING issue, have a look at sap note [849485 - Reconstruction of the NOLOGGING indexes after recovery|https://service.sap.com/sap/support/notes/849485]
    Cheers Michael
    Edit: sap note [547464 - Nologging Option when creating indexes|https://service.sap.com/sap/support/notes/547464] is also a suggested reading. This is generally only relevant to BI systems.

  • Online backup

    Hi
    After an online backup, if there is no checkpoint, there is no need for recovery, true?
    beacuse CHECKPOINT_CHANGE# of the datafiles are not modified therefore no need to recovery..

    nop during online backup the controlfile chekpoint and datafile checkpoint header is not synced.Upon restoration it will require recovery.
    Khurram

  • Oracle Restore from Online backup without any archive logs

    Hi,
    May be a dumb question. If I have a good online backup (say it took 2 hours to do that. And there is database activity while backup is going on), and lost all the archive logs happened after the online backup, is it possible at all to do the restore using that backup? complete or incomplete? and bring back the database to normal operation mode? Some details on this.
    Thanks.

    Let us see the reasoning behind this.
    Database:WORLDDB
    WORLDDB configuration:-
    TBSP_WDB
    ->TBSP_WDB_01.dbf
    ->TBSP_WDB_02.dbf
    SYSTEM
    ->SYSTEM.dbf
    USERS
    and so on for the tablespaces.
    CASE 1:-
    User managed backup.
    You issue
    ALTER TABLESPACE TBSP_WDB BEGIN BACKUP;
    DB keeps working all transactions are recorded in the redo stream, the scn information is not updated in the file header.
    Also note that the other tablespaces were been continuously worked on hence their scn numbers are a moving target.
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96572/osbackups.htm#10012
    So if you begin tablespace TBSP_WDB backup at time t1 and by the time you are done with your backups you are at time t2, you will need all of the archive log's between time t1 and t2.
    CASE 2:-
    If we do with rman, rman takes care of the file header update information and goes on its merry way, those details are hidden from the end user. If one of the tablespace is fractured, updated while backups are going on , rman knows about it and will re-read the affected blocks in question.
    My thinking would be that you might need archive logs, unless it is a cold backup, with switch logfiles in between.
    If you do hot backups you need archivelogs is my thought. The number of archivelogs required will be decreased considerably through rman.
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmconc1.htm#458821
    Summary:-
    Either way archivelogs are needed.

  • Restoring  whole db Online backup with redologs backup

    Dear all,
    I am planning to restore a whole DB online + redo logs backup, i have few doubts . please confirm..
    On Step 8, Restore and apply archivelog files ...
    First sequence number (first_seq) ..  (eg) 7276  
    Last sequence number (last_seq) ..  (eg) 7278
    we probably only have to mention the last_seq.... Now question is , is this the last archive created when the backup finished...(ie 7278) and in  the backup log, it was mentioned that  the Next archivelog is 7279...
    another question , when we are restoring this backup next day , can we apply archives created after 7278 to achive DB point in time..
    Thanks & regards
    Adnan

    Hi
    U have to recover the databse using the archive files after the backup was taken.
    The archive files should be copied from the source system to the target but make sure that u rename those archive files as acceptable to the target system ie log_archive_format parameter of the target system. ie sid should be there in the name of the archive files.
    One more thing if u wish to keep the target DB in sync with the source DB then u would need to apply all the archive files generated after the online backup was taken.
    Make sure to open the database in resetlogs mode
    In short the steps wud be as follows.
    1. Issue the following in  ur source system
    alter database backup controlfile to trace ; .
    2.Modify the .trc file  as below created under usertrace directory  which generally shud be /oracle/SID/saptrace/usertrace
    a. CREATE CONTROLFILE SET DATABASE "Target_SID" NORESETLOGS  ARCHIVELOG
    b.The directory structures of the redo log and datafiles as per the directory structure available in ur target system.
    c.Remove all other lines from the file ur file should end with like character set ...;
    d. Save the file as something.sql and copy it to the target system.
    3. Restore the online backup on the target system ...don't need to restore the redo log files.
        Also copy the archive file from the source system to the target system and rename them as per target system.
    4. In the target system connect as sysdba
    SQL> startup nomount
    SQL> @something.sql
    It wud say control file created and the DB will be mounted .
    5. Now issue the command
    Recover database using backup controlfile;
    Apply the archives when done issue the following
    alter database open resetlogs;
    Regards
    Kausik

Maybe you are looking for

  • Why do I get a webkit2webprocess warning on NFL pages?, why do I get a webkit2webprocess warning on NFL pages?

    the title is the question. The only time it really happens is when I look at pages about the National Football League. The pages work fine in other browsers. I am using a 3 year old toshiba Satellite 304. I used Vista as my operating system. Any help

  • PIR consumption

    Please suggest me with effective planning. I have a FG "A" having phantom A_PHAN which has a component "B" (planning strategy 70). when i plan for B, lets say i entered 600 qty in a planning table for 12/2010. now i got a sales order with 2 schedules

  • :-( dbmcli db_start error 1058

    dbmcli db_start error 1058 Trying again and again ..., on Windows XP SP2, to install WAS 64 SP9 from the SAPPRESS cd I get an error and I get the same error at exactly the same place when trying to install WAS 64 SP11 downloaded from SDN. I meanwhile

  • Remove suspension on my account.

    I am unable to purchase skype credit, I cannot use live chat because I am no eligible for premium services because I cannot purchase skype credit.. The account recovery page is a joke, there's no way I remember most of that information I've been a me

  • Firewire transfer of documents

    Someone help me before a breakup occurs. I did the required search before posting and nothing seemed appropriate to my concern. My girlfriend is attempting to transfer a document from her iBook using a firewire cable to my iMac Flat Panel. The screen