Backup Problem in both offline+redo and online+redo

Dear Experts,
When i am taking online+redolog backup to my tape i am getting the error.
BR0203I to /dev/rmt0.1 ...
BR0278E Command output of 'LANG=C dd obs=64k bs=64k if=/oracle/XP3/sapdata1/sr3_1/sr3.data1 of=/dev/rmt0.1':
dd: /oracle/XP3/sapdata1/sr3_1/sr3.data1: Invalid argument
BR0280I BRBACKUP time stamp: 2008-09-15 12.02.16
BR0279E Return code from 'LANG=C dd obs=64k bs=64k if=/oracle/XP3/sapdata1/sr3_1/sr3.data1 of=/dev/rmt0.1': 2
BR0222E Copying /oracle/XP3/sapdata1/sr3_1/sr3.data1 to/from /dev/rmt0.1 failed due to previous errors
please help me
Regards
Santosh
Edited by: santosh gaikwad on Sep 15, 2008 10:15 AM

Dear Experts
Thank you all a for your help.
I just wanted to inform you that my backup issue was resolved.
The main cause of the problem was database password which was accidently changed by my couleague.
When i reset the password to the one which i given during installation the backup started without any issue.
I am closing this thread as the problem was resolved.
Thanks to all of you.
Regards
Santosh.

Similar Messages

  • My iphone is not syching at itunes. Everytime it says your iphone as been diconnected whenever I try to synch it, while logo on phone and itunes says it is still connected. help I have this problem with both my Iphone4 and Iphone5 with backup as well

    My iPhone is not synching at iTunes. Every time it says your iPhone as been disconnected whenever I try to synch it, while logo on phone and iTunes says it is still connected. help I have this problem with both my Iphone4 and Iphone5. This problem is with the back up as well.

    Hi singhgurwinder79,
    The article linked below provides details that can help troubleshoot this error and get your iPhone to sync correctly with iTunes.
    iTunes: Resolve USB-related alerts
    http://support.apple.com/en-us/HT203843
    Regards,
    Allen

  • What is the difference between undo tablespace and online redo log files.

    what is the difference between undo tablespace and online redo log files. I am confused
    as per my knowledge undo tablespace is used to store the undo information when a table is being updated so that, just incase we need to rollback a transaction we know what was present in the table earlier.
    when a transaction fails the SMON performs the rollback of the data.
    This undo data is stored in the undo tablespace and read consistency if any is enforced.
    is my understanding till here correct?
    Now, can this undo data/before image not be stored in the redo log buffer and online redolog files?
    can redo-log files not store this information?
    in fact, is it that when undo tablespaces exist in a database, the undo data/before image is stored in both the undo tablespace and also the redo log files?
    kindly clarify my doubt.
    thank you.

    This question has been asked many times before. The answer is always the same.
    Yes, redo contains the before image of data (and the after-image). Therefore, it **COULD** be used to roll back a transaction.
    BUT... Redo is written sequentially. Using it to rollback your transaction would involve reading through all the redo written by maybe thousands of other people. It would be painfully slow.
    Your transaction is, however, directly linked to just the UNDO that it generates (which is JUST the before image of the data). So, your undo is your undo and doesn't share space with anyone else's undo. Therefore, using it to roll back YOUR transaction is fast.
    The fact that undo is only the before image of the data also makes it faster than wading through a sea of before and AFTER images as you'd find in redo. About twice as fast, in fact, since there's half the data. Roughly.
    Redo also gets written and flushed to disk whenever there's a commit, 3 seconds are up or too much (1MB, actually) redo gets generated between flushes caused by other factors. Your redo gets flushed when those things happen, even if you haven't actually committed your transaction. And redo logs recycle themselves, meaning that your redo -even if your transaction hasn't been committed yet- can be over-written by later transactions. Try rolling back when that's happened, if redo was the source of your rollback data!
    Undo, however, cannot be over-written if the transaction has not been committed. Ever. If you don't commit for three years, there will be three years' undo stored in your database (assuming you had the space, of course!).
    I could go on, but that will do. Redo is there fore RECOVERY, after catastrophe. Undo is there for read-consistency (and the occasional change of mind). Two different functions. Two different mechanisms. Each one highly tuned to doing what it does, why it does it, most efficiently and effectively.

  • Debugger Problems with both 2.4 and 3.0

    I've been developing a Cocoa app for Tiger using 2.4.x for the last year or so and have frequently been having problems with the debugger. Breakpoints are triggered correctly but the debugger will hang, for 10-20 seconds when stepping through the code, complaining of time-outs.
    Thankfully, this didn't happen during every debug run and I chalked it up to Xcode's debugger being slightly flakey. It was irritating, but I would simply restart the debugger and most times I could then debug far enough before the debugger started hanging to get the information I needed.
    In addition, variable display was frequently blatantly incorrect, often showing "out of scope" for variables which are guaranteed to be valid and in scope.
    I upgraded to Leopard last week and immediately installed Xcode 3.
    Debugger reliability has gone from bad to worse. Inline "in-Editor" debugging doesn't work at all. Never. It seems to be completely broken. The current position indicator never moves from the line with the triggered breakpoint.
    I have had more success with the traditional debugger set-up, but the reliability is much, much worse than with 2.4 under Tiger. It's so bad that I am faced with going back to 2.4 to do any serious debugging, which is something I really don't want to have to do...
    The behavior under 3.0 is as follows: The breakpoints trigger reliably, but single-stepping sometimes doesn't work at all. Instead of stepping into/over method calls, I just land in the assembly for the symbol:
    asm dyldstub_objcmsgSend
    Stepping in, over or out does nothing. The debugger never gets onto/into the line/method I want to step to. Debugging seems to be fine in certain modules/files, and refuses to work at all in others. All breakpoints are in application code (i.e. not in frameworks or dynamic libraries).
    The variables view is also frequently plagued by incorrect "out of scope" or "invalid" values.
    This is driving me absolutely nuts. A reliable debugger is the absolute minimum I need to get anything done and Xcode 3's debugger has proven to be hugely frustrating so far.
    Here's some more information about my development environment:
    1) I'm running Xcode 3 general release on a GM Leopard installation. I did a clean Leopard install. I am running on a 2GHz Core Duo MacBook Pro.
    2) My Xcode project was originally created by 2.4 and 3.0 was able to open it OK.
    3) I am building a Cocoa app which is dependent on 4 custom Objective C frameworks. The 4 framework projects are part of the application's Xcode project.
    4) The xcodeproj files are 2.4 format allowing me to develop/debug under Tiger with 2.4 if necessary. I am targeting the 10.4u SDK.
    5) The application is heavily multi-threaded
    Any thanks in getting the Xcode 3 debugger working would be vastly appreciated.
    Thanks,
    Simon
    Message was edited by: siwi

    siwi wrote:
    There goes that idea. Your configuration is almost identical to mine. I think we may be the only people using Objective-C++.
    If the behavior I am seeing is just 'par for the course' with GDB then I should be able to verify this by using GDB directly. Does anyone have any pointers on debugging a Cocoa app with GDB (without the Xcode front-end)?
    You can always display the Console and type GDB commands in by hand.
    If this is indeed a GDB issue (and therefore is endemic to Xcode) then I would be very surprised/disappointed. How could anybody do any serious development on Linux/OS X with this stuff?
    You indicated that you are familiar with Visual Studio. That must mean you are used to development on a PC. MacOS X is still (and now, officially) in the UNIX camp. Yes, GDB is a joke compared to Visual Studio or Codewarrior (RIP). But it isn't that bad for a free UNIX debugger. The Sun Forte debugger is a little better, but not a great deal. You can debug with it (GDB) but you'll have to get used to it. But on UNIX, developers just don't rely on debuggers as much as PC developers. It is a different culture. They also almost never use anything but C and never write multithreaded code. If you stick to single threaded C code, you'll find that Xcode and GDB work just fine. On a PC, I'm more apt to go right to the debugger. On UNIX, I'll see if I can fix it with printf/NSLog first. The debugger is more of a last resort.
    Plus, this is Xcode 3.0, note the ".0". I've only played with it for a few minutes now, but I can tell it still needs some work. I'm sure Apple knows that too. We have to get used to it too. It seems quite a bit different.
    If anyone from Apple's tools division/group is reading this thread then I would really appreciate some guidance on this...
    They aren't. You might try one of the developer mailing lists. I have gotten good information from the mailing lists and had people send me vicious e-mails because I didn't agree with them. Your mileage may vary.

  • Huge problems with both Linksys site and HND

    Hello,
    As business user of CISCO products and for @home using Linksys by cisco WRT610N with the Mediahub ive always been a huge fan of your products and still support it every day, however, i have been talking 3 times over chat support now about the 2 problems i have and it seems no one understands what is going on.
    1) I updated the firmware on my WRT610N to the latest from january 2009, succesfull
    2) I installed LELA and run the Home Network Defender setup, product installed, got a serialkey
    3) I click on a device change its security settings and then : PRODUCT NOT ACTIVATED.
    Trying to log  in over and over doesnt solve anything and reinstalling i tried already 3x aswell, i had to use a different emailadress now everytime, very annoying.
    Apart from that, i couldnt use my original login on your site anymore i am getting the request a new password emails with a new pass and link but when i then try to login, it keeps saying that the information is not correct, over and over, repeated the process already 10x, no difference.
    Therefor im now using a brand new registed username so i can at least post about my problems and hope Linksys (CISCO) will fix these issues so we can all make sure things work perfectly as with Cisco business products.
    I hope to hear from anyone asap as i wanna get my problems solved soon,
    Kind regards,
    Michiel
    TechConnect B.V.
    (Mod Note: Email address removed. Please use PM system) 
    Message Edited by giantherockstar on 03-18-2009 09:11 AM

    Sorry to hear about your issues.  Can you please private message me your phone number and email address? I'd like to set up a call to see how we can troubleshoot your issue.
    -Spencer

  • I've had problems with both FF 5 and 6 tabs hanging at random times, how can I fix this?

    Using Windows 7, 64 bit, Firefox 6...all plug-ins are up-to-date...I've checked flash, java, video display drivers, windows updates, run virus scans, checked for malware, cleaned temp files and profiles...all is up-to-date...still at random times on any website for about 30 seconds i get a not responding tab...if I wait it out then it will come back just fine. It happens with one tab open or several open and just happened as i was typing this. Add-ons i'm running: Adobe Acrobat 10.1.0.534, Java Platform SE 6 U26 6.0.260.3, Quake Live 0.1.0.433, Shockwave Flash 10.3.183.5, Silverlight Plug-In 4.0.60531.0........Extensions: Adblock Plus 1.3.9 and DownloadHelper 4.9.5. Thanks for your time and I hope to get this resolved.

    Have narrowed it down to flash, java or adblock plus. Only 3 plug-ins i'm running. All are up-to-date.

  • Time Machine Backup hangs on both USB and Time Capsule

    Hello!
    I have some problems with Time Machine backing up my MacBook Pro Retina 15" Late 2013 running Yosemite 10.10.2.
    I am using the MacBook both in the office and at home attached to a USB hub with KeyBord and external screen. The MacBook is usually closed and I put in sleep mode ("Ruhezustand" in German) when changing the location.
    In my office I have a Time Capsule and at home I am attaching an USB 3 external hard disc directly to the free USB port on the MacBook. Everything worked fine for a long time and I did not pay much attention to the updating process itself.
    Since a couple of weeks I have the problem, that Time Machine Backup hangs - on both USB-Drive and Time Capsule. This could happen at different positions like 550 MB of x.x GB or 3 KB of x.x GB (Calculating Time Remaining).
    The only way to run the backup completely is to restart the Mac. Then everything runs fine and the following automatic backups are running smoothly, too. It seems the problem only occours after moving from one location to another. 
    I tried checking the Volume of the Mac and the USB drive and also tried repairing Rights on the Volume.
    I also tried resetting the pram during the start-up procedure.
    Changes I made in the last months are moving from Mavericks to Yosemity, replacing old Cherry Keyboards with Apple keyboards and updating a driver for the USB-Hub including Lan-Access.
    Thank you for your help!
    Markus

    Ok, I got a lot of results. I hope this information is helpful. Keep in mind I restarted the machine and Time Machine is now working fine. This will probably be the case until I am in the office again (not before Tuesday).
    Start time: 17:29:46 03/21/15
    Revision: 1297
    Model Identifier: MacBookPro11,3
    System Version: OS X 10.10.2 (14C1514)
    Kernel Version: Darwin 14.1.0
    Time since boot: 1:47
    UID: 501
    USB
        USB3.0 Hub (VIA Labs, Inc.)
        AX88179 (ASIX Electronics Corporation)
        Samsung M3 Portable (Samsung Electronics Co., Ltd.)
        USB2.0 Hub (VIA Labs, Inc.)
        Wacom Wireless Receiver (WACOM Co., Ltd.)
        Intuos5 touch M (WACOM Co., Ltd.)
    System errors (per sec)
        xrdd (UID 0, error 60): 213
    Energy (lifetime)
        kernel_task (UID 0): 6.00
    Memory (MB)
        kernel_task (UID 0): 1324
    Firewall: On
    Wi-Fi
        Signal / Noise: -78 dBm / -86 dBm
        Signal / Noise: -77 dBm / 0 dBm
        Signal / Noise: -50 dBm / 0 dBm
        Signal / Noise: -74 dBm / 0 dBm
        Signal / Noise: -87 dBm / 0 dBm
    System caches/logs
        4,5 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-02-21 com.apple.WebKit.WebContent crash
        2015-02-21 hasplmd crash x20
        2015-02-22 hasplmd crash x19
        2015-02-23 hasplmd crash x20
        2015-02-24 com.apple.WebKit.WebContent crash x9
        2015-02-24 discoveryd crash
        2015-02-24 hasplmd crash x19
        2015-02-25 hasplmd crash x20
        2015-02-26 Adobe Bridge CC hang
        2015-02-26 hasplmd crash x20
        2015-02-27 hasplmd crash x20
        2015-02-28 hasplmd crash x19
        2015-03-01 hasplmd crash x20
        2015-03-02 hasplmd crash x20
        2015-03-03 discoveryd crash
        2015-03-03 hasplmd crash x20
        2015-03-06 Avira crash
        2015-03-07 Avira crash
        2015-03-07 Preview hang x2
        2015-03-07 com.apple.appkit.xpc.openAndSavePanelService hang
        2015-03-12 Mail crash
        2015-03-13 Mail crash
        2015-03-17 discoveryd crash
        2015-03-20 Safari crash
    HID errors: 7
    Kernel log
        Mar 21 08:50:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 08:50:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 08:50:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 09:51:59 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 09:52:00 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 09:52:00 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 09:52:00 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 10:28:21 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(AppleUSBHIDKeyboard)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(AppleUSBHIDKeyboard)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.192    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.224    USBF:    20521.224    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to deviceIOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 10:28:21 USBF:    20521.224    IOUSBHIDDriver(IOUSBHIDDriver)::RearmInterruptRead  returning error 0xe00002c0 (no such device), not issuing any reads to device
        Mar 21 13:12:08 IO80211AWDLPeerManager::failToEnable
        Mar 21 13:12:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 13:12:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 13:12:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 13:12:23 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:21:53 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:21:53 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:21:53 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:21:53 smb2_smb_parse_change_notify: smb_rq_reply failed 60
        Mar 21 15:42:33 SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    System log
        Mar 21 16:30:27 Mail: Stream 0x600000104920 is sending an event before being opened
        Mar 21 16:34:20 CalendarAgent: Stream 0x7fedb52c0970 is sending an event before being opened
        Mar 21 16:35:27 Mail: Stream 0x600000112480 is sending an event before being opened
        Mar 21 16:40:27 Mail: Stream 0x60000011cf80 is sending an event before being opened
        Mar 21 16:41:40 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fa2436194e0 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x67067 pid=723 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100006/0x186a6 queue
        Mar 21 16:41:40 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fa2436194e0 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x67067 pid=723 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100006/0x186a6 queue
        Mar 21 16:45:27 Mail: Stream 0x600000119c50 is sending an event before being opened
        Mar 21 16:50:27 Mail: Stream 0x618000302250 is sending an event before being opened
        Mar 21 16:50:28 Mail: Stream 0x618000305460 is sending an event before being opened
        Mar 21 16:52:01 CalendarAgent: Stream 0x7fedb3588010 is sending an event before being opened
        Mar 21 16:55:27 Mail: Stream 0x6180003021c0 is sending an event before being opened
        Mar 21 17:00:29 Mail: Stream 0x61000011c440 is sending an event before being opened
        Mar 21 17:05:27 Mail: Stream 0x608000110230 is sending an event before being opened
        Mar 21 17:07:45 CalendarAgent: Stream 0x7fedb522ebf0 is sending an event before being opened
        Mar 21 17:07:55 AddressBookSourceSync: Stream 0x7fc201cd14e0 is sending an event before being opened
        Mar 21 17:08:30 Mail: Stream 0x610000306390 is sending an event before being opened
        Mar 21 17:08:30 Mail: Stream 0x6000001164a0 is sending an event before being opened
        Mar 21 17:10:26 Mail: Stream 0x608000106b70 is sending an event before being opened
        Mar 21 17:15:26 Mail: Stream 0x608000111b80 is sending an event before being opened
        Mar 21 17:16:34 com.apple.backupd: Backup failed with error 18: The backup disk could not be found.
        Mar 21 17:17:32 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
        Mar 21 17:20:26 Mail: Stream 0x608000111d30 is sending an event before being opened
        Mar 21 17:25:26 Mail: Stream 0x608000108820 is sending an event before being opened
        Mar 21 17:28:02 CalendarAgent: Stream 0x7fedb52caa70 is sending an event before being opened
        Mar 21 17:29:15 WacomTouchDriver: IOHIDEventCreateWithBytes: Failed to create event at index=0 eventCount=96 eventDataOffset=4 totalEventDataSize=292
    launchd log
        Mar 19 08:44:03 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.226, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Mar 19 19:02:48 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.171, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 19 19:02:49 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.170, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 19 19:02:49 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.170, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 19 19:02:50 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.171, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 19 19:03:44 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.216, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Mar 20 11:20:33 com.apple.xpc.launchd.domain.user.loginwindow.3434.4294967295: Could not import service from caller: caller = WacomTabletDriv.3445, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 20 11:20:33 com.apple.xpc.launchd.domain.user.loginwindow.3434.4294967295: Could not import service from caller: caller = PenTabletDriver.3444, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 20 11:20:33 com.apple.xpc.launchd.domain.user.loginwindow.3434.4294967295: Could not import service from caller: caller = PenTabletDriver.3444, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 20 11:20:34 com.apple.xpc.launchd.domain.user.loginwindow.3434.4294967295: Could not import service from caller: caller = WacomTabletDriv.3445, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 20 11:21:58 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = WacomTabletDriv.167, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 20 11:21:59 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = PenTabletDriver.168, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 20 11:21:59 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = PenTabletDriver.168, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 20 11:21:59 com.apple.xpc.launchd.domain.user.loginwindow.72.4294967295: Could not import service from caller: caller = WacomTabletDriv.167, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 20 11:22:21 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.208, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Mar 20 13:02:54 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.168, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 20 13:02:54 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.167, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 20 13:02:54 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.167, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 20 13:02:55 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.168, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 20 13:03:08 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.203, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
        Mar 21 15:42:35 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.174, service = com.wacom.WacomTouchDriver.254496, error = 134: Service cannot load in requested session
        Mar 21 15:42:36 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.173, service = com.wacom.ConsumerTouchDriver.18208, error = 134: Service cannot load in requested session
        Mar 21 15:42:36 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = PenTabletDriver.173, service = com.wacom.TabletDriver.18492, error = 134: Service cannot load in requested session
        Mar 21 15:42:35 com.apple.xpc.launchd.domain.user.loginwindow.69.4294967295: Could not import service from caller: caller = WacomTabletDriv.174, service = com.wacom.TabletDriver.254780, error = 134: Service cannot load in requested session
        Mar 21 15:43:43 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.229, service = QA2G25RMZ4.com.wunderkinder.wunderlist-helper, error = 119: Service is disabled
    Loaded kernel extensions
        com.asix.driver.ax88179-178a (1.3.0)
    System services loaded
        com.adobe.adobeupdatedaemon
        com.apple.spindump
        - status: 75
        com.apple.watchdogd
        com.google.keystone.daemon
        com.microsoft.office.licensing.helper
        com.xrite.device.xrdd.plist
    System services disabled
        com.apple.mrt
    Login services loaded
        com.adobe.AAM.Scheduler-1.0
        com.adobe.ARM.UUID
        com.adobe.AdobeCreativeCloud
        com.apple.mrt.uiagent
        com.google.keystone.system.agent
        com.wacom.pentablet
        com.wacom.wacomtablet
        com.xrite.device.softwareupdate.plist
        de.nulldesign.TymeLaunchAtLogin
    Login services disabled
        QA2G25RMZ4.com.wunderkinder.wunderlist-helper
    User services disabled
        QA2G25RMZ4.com.wunderkinder.wunderlist-helper
    User login items
        iTunesHelper
        - /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app
        ScanSnap Manager
        - /Applications/ScanSnap/ScanSnap Manager.app
        i1ProfilerTray
        - /Applications/i1Profiler/i1ProfilerTray.app
        EOS Utility
        - /Applications/Canon Utilities/EOS Utility/EOS Utility.app
    Firefox extensions
        Mozilla Firefox hotfix
    iCloud errors
        bird 334
        cloudd 23
    Continuity errors
        lsuseractivityd 291
        sharingd 29
    Restricted files: 1941
    Lockfiles: 5
    High file counts
        Desktop: 70
    Contents of /Library/LaunchAgents/com.wacom.pentablet.plist
        - mod date: Aug 20 21:26:19 2014
        - checksum: 3556858023
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.pentablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/PenTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/com.wacom.wacomtablet.plist
        - mod date: Nov  5 00:40:04 2014
        - checksum: 2972905917
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.wacomtablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/WacomTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/com.xrite.device.softwareupdate.plist
        - mod date: Jun 23 21:26:30 2014
        - checksum: 3055576921
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.xrite.device.softwareupdate.plist</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/XRD Software Update.app/Contents/MacOS/XRD Software Update</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>9</integer>
        <key>Minute</key>
        <integer>0</integer>
        </dict>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.xrite.device.xrdd.plist
        - mod date: Jun 23 21:26:30 2014
        - checksum: 1464013229
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.xrite.device.xrdd.plist</string>
        <key>RunAtLoad</key>
        <true/>
        <!--
        <key>UserName</key>
        <string>com.xrite.device.user.xrd</string>
        <key>GroupName</key>
        <string>com.xrite.device.group.xrd</string>
        -->
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/xrdd</stri ng>
        </array>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: May 29 13:56:52 2014
        - checksum: 4116814193
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Extensions
        /Library/Extensions/AX88179_178A.kext
        - com.asix.driver.ax88179-178a
        /Library/Extensions/EPSONUSBPrintClass.kext
        - com.epson.print.kext.USBPrintClass
        /Library/Extensions/FTDIKext.kext
        - com.wacom.kext.ftdi
        /System/Library/Extensions/EPSONUSBPrintClass.kext
        - com.epson.print.kext.USBPrintClass
        /System/Library/Extensions/FileAccessControl.kext
        - com.avira.kext.FileAccessControl
        /System/Library/Extensions/JMicronATA.kext
        - com.jmicron.JMicronATA
        /System/Library/Extensions/Pen Tablet.kext
        - com.wacom.kext.pentablet
        /System/Library/Extensions/SiLabsUSBDriver.kext
        - com.silabs.driver.CP210xVCPDriver
        /System/Library/Extensions/SiLabsUSBDriver64.kext
        - com.silabs.driver.CP210xVCPDriver64
        /System/Library/Extensions/Wacom Tablet.kext
        - com.wacom.kext.wacomtablet
    Applications
        /Applications/AdWords Editor.app
        - com.google.adwordseditor
        /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app
        - N/A
        /Applications/Canon Utilities/EOS Utility/EU2/ReadMe(EOS Utility).app
        - jp.co.canon.DocumentLauncher
        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
        - com.microsoft.ASApplication
        /Applications/Microsoft Office 2011/Office/Equation Editor.app
        - com.microsoft.EquationEditor
        /Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app
        - com.microsoft.office.setupassistant
        /Applications/Microsoft Office 2011/Office/Microsoft Query.app
        - com.microsoft.Query
        /Applications/ScanSnap/Manual/Manual.app
        - jp.co.pfu.ScanSnap.ManualLauncher
        /Applications/ScanSnap/Manual/Manual2.app
        - jp.co.pfu.ScanSnap.ManualLauncher
        /Applications/ScanSnap/OnlineUpdate.app
        - jp.co.pfu.OnlineUpdate
        /Applications/ScanSnap/Scan to Office/Scan To Salesforce.app
        - jp.co.pfu.ScanSnap.ScanToSalesforce
        /Applications/ScanSnap/Scan to Office/Scan to E-mail.app
        - jp.co.pfu.ScanSnap.STMApp
        /Applications/ScanSnap/Scan to Office/Scan to Evernote1.app
        - jp.co.pfu.ScanSnap.ScantoEvernote1
        /Applications/ScanSnap/Scan to Office/Scan to Evernote2.app
        - jp.co.pfu.ScanSnap.ScantoEvernote2
        /Applications/ScanSnap/Scan to Office/Scan to Folder.app
        - jp.co.pfu.ScanSnap.ScanToFolder
        /Applications/ScanSnap/Scan to Office/Scan to GoogleDocs.app
        - jp.co.pfu.ScanSnap.ScantoGDoc
        /Applications/ScanSnap/Scan to Office/Scan to Print.app
        - jp.co.pfu.ScanSnap.STPApp
        /Applications/ScanSnap/Scan2Mobile.app
        - jp.co.pfu.ScanSnap.Scan2Mobile
        /Applications/ScanSnap/ScanSnap Manager.app
        - jp.co.pfu.ScanSnap.V10L10
        /Applications/ScanSnap/ScanSnap Viewer.app:̈gung:
        - N/A
        /Applications/ScanSnap/ScanToMobileTrans.app
        - jp.co.pfu.ScanSnap.ScanToMobileTrans
        /Applications/ScanSnap/Sub/RegistScanSnap.app
        - N/A
        /Applications/ScanSnap/Sub/SSLog.app
        - jp.co.pfu.ScanSnap.SSLog
        /Applications/ScanSnap/Sub/SSMagAdjust.app
        - com.fujitsu.pfu.SSMagAdjust
        /Applications/ScanSnap/Sub/ScanSnapUnInstaller.app
        - jp.co.pfu.ScanSnap.Uninstaller
        /Applications/ScanSnap/SupportTool.app
        - jp.co.pfu.ScanSnap.SupportTool
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Wacom Tablet.localized/Wacom Help.app
        - com.intel.nw
        /Library/Application Support/Adobe/CEPServiceManager4/extensions/AdobeExchange/assets/ExmanMac/Conte nts/MacOS/LogTransport2.app
        - N/A
        /Library/Application Support/Adobe/CEPServiceManager4/html/CEPHtmlEngine.app
        - com.adobe.cep.CEPHtmlEngine
        /Library/Application Support/Adobe/InDesign/Version 10.0/AdobeInDesign10AppBase/JFS/Adobe InDesign CC 2014.app
        - N/A
        /Library/Application Support/Adobe/InDesign/Version 10.0/AdobeInDesign10AppBase/MFS/Adobe InDesign CC 2014.app
        - N/A
        /Library/Application Support/Adobe/InDesign/Version 10.0/AdobeInDesign10AppBase/RFS/Adobe InDesign CC 2014.app
        - N/A
        /Library/Application Support/Adobe/Installers/AdobeInDesign10AppBase/ExtraFiles/INSTALLDIR_EXE/Adobe InDesign CC 2014.app
        - N/A
        /Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/X-Rite Device Services.app
        - com.xrite.device.X-Rite-Device-Services
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/TWAIN Data Sources/CanoScan LiDE 110.ds
        - com.twainds.lide110.scangear170100.canon
        /Library/PDF Services/Save as Adobe PDF.app
        - com.apple.automator.SaveasAdobePDF
        /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/EpsonSuppliesTool4.app
        - com.epson.ijprinter.EpsonSuppliesTool4
        /Users/USER/Documents/Sichern auf USB-Platte zuhause.app
        - com.apple.automator.Sichern auf USB-Platte zuhause
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_aohghmighlieiainnegkcijnfilokake/Default aohghmighlieiainnegkcijnfilokake.app
        - com.google.Chrome.app.Default-aohghmighlieiainnegkcijnfilokake-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_apdfllckaahabafndbhieahigkjlhalf/Default apdfllckaahabafndbhieahigkjlhalf.app
        - com.google.Chrome.app.Default-apdfllckaahabafndbhieahigkjlhalf-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_coobgpohoikkiipiblmjeljniedjpjpf/Default coobgpohoikkiipiblmjeljniedjpjpf.app
        - com.google.Chrome.app.Default-coobgpohoikkiipiblmjeljniedjpjpf-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_hipbfijinpcgfogaopmgehiegacbhmob/Default hipbfijinpcgfogaopmgehiegacbhmob.app
        - com.google.Chrome.app.Default-hipbfijinpcgfogaopmgehiegacbhmob-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_nlbjncdgjeocebhnmkbbbdekmmmcbfjd/Default nlbjncdgjeocebhnmkbbbdekmmmcbfjd.app
        - com.google.Chrome.app.Default-nlbjncdgjeocebhnmkbbbdekmmmcbfjd-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_nmmhkkegccagdldgiimedpiccmgmieda/Default nmmhkkegccagdldgiimedpiccmgmieda.app
        - com.google.Chrome.app.Default-nmmhkkegccagdldgiimedpiccmgmieda-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_pjkljhegncpnkpknbcohdijeoejaedia/Default pjkljhegncpnkpknbcohdijeoejaedia.app
        - com.google.Chrome.app.Default-pjkljhegncpnkpknbcohdijeoejaedia-internal
        /Users/USER/Library/Application Support/WebEx Folder/Add-ons/Cisco WebEx Start.app
        - com.cisco.webex.Cisco-WebEx-Start
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/WacomMultiTouch.framework
        - com.wacom.WacomMultiTouch
        /Library/Frameworks/XRiteDevice.framework
        - com.xrite.xritedevice
    PrefPane
        /Library/PreferencePanes/PenTablet.prefPane
        - com.wacom.PenTabletSettingsPrefPane
        /Library/PreferencePanes/WacomTablet.prefPane
        - com.wacom.settingsPrefPane
    Bundles
        /Library/Application Support/Adobe/APE/3.4/adbeapecore.framework/Versions/A/Libraries/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.4-10.5.plugin
        /Library/Application Support/Adobe/Plug-Ins/CC/File Formats/Camera Raw.plugin
        - com.adobe.CameraRaw
        /Library/Application Support/DxO Labs/dvpv1/PhotoshopPlugin-automation.plugin
        /Library/Application Support/DxO Labs/dvpv1/PhotoshopPlugin-filter.plugin
        - N/A
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - N/A
        /Library/Internet Plug-Ins Disabled/AdobeAAMDetect.plugin
        - com.adobe.adobecp
        /Library/Internet Plug-Ins Disabled/AdobePDFViewer.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Internet Plug-Ins Disabled/AdobePDFViewerNPAPI.plugin
        - com.AdobeAAMDetectLib.AdobeAAMDetect
        /Library/Internet Plug-Ins/AdobeAAMDetect.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/WacomTabletPlugin.plugin
        - com.AdobeAAMDetectLib.AdobeAAMDetect
        /Users/USER/Library/Internet Plug-Ins/WebEx64.plugin
        - com.microsoft.sharepoint.browserplugin
        - com.WacomTabletPluginLib.WacomTabletPlugin
        - com.cisco_webex.plugin.gpc64
    Bundles (new)
        /Applications/Wunderlist.app
        - com.wunderkinder.wunderlistdesktop
        /Applications/Wunderlist.app/Contents/Library/LoginItems/WunderlistHelper.app
        - null
        /Applications/iPhoto.app
        - com.apple.iPhoto
        /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
        - null
    Library paths
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/advanced render.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/alembic.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/browser.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/ca.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/ca2.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/clothilde.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/compositing.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/dwgobjects.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/dynamics.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/expressiontag.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/hair.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/mocca.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/model.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/mograph.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/motioncam.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/newman.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/objects.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/openexr.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/python.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/sculpt.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/shader.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/sky.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/sla.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/thinking particles.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/tpoperators.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/xpressocore.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/bin/modules/xtensions.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/addons.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/advanced render.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/alembic.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/archigrass.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/bitmapfilter.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/bpexchange.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/browser.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/ca.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/ca2.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/cameramapper.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/cineman.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/clothilde.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/collada14.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/collada15.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/compositing.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/deployment.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/dwg.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/dwgobjects.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/dynamics.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/exchanges.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/expressiontag.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/fbx.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/hair.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/iges.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/licenseserver.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/metrics.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/mocca.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/model.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/mograph.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/motioncam.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/motiontracker.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/newman.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/objects.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/onlinehelp.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/onlineupdater.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/openexr.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/python.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/relaxuv.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sculpt.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sculptbrushes.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/shader.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sketch.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sky.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/sla.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/spacemouse.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/teamrender.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/texturemanager.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/thinking particles.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/tpoperators.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/walkthrough.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/xpressocore.dylib
        /Applications/Adobe After Effects CC 2014/Plug-ins/MAXON CINEWARE AE/(CINEWARE Support)/lite/modules/xtensions.dylib
        /Applications/Adobe InDesign CC 2014/Plug-Ins/Dictionaries/LILO/Linguistics/UserDictionaryMigrationTool/Framewo rks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
        /Applications/Adobe InDesign CC 2014/Plug-Ins/Dictionaries/LILO/Linguistics/UserDictionaryMigrationTool/Framewo rks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
        /Applications/Adobe InDesign CC 2014/Plug-Ins/Dictionaries/LILO/Linguistics/UserDictionaryMigrationTool/Framewo rks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0.dylib
        /Applications/Adobe InDesign CC 2014/Plug-Ins/Dictionaries/LILO/Linguistics/UserDictionaryMigrationTool/Framewo rks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
        /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
        /Applications/Microsoft Office 2011/Office/OPF.framework/Versions/14/Resources/OPF_Common.dylib
        /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/Fm20.dylib
        /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/MicrosoftOLE2TypesLib.dylib
        /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RefEdit.dylib
        /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RichEdit.dylib
        /Applications/ScanSnap/Lib/Intel/libFREngine.dylib
        /Applications/ScanSnap/Lib/PPC/libFREngine.dylib
        /Applications/ScanSnap/Lib/libABBYYWrapper.dylib
        /Applications/ScanSnap/Lib/libExtOCR.dylib
        /Applications/ScanSnap/Lib/libF5alocreCoreLib.dylib
        /Applications/ScanSnap/Lib/libIPP_dlib.dylib
        /Applications/ScanSnap/Lib/libMarkerOCR.dylib
        /Applications/ScanSnap/Lib/libOCRControl.dylib
        /Applications/ScanSnap/Lib/libf5alocrl.dylib
        /Applications/ScanSnap/Lib/libf5awzbin.dylib
        /Applications/ScanSnap/Lib/libf5awztbl.dylib
        /Applications/ScanSnap/Lib/libf5memctl.dylib
        /Applications/ScanSnap/Lib/pfocrwrp.dylib
        /Applications/Utilities/Adobe Application Manager/D6/D6Native.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/ARKSelector.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/Setup.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/resources/libraries/ARKCmdCaps.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/resources/libraries/ARKCmdFS.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/resources/libraries/ARKEngine.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE5/resources/libraries/AdobePIM.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/Setup.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/libraries/ARKCmdCaps.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/libraries/ARKCmdFS.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/libraries/ARKEngine.dylib
        /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources/libraries/AdobePIM.dylib
        /Applications/Utilities/Adobe Application Manager/DWA/DWANative.dylib
        /Applications/Utilities/Adobe Application Manager/LWA/PWANative.dylib
        /Applications/Utilities/Adobe Application Manager/LWA/adobe_caps.dylib
        /Applications/Utilities/Adobe Application Manager/LWA/adobe_oobelib.dylib
        /Applications/Utilities/Adobe Application Manager/LWA/adobe_upgrade.dylib
        /Applications/Utilities/Adobe Application Manager/P6/IMSLib.dylib
        /Applications/Utilities/Adobe Application Manager/P6/P6Native.dylib
        /Applications/Utilities/Adobe Application Manager/P6/VulcanBridge.dylib
        /Applications/Utilities/Adobe Application Manager/P6/VulcanMessage.dylib
        /Applications/Utilities/Adobe Application Manager/P6/adobe_oobelib.dylib
        /Applications/Utilities/Adobe Application Manager/P6/adobe_upgrade.dylib
        /Applications/Utilities/Adobe Application Manager/P6/axlib.dylib
        /Applications/Utilities/Adobe Application Manager/P7/IMSLib.dylib
        /Applications/Utilities/Adobe Application Manager/P7/P7Native.dylib
        /Applications/Utilities/Adobe Application Manager/P7/VulcanBridge.dylib
        /Applications/Utilities/Adobe Application Manager/P7/VulcanMessage4.dylib
        /Applications/Utilities/Adobe Application Manager/P7/VulcanMessage5.dylib
        /Applications/Utilities/Adobe Application Manager/P7/adobe_oobelib.dylib
        /Applications/Utilities/Adobe Application Manager/P7/adobe_upgrade.dylib
        /Applications/Utilities/Adobe Application Manager/P7/axlibv7.dylib
        /Applications/Utilities/Adobe Application Manager/UWA/UWANative.dylib
        /Applications/Utilities/Adobe Application Manager/core/AdobePIM.dylib
        /Applications/Utilities/Adobe Application Manager/core/switcher/CCM_UI.dylib
        /Applications/Utilities/Adobe Application Manager/core/switcher/DWA_UI.dylib
        /Applications/Utilities/Adobe Application Manager/core/switcher/LWA_UI.dylib
        /Applications/Utilities/Adobe Creative Cloud/ACC/C3ContainerBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/AppsPanel/AppsPanelIL.dylib
        /Applications/Utilities/Adobe Creative Cloud/AssetsPanel/AssetsPanelBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/BehancePanel/BehancePanelBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/CEF/Chromium Embedded Framework.framework/Libraries/libcef.dylib
        /Applications/Utilities/Adobe Creative Cloud/CEF/libplugin_carbon_interpose.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/ANSClient.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/Analytics.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/C3Prefs.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/CmdCntr.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/LocManager.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/NotificationManager.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/VulcanMessage5.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreExt/VulcanWrapper.dylib
        /Applications/Utilities/Adobe Creative Cloud/CoreSyncPlugins/ExchangePlugin/ExManCoreLib/Contents/Frameworks/libExManC oreLibCoreSync64.dylib
        /Applications/Utilities/Adobe Creative Cloud/ElevationManager/ElevationManager.dylib
        /Applications/Utilities/Adobe Creative Cloud/HEX/HEX.dylib
        /Applications/Utilities/Adobe Creative Cloud/HomePanel/HomePanelBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/MarketPanel/MarketPanelBL.dylib
        /Applications/Utilities/Adobe Creative Cloud/NEX/NEX.dylib
        /Applications/Utilities/Adobe Creative Cloud/NEX/NEXUILibrary.dylib
        /Applications/Utilities/Adobe Creative Cloud/core/NXGCore.dylib
        /Applications/Utilities/Adobe Creative Cloud/utils/AdobePIM.dylib
        /Library/Application Support/Adobe/APE/3.4/adbeapecore.framework/Versions/A/Libraries/WebKit.dylib
        /Library/Application Support/Adobe/Acrobat 11 Helper Frameworks/adobe_oobelib/adobe_caps.dylib
        /Library/Application Support/Adobe/Acrobat 11 Helper Frameworks/adobe_oobelib/adobe_oobelib.dylib
        /Library/Application Support/Adobe/Acrobat 11 Helper Frameworks/adobe_oobelib/adobe_upgrade.dylib
        /Library/Application Support/Adobe/Acrobat 11 Helper Frameworks/adobe_oobelib/axlib.dylib
        /Library/Application Support/Adobe/CEPServiceManager4/lib/CSXS-Installer-Hook.dylib
        /Library/Application Support/Adobe/CEPServiceManager4/lib/ServiceManager-Launcher.dylib
        /Library/Application Support/Adobe/Installers/AdobeDigitalPublishingCC2014/CustomHooks.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Analog Efex Pro 2/Analog Efex Pro 2.ApertureEdit/Contents/Helpers/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Analog Efex Pro 2/Analog Efex Pro 2.ApertureEdit/Contents/Resources/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Color Efex Pro 4/Color Efex Pro 4.ApertureEdit/Contents/Helpers/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Color Efex Pro 4/Color Efex Pro 4.ApertureEdit/Contents/Resources/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/HDR Efex Pro 2/HDR Efex Pro 2.ApertureEdit/Contents/Helpers/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/HDR Efex Pro 2/HDR Efex Pro 2.ApertureEdit/Contents/Resources/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Silver Efex Pro 2/Silver Efex Pro 2.ApertureEdit/Contents/Helpers/breakpadUtilities.dylib
        /Library/Application Support/Aperture/Plug-Ins/Google/Silver Efex Pro 2/Silver Efex Pro 2.ApertureEdit/Contents/Resources/breakpadUtilities.dylib
        /Library/Application Support/DxO Labs/dvpv1/libLoggerDll.dylib
        /Library/Application Support/DxO Labs/dvpv1/libPhotoshopPlugin-qt.dylib
        /Library/Application Support/Mozilla/Extensions/{UUID}/EMAILedotcom/components/WCFirefox_x86Extn.dyl ib
        /Library/Application Support/Mozilla/Extensions/{UUID}/EMAILedotcom/components/WCFirefox_x86_64Extn. dylib
        /Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/PlugIns/i1Pro.xrdevice/Contents /Frameworks/libi1Fun.dylib
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/fhasqdkt.default/gmp-gmpopenh264/1.1/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Firefox/Profiles/fhasqdkt.default/gmp-gmpopenh264/1.3/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.7.771/_platform_specific/mac_x64/libwidev inecdm.dylib
        /Users/USER/Library/Application Support/WebEx Folder/10_1524/cmcrypto-29.0.0.1.dylib
        /Users/USER/Library/Application Support/WebEx Folder/10_1524/libcrypto-0.1.0.6.dylib
        /Users/USER/Library/Application Support/WebEx Folder/10_1524/libssl-0.1.0.6.dylib
     

  • Dataguard lost both Primary redo log and standby redo log files

    Hi,
    I am new to data guard, i came acorss a scenario where we loose both primary redo log file and standby redo log files.
    Can someone please help me understand how to recover from this situation.
    Thanks!

    >loose both primary redo log file and standby redo log files
    We have to be very clear.
    There are (set A) online redo log files  and (set B) standby redo log files at (location 1) Primary and (location 2) Standby.
    The standby redo log files, depending on the configuration, aren't strictly mandatory.  The standby can be applying redo without online redo log files present as well, depending on how it was setup.
    So, the question is  : Did you lose online redo log files at the primary ?  Didn't the primary shutdown itself then ? If so, you have to do an incomplete recovery at the primary OR switch over to the standby (which may or may not have received the last transaction, depending on how it was configured and operating)   OR restore from the standby (again, with possible loss of transactions) to the primary.
    Hemant K Chitale

  • Backup online redo log files

    Hi All
    Can you please explain for me the main reason that we do not have to backup the online redo log using RMAN ?
    Thanks

    The online redo logfiles are necessary to perform a complete recovery of the database. During database recovery, Oracle will apply the archived redo logfiles and online redo logfiles to roll the database forward and finally remove uncommitted transactions. If any of the online redo logfile group is active and missing, the database recovery will be incomplete and the database needs to be opened with restlogs, causing a new database incarnation.
    You have to shutdown the datrabase to be able to perform a backup of the online redo logfiles, or find another method to create a time based snapshot of the data to prevent data movement while the redo logfiles are in use in order to keep datafile headers, controlfile and redo logfiles in sync. It is for that reason that you multiplex and mirror redo logfiles.

  • Best practice - online redo logs and virtualization

    I have a 10.1.0.4 instance (soon to be migrated to 11gr2) running under Windows Server 2003.
    We use a non-standard disk distribution scheme -
    on the c: drive we have oracle_home as well as directories for control files and online redo logs.
    on the d: drive we have datafiles
    on the e: drive we have archive log files and another directory with online redo logs and another copy of control file
    my question is this:
    is it smart practice to have ANY online redo logs or control file on the same spindle with archive logs?
    Our setup works fairly well but we are in the process of migrating the instance first to ESX server and SAN and then secondly to 11gtr2 64bit under server 2008 64 and when we bring up our instance on the VM for testing we find that benchmarking the ESX server (dual Xeon 3.4ghz with 48gb RAM running against FalconStor NSS SAN with 15k SAS disks over iSCSI) against the production physical server (dual Xeon 2.0ghz with 4gb RAM using direct attached SATA 7200rpm drives) we find that some processes run faster on the ESX box and some run 40-100% slower. Running Statspack seems to identify lots of physical read waits as well as some waits for redo and controlfiles.
    Is it possible that in addition to any overhead introduced by ESX and iSCSI (we are running Jumbo Frames over 1gb) we may have contention because the archive logs are on the same "spindle" (virtual) as the online redo and control files?
    We're looking at multiple avenues to bring the 2 servers in line from a performance standpoint - db configuration, memory allocation, possible move to 10gb network, possible move to SSD storage tray, possible application rewrites. But from the simplest low hanging fruit idea, if these files should not be on the same spindle thats an easy change to make and possibly eke out an improvement.
    Ideas?
    Mike

    Hi,
    "Old" Oracle standard is to use as many spindles as possible.
    It looks to me, you have only 1 disk with several partitions on it ??
    In my honest opinion you should anyway start by physically seperating OS from Oracle, so let the C: drive to the Windows OS
    Take another physical seperate D: drive to install you application.
    Use yet another set of physical drives, preferably in RAID10 setup, for your database and redo logs
    And finally yet another disk for the archive logs.
    We have recently configured a Windows 2008 server with an 11G Db, which pretty much follows the above setup.
    All non RAID10 disks are RAID1 ( mirror ) and we even have some SSD's for hot tables and redo-logs.
    The machine, or must I say the database, operates like a high speed train, very, very fast.
    Ofcourse keep in mind the number of cores ( not only for licensing ) and the amount of memory.
    Try to prevent the system from swapping, because that is a performance killer!
    Edit: And even if you put a virtual layer in between, try to seperate the virtual disks as much as possible over physical disks
    Success!
    FJFranken
    Edited by: fjfranken on 7-okt-2011 7:19

  • Multiplexing Online redo logs, archive logs, and control files.

    Currently I am only multiplexing my control files and online redo logs, My archive logs are only going to the FRA and then being backed up to tape.
    We have to replace disks that hold the FRA data. HP says there is a chance we will have to rebuild the FRA.
    As my archive logs are going to the FRA now, can I multiplex them to another disk group? And if all of the control files, online redo logs and archive logs are multiplexed to another disk group, when ASM dismounts the FRA disk group due to insufficient number of disks, will the database remain open and on line.
    If so then I will just need to rebuild the ASM volumes, and the FRA disk group and bring it to the mount state, correct?
    Thanks!

    You can save your online redo logs and archive logs anywhere you want by making use of of init params create_online_log_dest and log_archive_dest_n. You will have to create new redo log groups in the new location and drop the ones in the FRA. The archive logs will simply land wherever you designate with log_archive_dest_n parameters. Moving the control files off FRA is a little trickier because you will need to restore your controlfile to a non-FRA destination and then shutdown your instance, edit the control file param to reflect changes and restart.
    I think you will be happier if you move everything off the FRA diskgroup before dismounting it, and not expecting the db to automagically recover from the loss of files on the FRA.

  • Size archive log different with online redo log

    Dear Experts,
    I had a problem with archive redo log size. I saw the size between archive redo log and online redo log is different.
    The online redo log on path /oracle/SID/origlogA/log_g17m1.dbf , the size is 280MB, but on archive log the size just 130MB.
    Why the size different? How to change the archive redo log?
    We are running with Oracle 11.2.0.4.
    Please aid me to solve this issue.
    Thanks
    Edy

    Hi,
    Yes, all of the size archive logs mismatch with online redolog.
    I tried dump the trace file using command "alter database backup control file to trace file" and here is the result:
    STARTUP NOMOUNT
    CREATE CONTROLFILE REUSE DATABASE "SID" NORESETLOGS  ARCHIVELOG
        MAXLOGFILES 255
        MAXLOGMEMBERS 3
        MAXDATAFILES 508
        MAXINSTANCES 50
        MAXLOGHISTORY 46720
    LOGFILE
      GROUP 5 (
        '/oracle/SID/origlogA/log_g15m1.dbf',
        '/oracle/SID/mirrlogA/log_g15m2.dbf'
      ) SIZE 280M BLOCKSIZE 512,
      GROUP 6 (
        '/oracle/SID/origlogB/log_g16m1.dbf',
        '/oracle/SID/mirrlogB/log_g16m2.dbf'
      ) SIZE 280M BLOCKSIZE 512,
      GROUP 7 (
        '/oracle/SID/origlogA/log_g17m1.dbf',
        '/oracle/SID/mirrlogA/log_g17m2.dbf'
      ) SIZE 280M BLOCKSIZE 512,
      GROUP 8 (
        '/oracle/SID/origlogB/log_g18m1.dbf',
        '/oracle/SID/mirrlogB/log_g18m2.dbf'
      ) SIZE 280M BLOCKSIZE 512
    -- STANDBY LOGFILE
    DATAFILE
    Output ommited
    Thanks
    Edy

  • Backup on external HD for Mac and PC

    I'm planning to use LaCie's Silverkeeper to do a backup of my Mac onto an external hard drive that is formatted as MS-DOS (to use with both Mac and PC). I also have a PC in my household that I'd like to backup a few things onto this external drive. I've been reading these discussions about people having problems with not being able to copy certain Mac files due to some characters not allowed on Windows (such as "/"), and restoring issues due to the drive not being Mac Extended format. So is there a way I can confidently use this drive to backup data from both the Mac and PC, and be able to restore? If I reformat the drive to Mac Extended, will I be able to copy any files from the PC onto it?

    An MSDOS formatted drive should not be used for OS X backups. If you need to do PC backups then I would suggest a separate external drive. Otherwise, format the drive for use with OS X (Mac OS Extended.) Get MacDrive (Media Four) for the PC which enables Windows to read/write Mac drives.
    Alternatively if you think you are sufficiently skilled you can try the technique outlined here for creating HFS+ and FAT32 partitions on one drive.

  • Can I import both from NSTC and PAL cameras in one project?

    Hi there.
    I have a question.
    I am going to start on a project, a music video, and import video footage recorded from a SONY HVR-Z7U in America, that is 29.97fps NSTC.
    I'm also going to film in Europe, with a Canon HV30, that is PAL.
    So I wonder if there will be any problems importing both HD NSTC and HD PAL footage to a project? Or how should I do.
    I have already opened a 1080i30(60) HD project in CS4 and started playing with the NSTC footage. Is it correct?
    Thank you

    Why not shoot a trial clip in PAL and test it in your project?

  • Data logger and online processing application

    Dear All
    My application should include both data logging and online processing threads which are synchronized. I already implemented that by means of something we call "Ring buffer" which is an array containing the data and when the data stream reach its end it start over again from first index. It works almost well but sometimes it seems that my "timed loop" which is my processing thread is a little bit ahead of my data logger thread and it makes some distortion on data stream in processing thread but of course not in data logger.
    Since this type of application is very classic, we should have a kind of general prototype (example) for its implementation which provides fully synchronization between processing and logger threads so I was wondering if somebody knows where I should look into?
    Best regards
    Afshin

    Hello Afshin,
    Have a look at Software Circular Buffer in LabVIEW and Software Circular Buffer Reference Library for Multi-Channel Data Acquisition.
    The latter comes with an example.
    Regards,
    Eirikur Runarsson
    Platinum Applications Engineer
    NI Denmark

Maybe you are looking for