Query slows down after upgrade

Hi,
After upgrade from oracle 10 to oracle 11 a simple query is slowing down alot.
Same amount of records, same table only the execution cost time is increased
Can someone give me some feedback over this problem?
Can I check some things to look into the problem?
Thx in advance.
Greetings
query:
Select nvl(sum(a.BM_OPENSTAAND_DEBET- a.BM_OPENSTAAND_CREDIT),0)
from bh.bh123gh a
where
a.F123_AR_NR>='4400000000' and
a.F123_AR_NR<='4404000000' and
a.F123_KL_LEV_AR_NR='0631001000' and
a.SRT_REK=2 and
a.F123_BKJR>=0000 and
a.F123_BKJR<=2011 and
a.F123_FIRMA=2
explain plans
oracle 11
cost 1,792
Bytes: 38
Cardinality: 1
oracle 10
cost 1,594
Bytes: 38
Cardinality: 1

>
After upgrade from oracle 10 to oracle 11 a simple query is slowing down alot.
Same amount of records, same table only the execution cost time is increased
Can someone give me some feedback over this problem?
Can I check some things to look into the problem?
Thx in advance.
>
Is it just one query or all queries are behaving strangely? If it's just one query, do a trace and see where it's slowing down.
In the meanwhile, you can also modify the optimizer_features_enable parameter at session level and check the explain plan.
Alter session set optimizer_features_enable='10.2.0.5';
Now test the query.
By the way, if you are just worried about the COST factor, you can just ignore it. COST by itself has no real meaning. You will only have to look at the response time.
Regards

Similar Messages

  • System slow down after upgrade to 10.10.2

    Still have a slow down after updating to 10.10.2    
    Tried everything I can think of.
    Get spinning color wheel for a long time when opening even small files. Scrolling through folders, cursor hangs for a moment. opening and saving takes much longer.
    Used HD repair and repaired permissions and diagnosed HD.  No problems.
    Looking at Activity Monitor, I don't see anything that stand out-
    -C

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • LR 2.5 slows down after upgrading to Snow Leopard

    This is my first post, so first of all I'd like to say hello to everybody here and apologize for my poor english
    My computer is an iMAC with an Intel Core 2 Duo, 4GB RAM, 500GB HD and a graphic card NVIDIA GeForce 8800 GS with 512 MB VRAM.
    The LR database is contains, up to now, about 5000 photos most of them in NEF format (my camera is a Nikon D300)
    In the last month I noticed that the performance slowed down consistently as thumbnails refresh started taking a long time as well as editing photos and the overall LR2 (executing at 64bits) working.
    I started monitoring the system, but despite the low LR2 performances I still had a lot of free RAM and the cores weren't really working a lot.
    I can't say this for sure, but I could bet that the performance problems began with the upgrade to Snow Leopard.
    Can anybody help me to solve this issue?
    Thanks a lot in advance
    Roberto

    Ian Lyons wrote:
    Lightroom performance should not have deteriorated as a result of upgrading to Snow Leopard. Things that you should check are:
    1. that you are indeed running Lightroom in 64-bit mode (open System info under Help menu and check that Application Architecture shows x64)
    2. that you have all of your previews rendered to at least Standard-size
    3. that you have at least 20% free hard disk space
    You should also run the Catalog Optimisation option in Catalog Settings
    1. Yes, LR2 was running in 64 bit mode before upgrading to Snow Leopard, then (don't know why) gets back to 32 just after the upgrade and I manually set it to 64 bit (checked in the application and on the process monitoring while running)
    2. I have the preview rendered 1:1 in the folder I'm working on (done again tonight)
    3. I have 55% free HD space
    4. I run a Catalog Optimization many times, The last one was tonight
    In other words I've checked and tried all these things many times. I've red on the internet that it might be a geforce 8800 issue, but I've found only windows references. Don't forget that neither RAM nor CPU are stressed when LR2 is working and all other applications run normally

  • Query slows down after second run for Index Organised Tables

    We are trying to optimise our application which supports MSSQL to run with Oracle 9i for one of our customers.
    We have created one database with normal tables and PK constraints/indexes and turned caching on for the tables, this seems to work well but no way as fast as MSSQL on similar hardware. The first run of query was slower but as the caching became more effective the query times came down.
    So we investigated turning the tables into Index Organised Tables. We ran analyze on the new indexed tables and the response time of one of our more complex queries became akin to MSSQL. We ran the same query 5 seconds later and it took about 3 times longer to return the same data. Subsequent runs produced the same result.
    We have run the same query on both styles of tables and also run showplans on the two queries, the regular table returns a cost of 190 and the IOT 340. This would point to the fact that we should use the regular tables for our queries but why did the IOT set return much faster for the first run after the analyze then slow down as if the stats were missing, but the execution plan remain the same.
    Any help would be appreiciated.
    Darren Fitzgibbon

    could be a lot of reasons:
    1. Is Oracle the only process that runs on this server? Could it be any other process (i.e. MSSQL) that took the the resources during the secodn run?
    2. Is this the only query that was running during your tests? Could there be another query that put the load on the database when you were running the second test?
    3. The autotrace statistics and explain plan would be useful for first and second run
    (how to use autotrace:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96533/autotrac.htm#1018
    4. If you run the same process again several times - how does the response time change?
    Mike

  • Macbook Air Mid-2013 slows down after upgrading to Yosemite

    Dear support community,
    After upgrading my computer to Yosemite, it started performing much slower than usual. Some of the interactions are sluggish, sometimes switching tabs on Chrome will stop the music for a few miliseconds, etc.
    Here's my EtreCheck report in case you can spot the problem here. Thank you so much for your help!
    EtreCheck version: 2.0.11 (98)
    Report generated November 15, 2014 at 6:15:22 PM GMT+2
    Hardware Information: ℹ️
      MacBook Air (Verified)
      MacBook Air - model: MacBookAir6,2
      1 1.7 GHz Intel Core i7 CPU: 2-core
      8 GB RAM Not upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en0: 802.11 a/b/g/n/ac
    Video Information: ℹ️
      Intel HD Graphics 5000 -
      Color LCD 1440 x 900
      Thunderbolt Display 2560 x 1440
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 18 days 1:18:22
    Disk Information: ℹ️
      APPLE SSD SM0512F disk0 : (500.28 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) /  [Startup]: 499.05 GB (24.75 GB free)
      Core Storage: disk0s2 499.42 GB Online
    USB Information: ℹ️
      Apple Internal Memory Card Reader
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. iPhone
      Apple Inc. Display Audio
      Apple Inc. Apple Thunderbolt Display
      Apple Inc. FaceTime HD Camera (Display)
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
      Apple Inc. Thunderbolt Display
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMData (1.3.11) Support
      [not loaded] com.ZTE.driver.ZTEUSBMassStorageFilter (1.3.11) Support
      [not loaded] com.caiaq.driver.NIUSBMaschineControllerDriver (2.3.3) Support
      [not loaded] com.driver.JRDMassStorageDriver64 (1.0.0) Support
      [not loaded] com.driver.JRDMassStorageDriverType05 (1.0.0) Support
      [not loaded] com.driver.JRDUSBModemData32 (1.0.1) Support
      [not loaded] com.driver.JRDUSBModemData64 (4.0.8) Support
    Startup Items: ℹ️
      MySQLCOM: Path: /Library/StartupItems/MySQLCOM
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.EscrowSecurityAlert.plist
      [failed] com.apple.lookupd.plist
      [failed] com.apple.Maps.pushdaemon.plist
      [failed] com.apple.printtool.agent.plist
      [failed] com.apple.sbd.plist
      [failed] com.apple.security.cloudkeychainproxy.plist
      [failed] com.apple.spindump_agent.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.AirPlayXPCHelper.plist
      [failed] com.apple.AssetCacheLocatorService.plist
      [failed] com.apple.awdd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.GSSCred.plist
      [failed] com.apple.icloud.findmydeviced.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.periodic-daily.plist
      [failed] com.apple.periodic-monthly.plist
      [failed] com.apple.periodic-weekly.plist
      [failed] com.apple.spindump.plist
      [failed] com.apple.systemstats.analysis.plist
      [failed] com.apple.wdhelper.plist
      [failed] com.apple.xpc.smd.plist
    Launch Agents: ℹ️
      [invalid?] cn.com.zte.usbswapper.plist Support
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [running] com.teamviewer.teamviewer_desktop.plist Support
    Launch Daemons: ℹ️
      [running] cn.com.zte.PPPMonitor.plist Support
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.makerbot.conveyor.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.prey.agent.plist Support
      [loaded] com.rogueamoeba.instanton-agent.plist Support
      [loaded] com.teamviewer.Helper.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
    User Launch Agents: ℹ️
      [failed] com.facebook.videochat.[redacted].plist Support
      [loaded] com.nero.HSMMonitor.plist Support
      [running] com.spotify.webhelper.plist Support
      [running] homebrew.mxcl.mongodb.plist Support
      [running] homebrew.mxcl.mysql.plist Support
    User Login Items: ℹ️
      Flux 2 Application (/Applications/Flux 2.app)
      GrowlHelperApp Application (/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app)
      Alfred Application (/Applications/Alfred.app)
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      HipChat UNKNOWN (missing value)
      Dropbox Application (/Applications/Dropbox.app)
      BetterSnapTool Application (/Applications/BetterSnapTool.app)
      Google Chrome ApplicationHidden (/Applications/Google Chrome.app)
      Google Drive Application (/Applications/Google Drive.app)
    Internet Plug-ins: ℹ️
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 Support
      SharePointBrowserPlugin: Version: 14.1.0 Support
      googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 Support
      Unity Web Player: Version: UnityPlayer version 4.0.1f1 Support
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      WebEx64: Version: 1.0 - SDK 10.5 Support
      Picasa: Version: 1.0 - SDK 10.4 Support
      Dashlane: Version: Dashlane 1.0.0 - SDK 10.10 Support
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      FUSE for OS X (OSXFUSE)  Support
      Growl  Support
      MySQL  Support
      Native Instruments USB Audio  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 499.05 GB Disk used: 474.29 GB
      Destinations:
      Macintosh HD [Local]
      Total size: 499.76 GB
      Total number of backups: 2
      Oldest backup: 2013-07-29 01:42:19 +0000
      Last backup: 2013-07-29 02:54:52 +0000
      Size of backup disk: Too small
      Backup size 499.76 GB < (Disk used 474.29 GB X 3)
    Top Processes by CPU: ℹ️
          63% Dropbox
          15% WindowServer
          14% Airfoil
          12% Google Chrome
          6% com.apple.preference.security.remoteservice
    Top Processes by Memory: ℹ️
      187 MB Google Chrome
      86 MB Google Chrome Helper EH
      58 MB mds_stores
      46 MB Dropbox
      43 MB Airfoil
    Virtual Memory Information: ℹ️
      75 MB Free RAM
      2.21 GB Active RAM
      2.12 GB Inactive RAM
      2.14 GB Wired RAM
      384.98 GB Page-ins
      19.83 GB Page-outs

    19.83 GB Page-outs
    You are maxing out your RAM. Try quitting Chrome, it seems to be a resource hog and try closing other applications that you aren't using.

  • Everything is slowed down after upgrading to ios8 ?

    I have various problems after upgrading to IOS8 with mij Ipad2. Pages has for  example become very slow. I can say that it has in fact become unusable: I get typing errors caused by the slowness.
    Another complaint is that the keyboard all the time covers the text.
    Further I am using Icloud drive for Pages, but I want to change that. When I change this in the system, then I lose all my documents! ( but if I close WIFI then I keep the documents: I donot understand).
    I would like to know if Apple reads these posts? And is there a simple possibilty to downgrade ?

    As Skydiver119 has reinforced,
    Apple provides NO means or provision to downgrade iDevices to a previously installed iOS version.
    There are unsupported methods to do so, but these involves doing things to your Apple iDevice that is NOT permitted by Apple and Apple has taken steps to make sure there are consequences, like making your iPad completely inoperable, by using unauthorized, unsupported and unofficial means to circumvent the normal,default operation of their mobile devices.
    To use these methods to try and fix your Apple iDevice means, Apple is going to punish you for doing so, by making sure your iDevice no longer functions.

  • My macbook Pro has been slow down after upgrading to mountain Lion

    After upgrading from lion to mountain lion my macbook pro become slow in booting, shutdown as well as in opening programs.
    Is it problem with OS or in my mac
    In either way what should i do to get my previous speed back.

    I have the same exact problem

  • EtreCheck Report way over my head - major slow down after upgrade to Yosemite

    Hi All!
    This is my first post here, but I upgraded to Yosemite the other day and my Macbook has been painfully slow ever since.   I read about Etrecheck today and downloaded and am posting it's report below.  I know my computer is beyond ancient, but other than routine maintenance I've not had any issues before now. I'm not sure what additional info I should include, so my apologies for what I've not included and if someone would let me know what else is needed regarding my system I'll be glad to post it.  Thanks for any and all help...
    EtreCheck version: 2.0.11 (98)
    Report generated November 6, 2014 at 3:28:43 PM CST
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2009) (Verified)
      MacBook Pro - model: MacBookPro5,5
      1 2.26 GHz Intel Core 2 Duo CPU: 2-core
      2 GB RAM Upgradeable
      BANK 0/DIMM0
      1 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      1 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 9400M - VRAM: 256 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 3:30:5
    Disk Information: ℹ️
      ST9160314ASG disk0 : (160.04 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Hard Drive (disk0s2) /  [Startup]: 159.18 GB (67.17 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      HL-DT-ST DVDRW  GS23N 
    USB Information: ℹ️
      Apple Inc. Built-in iSight
      Apple Internal Memory Card Reader
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.1) Support
      [not loaded] com.paceap.kext.pacesupport.master (5.9 - SDK 10.6) Support
      [loaded] com.rim.driver.BlackBerryUSBDriverInt (0.0.64) Support
      [not loaded] com.rim.driver.BlackBerryUSBDriverVSP (0.0.74) Support
      /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns
      [not loaded] com.paceap.kext.pacesupport.leopard (5.9 - SDK 10.4) Support
      [not loaded] com.paceap.kext.pacesupport.panther (5.9 - SDK 10.-1) Support
      [loaded] com.paceap.kext.pacesupport.snowleopard (5.9 - SDK 10.6) Support
      [not loaded] com.paceap.kext.pacesupport.tiger (5.9 - SDK 10.4) Support
    Startup Items: ℹ️
      Macaroni: Path: /Library/StartupItems/Macaroni
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.icloud.fmfd.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.ctkd.plist
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.tccd.system.plist
      [failed] com.apple.wdhelper.plist
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.CS5ServiceManager.plist Support
      [running] com.amazon.sendtokindle.launcher.plist Support
      [invalid?] com.oracle.java.Java-Updater.plist Support
      [invalid?] com.rim.BBAlbumArtCacher.plist Support
      [invalid?] com.rim.BBLaunchAgent.plist Support
      [loaded] org.macosforge.xquartz.startx.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [loaded] com.barebones.textwrangler.plist Support
      [running] com.freemacsoft.appcleanerdaemon.plist Support
      [invalid?] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [invalid?] com.rim.BBDaemon.plist Support
      [running] com.siber.gs-server.plist Support
      [running] com.wdc.SmartwareDriveService.plist Support
      [running] com.wdc.WDSmartWareService.plist Support
      [loaded] net.sourceforge.MonolingualHelper.plist Support
      [loaded] org.macosforge.xquartz.privileged_startx.plist Support
      [loaded] PACESupport.plist Support
    User Launch Agents: ℹ️
      [invalid?] .dat0161.000 (hidden) Support
      /Applications/Google Chrome.app/Contents/Versions/25.0.1364.99/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper /Applications/Google Chrome.app/Contents/Versions/25.0.1364.99/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper /Applications/Google Chrome.app/Contents/Versions/25.0.1364.99/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=service
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [invalid?] com.avast.home.userinit.plist Support
      [running] com.google.Chrome.framework.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [invalid?] com.spotify.webhelper.plist Support
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      EvernoteHelper UNKNOWN (missing value)
      Dropbox UNKNOWN (missing value)
      HPEventHandler UNKNOWN (missing value)
      WDQuickView Application (/Library/Application Support/WDSmartWare/WDQuickView.app)
    Internet Plug-ins: ℹ️
      Flip4Mac WMV Plugin: Version: 2.4.4.2 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
      iPhotoPhotocast: Version: 7.0
      QuickTime Plugin: Version: 7.7.3
      Silverlight: Version: 5.1.20125.0 - SDK 10.6 Support
      DirectorShockwave: Version: 11.5.6r606 Support
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      Picasa: Version: 1.0 Support
    Safari Extensions: ℹ️
      SlickSavings
      Ebay Shopping Assistant
      Searchme
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Flip4Mac WMV  Support
      Macaroni  Support
      MacFUSE  Support
      NTFS-3G  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: ON
      Auto backup: YES
      Volumes being backed up:
      Hard Drive: Disk size: 159.18 GB Disk used: 92.01 GB
      Destinations:
      My Passport (Nancy) [Local]
      Total size: 499.06 GB
      Total number of backups: 2
      Oldest backup: 2014-04-04 16:06:42 +0000
      Last backup: 2014-11-05 01:19:12 +0000
      Size of backup disk: Excellent
      Backup size 499.06 GB > (Disk size 159.18 GB X 3)
    Top Processes by CPU: ℹ️
          13% mds_stores
          10% mds
          9% WindowServer
          1% Finder
          1% Safari
    Top Processes by Memory: ℹ️
      83 MB Safari
      76 MB mds_stores
      45 MB com.apple.WebKit.Plugin.64
      43 MB WindowServer
      43 MB Finder
    Virtual Memory Information: ℹ️
      72 MB Free RAM
      315 MB Active RAM
      242 MB Inactive RAM
      555 MB Wired RAM
      4.70 GB Page-ins
      60 MB Page-outs

    WD - Time Machine doesn't need the WD software, and in fact that software will interfere with the proper running of Time Machine. I would recommend that you repartition the drive which will prevent the WD software from running by removing it entirely. Then redo your Time Machine backup.
    I am not sure what the Pace stuff is for. It may be a part of Avid software. If you don't know what it's for, then most likely you don't need it.
    Uninstalling software can prove quite a chore. Here's a little something to help you out:
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper
        2. AppDelete
        3. Automaton
        4. Hazel
        5. AppCleaner
        6. CleanApp
        7. iTrash
        8. Amnesia
        9. Uninstaller
      10. Spring Cleaning
    For more information visit The XLab FAQs and read the FAQ on removing software.
    When you "finish" be sure to restart the computer. Exactly what Mac model do you have?

  • Slow down after upgrading OS, issue with Startup item

    Problem description:
    slow after updating OS
    EtreCheck version: 2.1.5 (108)
    Report generated January 14, 2015 at 10:45:00 PM EST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 1:36:4
    Disk Information: ℹ️
      TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 498.88 GB (251.85 GB free)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Extensions
      [not loaded] org.virtualbox.kext.VBoxDrv (4.2.6) [Support]
      [not loaded] org.virtualbox.kext.VBoxNetAdp (4.2.6) [Support]
      [not loaded] org.virtualbox.kext.VBoxNetFlt (4.2.6) [Support]
      [not loaded] org.virtualbox.kext.VBoxUSB (4.2.6) [Support]
    Startup Items: ℹ️
      VirtualBox: Path: /Library/StartupItems/VirtualBox
      Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [not loaded] com.xamarin.mtvs.buildserver.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.google.keystone.daemon.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
      [not loaded] org.virtualbox.vboxwebsrv.plist [Support]
    User Login Items: ℹ️
      SpeechSynthesisServer Application (/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks /SpeechSynthesis.framework/Versions/A/SpeechSynthesisServer.app)
      EOS Utility ApplicationHidden (/Applications/Canon Utilities/EOS Utility/EOS Utility.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.257
      o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
      QuickTime Plugin: Version: 7.7.3
      googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
      Unity Web Player: Version: UnityPlayer version 4.6.0f3 - SDK 10.6 [Support]
      DirectorShockwave: Version: 11.6.8r638 [Support]
      JavaAppletPlugin: Version: Java 7 Update 71 Check version
    User internet Plug-ins: ℹ️
      aliedit: Version: 1.0 - SDK 10.6 [Support]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      Java  [Support]
      TeXDistPrefPane  [Support]
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          14% Dock
          14% com.apple.WebKit.Plugin.64
          5% WindowServer
          2% Safari
          2% com.apple.WebKit.Networking
    Top Processes by Memory: ℹ️
      210 MB com.apple.WebKit.WebContent
      146 MB softwareupdated
      125 MB Finder
      94 MB loginwindow
      90 MB Safari
    Virtual Memory Information: ℹ️
      57 MB Free RAM
      1.75 GB Active RAM
      1.73 GB Inactive RAM
      746 MB Wired RAM
      2.01 GB Page-ins
      5 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 14, 2015, 09:09:58 PM Self test - passed
      Jan 14, 2015, 08:06:51 AM /Library/Logs/DiagnosticReports/com.apple.WebKit.Plugin.64_2015-01-14-080651_[r edacted].cpu_resource.diag [Details]

    Add more RAM or cut back on concurrent applications. Startup Item is irrelevant.
    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    4. Reinstall Yosemite: Reboot from the Recovery HD. Select Reinstall OS X from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.
    5. Reinstall Yosemite from Scratch:
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    How to Clean Install OS X Yosemite
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • Processing Time Slow Down After Upgrade to SAP B1 2007

    Dear Expert,
    Our Company recently upgrade our SAP B1 2005 to 2007, our colleague complain that it takes a longer time to retrieve history data as compare to previous,she is normal user, but if I change it to super user, the process time is shorten, please help.
    Regards,
    Saw Hua

    Hi Saw Hua,
    Have you checked out [Performance Landing Page|https://websmp103.sap-ag.de/~sapidb/011000358700000528732008E]    (= [http://service.sap.com/smb/sbo|http://service.sap.com/smb/sbo] -> Support -> Support Self-Help & Library -> performance)?
    Regards
    Mario

  • System Slow-Down After Printing

    I recently installed Mountain Lion. Over the last couple of weeks I have noticed a significant operating system (10.8.2) slow down after printing with my Epson R3000 printer. This happens after every printing session. When I say slow-down I mean significant delays and dreading "beachballs" when opening applications, selecting menu items or anything else I should choose to do. I'm left with re-starting the computer to get going normally again.After re-atarting I have gone to "verify permissions" and I get approx "5" pages of permission errors, all associated with the printer library in some fashion or another. I then repair all those permissions and re-start my MacPro. The operating system then works as normal and I can use the computer with no problems (until I start printing again). I mainly use the computer for photo editing with Adobe Photoshop CS6, Adobe Lightroom 4 and Aperture 3.2.
    I did not have this problem before upgrading to Mountain Lion (and then to 10.8.2). I did not get "significant" permission errors before upgrading. Since all printer drivers for this printer are handled now by Apple via the "new" Software Update process I can't even re-download the Epson printer driver and start over. I'm completely at a loss as to what, associated with the printer function, is causing these "significant" permission errors and subsequent operating system slow down. My printer is almost brand new and was working flawlessly before Mountain Lion. Let me be clear though, I can print fine. My problem is the system slow down after using the print function which I am only guessing has something to do with the "5" pages of permission errors after printting photos (with CS6/Lightroom/Aperture).
    Incidently, I am not in any way a computer expert. Verifying and repairing permissions is about all I know how to do that's why I need help. I also just thought I would try the forums first before going to technical support to see what people thought about this.
    Again, I repair the permission errors, re-start my system and all is fine. Any further suggestions would be deeply appreciated.

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • SSO and Portal down after upgrade from AS 10.1.2.0.2 to 10.1.2.3

    SSO and Portal is down after upgrade from AS 10.1.2.0.2 to 10.1.2.3. All others are running fine. Any similiar experience and solution?
    Thanks.
    Andy

    cn=XXX information is missing for the SSO Server (orasso) when going to http://servername:7777/pls/orasso/orasso.home. Is that causing the problem? If so, how can I resolve it?
    Thanks.
    Andy

  • Asset query execution performance after upgrade from 4.6C to ECC 6.0+EHP4

    Hi,guys
    I am encounted a weird problems about asset query execution performance after upgrade to ECC 6.0.
    Our client had migrated sap system from 4.6c to ECC 6.0. We test all transaction code and related stand report and query.
    Everything is working normally except this asset depreciation query report. It is created based on ANLP, ANLZ, ANLA, ANLB, ANLC table; there is also some ABAP code for additional field.
    This report execution costed about 6 minutes in 4.6C system; however it will take 25 minutes in ECC 6.0 with same selection parameter.
    At first, I am trying to find some difference in table index ,structure between 4.6c and ECC 6.0,but there is no difference about it.
    i am wondering why the other query reports is running normally but only this report running with too long time execution dump messages even though we do not make any changes for it.
    your reply is very appreciated
    Regards
    Brian

    Thanks for your replies.
    I check these notes, unfortunately it is different our situation.
    Our situation is all standard asset report and query (sq01) is running normally except this query report.
    I executed se30 for this query (SQ01) at both 4.6C and ECC 6.0.
    I find there is some difference in select sequence logic even though same query without any changes.
    I list there for your reference.
    4.6C
    AQA0FI==========S2============
    Open Cursor ANLP                                    38,702  39,329,356  = 39,329,356      34.6     AQA0FI==========S2============   DB     Opens
    Fetch ANLP                                         292,177  30,378,351  = 30,378,351      26.7    26.7  AQA0FI==========S2============   DB     OpenS
    Select Single ANLC                                  15,012  19,965,172  = 19,965,172      17.5    17.5  AQA0FI==========S2============   DB     OpenS
    Select Single ANLA                                  13,721  11,754,305  = 11,754,305      10.3    10.3  AQA0FI==========S2============   DB     OpenS
    Select Single ANLZ                                   3,753   3,259,308  =  3,259,308       2.9     2.9  AQA0FI==========S2============   DB     OpenS
    Select Single ANLB                                   3,753   3,069,119  =  3,069,119       2.7     2.7  AQA0FI==========S2============   DB     OpenS
    ECC 6.0
    Perform FUNKTION_AUSFUEHREN     2     358,620,931          355
    Perform COMMAND_QSUB     1     358,620,062          68
    Call Func. RSAQ_SUBMIT_QUERY_REPORT     1     358,569,656          88
    Program AQIWFI==========S2============     2     358,558,488          1,350
    Select Single ANLA     160,306     75,576,052     =     75,576,052
    Open Cursor ANLP     71,136     42,096,314     =     42,096,314
    Select Single ANLC     71,134     38,799,393     =     38,799,393
    Select Single ANLB     61,888     26,007,721     =     26,007,721
    Select Single ANLZ     61,888     24,072,111     =     24,072,111
    Fetch ANLP     234,524     13,510,646     =     13,510,646
    Close Cursor ANLP     71,136     2,017,654     =     2,017,654
    We can see first open cursor ANLP ,fetch ANLP then select ANLC,ANLA,ANLZ,ANLB at 4.C.
    But it changed to first select ANLA,and open cursor ANLP,then select  ANLC,ANLB,ANLZ,at last fetch ANLP.
    Probably,it is the real reason why it is running long time in ECC 6.0.
    Is there any changes for query selcection logic(table join function) in ECC 6.0.

  • Slow down after installing Lion OS

    My Macbook pro later than 2009 model slowed down after installing the new OS Lion
    any suggestions to speed it up

    First suggestion ,there have been a number of identical user questions like yours, in the Lion Community. If you want to talk to other MacBook Pro owners, try the forum they have.
    http://www.apple.com/support/macbookpro
    What you do not need is some gizmo to "speed up" or clean caches etc.
    Maybe you need to make more room on your hard drive, or add more RAM.
    For now, hold down Command-R and run Disk Utility to check the health of your system drive (Lion Recovery Mode)
    http://www.apple.com/support/lion

  • Compleat system slow down after current updates

    Has anyone learned why we all seem to have a compleat system slow down after the current set of updates? Everything works, but is VERY slow to respond. Even iTunes 7.1.1 plays video choppy now. Audio track plays fine however. Odd.
    -Apple //GS

    First of all, try repairing your permissions with Applications> Utilities> Disk Utility. Select the hard drive you're running off of and then click the Repair Permissions button.
    If that doesn't work I'd do an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    Then run the combo update(s) instead of the consecutive ones. That seems to be working for a lot of people, but it will probably take a while.

Maybe you are looking for

  • Scanning transparencies with image capture/preview

    We have just bought an epson v600 scanner. We have Lion so we need to use image capture or preview to scan with the it; this is not a problem for twhat we hope to use it for. When we first used it, we scanned some small pics to see what they looked l

  • Invoice reversal

    Hi, when we cancel invoice document,, we get the following message: Document reversed with no. 5105600713: Please manually clear FI documents Message no. M8282 Diagnosis The invoice was successfully reversed. The FI follow-on documents cannot be clea

  • How can I merge layers with multiple layer styles added to them?

    So I have this issue where I have to merge lots of layers in order to finish the job. Thing is that two of them have layer styles added to them. Each one has two different layers styles added to it. If I try to merge the layers, the effect won't stay

  • Recipe report..C203 help

    Hi guys I have a problem...if we go to T-code C203...give the recipe.. press enter...go to materials tab....press a/b button (calculate).. a new screen appears with a table control.. i m struggling to find how the data in that table control is being

  • Tips to archive, organize and backup photos

    Does anyone have any suggestions on best practices for organizing photo library archiving photos backing up photos I welcome any input as my photo library is too large for computer hard drive to manage Thanks.