Query runs slower after INSERT

Hi All,
We have a java swing application that uses JDBC to interact with an Oracle database.
The user can display a list of data from one database table, then click a button which will insert a row into a different table using data from the highlighted row in the displayed list.
As long as the user does not click the "insert" button, [s]he can open and close the window displaying the list as many times as [s]he wants, and it runs very fast.
However, after the user clicks on the "insert" button, the query suddenly runs extremely slowly.
Also note that this behaviour only occurs on one particular database server:
Oracle9i Enterprise Edition Release 9.2.0.4.0
Sun-Fire-V210 with SunOS 5.9
The behaviour does not happen on other machines.
(None of the other machines have the same combination of database server and platform.)
Note that all the clients use the same JDK and JDBC driver.
Any suggestions on where we should look in order to discover the cause of this behaviour?
Thanks,
Avi.

Kamal,
In the trace file produced, the rowid pseudo-row has been added to my SQL query. Here is an excerpt:
(Note that the ALTER SESSION command was done via JDBC from our application.)
The following statements encountered a error during parse:
select rowid, FDU.DESK_USAGE_ROW_ID
from FLIGHTS F, FLIGHT_DESK_USAGE FDU
where ...
Error encountered: ORA-00918Error message for code ORA-00918 is "column ambiguously defined".
Since "rowid" is a pseudo column and since there are two tables involved in the query, obviously the unqualified "rowid" is ambiguous.
Naturally, I didn't put "rowid" in my original SELECT statment.
Is this added by JDBC, or by the Oracle optimizer, or what?
Thanks,
Avi.

Similar Messages

  • Query running slow after 1000 rows in oracle

    Hi.
    I have one query which is fetching miln of rows.. the query runs very fast till 1000 to 1500 records after that it run very slow. Can you please help ,what could be the reason?
    Thanks

    831269 wrote:
    I have one query which is fetching miln of rows.. Why are you fetching that many rows? What is your client code going to do with a million rows? And why do you expect this to be fast? A million rows worth of I/O has to be done by Oracle (that will likely be mostly from disk and not buffer cache). That million rows has to be copied from the Oracle's SGA to client memory. If your client is PL/SQL code, that will be copied into the PGA. If your client is external, then that copy has to happen across platform boundaries and the network too.
    Then your code churns away on processing a million rows... doing what exactly? That "+what+" will need to be done once per row, for a million times. If it takes 10ms per row, that means almost 3h of client processing time.
    Fetching that many rows..? Often a design and coding mistake. Always an exception to the rule. Will never be "fast".
    And scalability and performance need to be addressed by re-examining the requirements, optimising the design that necessitates fetching that many rows, and using techniques such as parallel processing and thread safe code design.

  • Query running slow after upgrading

    Hi,
    We have one query that is running very slow in the 10.2.0.4 database after upgrading from 9.2.0.8 HP-UX B11.31. In 9.2.0.8 database it used to take 5 mins. But in the new 10.2.0.4 database it takes around 36 mins.The query is given below.
    SELECT a.transaction_date,
                    a.ORD_PROD_BE_ID,
                    a.SLS_POSTD_DT_BE_ID,
                     a.net_trd_amt,
                    a.trd_actl_un_qty,
                    t.FISC_MO_CD, 
                    t.FY_CD
    FROM fact_net_trd_sls a,
                dim_tm_mv t,
                dim_prod b,
                (SELECT DISTINCT kit_prod_cd FROM kal_kit_bom) c
    WHERE b.be_id = a.ORD_PROD_BE_ID
    AND b.end_date >SYSDATE
    AND t.be_id = a.SLS_POSTD_DT_BE_ID
    AND t.end_date > SYSDATE
    AND c.kit_prod_cd (+)= b.base_prod_cd
    AND t.FY_CD IN (SELECT DISTINCT FY_CD FROM DIM_tm_MV T WHERe T.DAY_STRT_PRD_OF_TM=TRUNC(SYSDATE))
    and nvl2(c.kit_prod_cd,'K','FG') = 'FG'
    ORDER BY  a.ORD_PROD_BE_ID,a.TRANSACTION_DATE;The plan in 9i is below,
    PLAN_TABLE_OUTPUT
    | Id  | Operation                           |  Name                  | Rows  | Bytes |TempSpc| Cost  |
    |   0 | SELECT STATEMENT                    |                        |  2861K|  1585M|       |   170K|
    |   1 |  VIEW                               |                        |  2861K|  1585M|       |   170K|
    |   2 |   SORT UNIQUE                       |                        |  2861K|   654M|  1397M|   170K|
    |*  3 |    FILTER                           |                        |       |       |       |       |
    |*  4 |     HASH JOIN OUTER                 |                        |       |       |       |       |
    |*  5 |      HASH JOIN                      |                        |  1998K|   445M|  4056K| 63419 |
    |*  6 |       TABLE ACCESS BY INDEX ROWID   | DIM_PROD               | 53189 |  3428K|       |   283 |
    |   7 |        BITMAP CONVERSION TO ROWIDS  |                        |       |       |       |       |
    |   8 |         BITMAP INDEX FULL SCAN      | XN3_DIM_PROD           |       |       |       |       |
    |   9 |       TABLE ACCESS BY INDEX ROWID   | FACT_NET_TRD_SLS       |  4081 |   203K|       |   118 |
    |  10 |        NESTED LOOPS                 |                        |  1998K|   320M|       | 57607 |
    |* 11 |         HASH JOIN SEMI              |                        |   490 | 57330 |       |   208 |
    |* 12 |          TABLE ACCESS FULL          | DIM_TM_MV              | 15180 |  1260K|       |   195 |
    |  13 |          TABLE ACCESS BY INDEX ROWID| DIM_TM_MV              |     1 |    32 |       |     1 |
    |* 14 |           INDEX RANGE SCAN          | XN4_DIM_TM_MV          |     1 |       |       |     1 |
    |* 15 |         INDEX RANGE SCAN            | FACT_NET_TRD_SLS_IDX3  |  4081 |       |       |    54 |
    |  16 |      TABLE ACCESS FULL              | KAL_KIT_BOM            | 14175 | 85050 |       |    24 |
    Predicate Information (identified by operation id):
       3 - filter(NVL2("KAL_KIT_BOM"."KIT_PROD_CD",'K','FG')='FG')
       4 - access("B"."BASE_PROD_CD"=("KAL_KIT_BOM"."KIT_PROD_CD"(+)))
       5 - access("B"."BE_ID"="A"."ORD_PROD_BE_ID")
       6 - filter("B"."END_DATE">SYSDATE@!)
      11 - access("SYS_ALIAS_0000"."FY_CD"="T"."FY_CD")
      12 - filter("SYS_ALIAS_0000"."END_DATE">SYSDATE@!)
      14 - access("T"."DAY_STRT_PRD_OF_TM"=TRUNC(SYSDATE@!))
      15 - access("SYS_ALIAS_0000"."BE_ID"="A"."SLS_POSTD_DT_BE_ID")
    Note: cpu costing is off
    36 rows selected.The plan in 10g is below.
    Operation           Object Name     Rows     Bytes     Cost       Object Node      In/Out  PStart    PStop
    SELECT STATEMENT Optimizer Mode=ALL_ROWS                             34                           1382                                                       
      VIEW                   34           19 K        1382                                                       
        SORT UNIQUE                               34           7 K          1382                                                       
          FILTER                                                                                                                             
            HASH JOIN OUTER                   34           7 K          1375                                                       
              MAT_VIEW ACCESS BY INDEX ROWID           WHSUSR.DIM_TM_MV 1              81           1                                                              
                NESTED LOOPS                      24           5 K          1350                                                       
                  NESTED LOOPS                    740         105 K     1336                                                       
                    MERGE JOIN CARTESIAN                              1              95           1332                                                       
                      TABLE ACCESS BY INDEX ROWID              WHSUSR.DIM_PROD      52 K        3 M        279                                                         
                        BITMAP CONVERSION TO ROWIDS                                                                                                                      
                          BITMAP INDEX FULL SCAN     WHSUSR.XN3_DIM_PROD                                                                                                           
                      BUFFER SORT                   1              30           9223372036 G                                                   
                        SORT UNIQUE                               1              30           1                                                              
                          MAT_VIEW ACCESS BY INDEX ROWID               WHSUSR.DIM_TM_MV 1              30           1                                                                           
                            INDEX RANGE SCAN               WHSUSR.XN4_DIM_TM_MV      1                              1                                                              
                    TABLE ACCESS BY INDEX ROWID                TRANSDATA.FACT_NET_TRD_SLS             740         36 K        4                                                                    
                      INDEX RANGE SCAN     TRANSDATA.FACT_NET_TRD_SLS_IDX2 2 K                         1                                                              
                  INDEX RANGE SCAN         WHSUSR.XN1_DIM_TM_MV      1                              1                                                              
              TABLE ACCESS FULL               EDW_DBA.KAL_KIT_BOM            14 K        83 K        24                                                            We have checked that the statistics are uptodate. Please help with suggestions.
    Thanks in advane.

    Most likely, the index stats are not up-to-date, please double check.
    h5. In 9i, FACT_NET_TRD_SLS_IDX3 is used to scan the fact.
    Time dimension is used to filter out most records in fact table first, then join to Product dimension.
    h5. In 10g, FACT_NET_TRD_SLS_IDX2 is used to scan the fact.
    Time dimension "MERGE JOIN CARTESIAN" to Product dimension first to form a data set, and then use it to filter the fact table.
    If the stats for FACT_NET_TRD_SLS_IDX2 let ORACLE believe that much less records will remain/survive after the join, 10g will use it.
    It seems to me that cartesian join Time x Product is going to generate a much bigger data set than estimated, then the nested loop after that will take a long time to iterate through.
    Why don't you partition your fact table BY RANGE(SLS_POSTD_DT_BE_ID) to make it simpler?

  • Query runs slower when using variables & faster when using hard coded value

    Hi,
    My query runs slower when i use variables but it runs faster when i use hard coded values. Why it is behaving like this ?
    My query is in cursor definition in a procedure. Procedure runs faster when using hard coded valus and slower when using variables.
    Can anybody help me out there?
    Thanks in advance.

    Hi,
    Thanks for ur reply.
    here is my code with Variables:
    Procedure populateCountryTrafficDetails(pWeekStartDate IN Date , pCountry IN d_geography.country_code%TYPE) is
    startdate date;
    AR_OrgId number(10);
    Cursor cTraffic is
    Select
              l.actual_date, nvl(o.city||o.zipcode,'Undefined') Site,
              g.country_code,d.customer_name, d.customer_number,t.contrno bcn,
              nvl(r.dest_level3,'Undefined'),
              Decode(p.Product_code,'820','821','821','821','801') Product_Code ,
              Decode(p.Product_code,'820','Colt Voice Connect','821','Colt Voice Connect','Colt Voice Line') DProduct,
              sum(f.duration),
              sum(f.debamount_eur)
              from d_calendar_date l,
              d_geography g,
              d_customer d, d_contract t, d_subscriber s,
              d_retail_dest r, d_product p,
              CPS_ORDER_DETAILS o,
              f_retail_revenue f
              where
              l.date_key = f.call_date_key and
              g.geography_key = f.geography_key and
              r.dest_key = f.dest_key and
              p.product_key = f.product_key and
              --c.customer_key = f.customer_key and
              d.customer_key = f.customer_key and
              t.contract_key = f.contract_key and
              s.SUBSCRIBER_KEY = f.SUBSCRIBER_KEY and
              o.org_id(+) = AR_OrgId and
              g.country_code = pCountry and
              l.actual_date >= startdate and
              l.actual_date <= (startdate + 90) and
              o.cli(+) = s.area_subno and
              p.product_code in ('800','801','802','804','820','821')
              group by
              l.actual_date,
              o.city||o.zipcode, g.country_code,d.customer_name, d.customer_number,t.contrno,r.dest_level3, p.product_code;
    Type CountryTabType is Table of country_traffic_details.Country%Type index by BINARY_INTEGER;
    Type CallDateTabType is Table of country_traffic_details.CALL_DATE%Type index by BINARY_INTEGER;
    Type CustomerNameTabType is Table of Country_traffic_details.Customer_name%Type index by BINARY_INTEGER;
    Type CustomerNumberTabType is Table of Country_traffic_details.Customer_number%Type index by BINARY_INTEGER;
    Type BcnTabType is Table of Country_traffic_details.Bcn%Type index by BINARY_INTEGER;
    Type DestinationTypeTabType is Table of Country_traffic_details.DESTINATION_TYPE%Type index by BINARY_INTEGER;
    Type ProductCodeTabType is Table of Country_traffic_details.Product_Code%Type index by BINARY_INTEGER;
    Type ProductTabType is Table of Country_traffic_details.Product%Type index by BINARY_INTEGER;
    Type DurationTabType is Table of Country_traffic_details.Duration%Type index by BINARY_INTEGER;
    Type DebamounteurTabType is Table of Country_traffic_details.DEBAMOUNTEUR%Type index by BINARY_INTEGER;
    Type SiteTabType is Table of Country_traffic_details.Site%Type index by BINARY_INTEGER;
    CountryArr CountryTabType;
    CallDateArr CallDateTabType;
    Customer_NameArr CustomerNameTabType;
    CustomerNumberArr CustomerNumberTabType;
    BCNArr BCNTabType;
    DESTINATION_TYPEArr DESTINATIONTYPETabType;
    PRODUCT_CODEArr PRODUCTCODETabType;
    PRODUCTArr PRODUCTTabType;
    DurationArr DurationTabType;
    DebamounteurArr DebamounteurTabType;
    SiteArr SiteTabType;
    Begin
         startdate := (trunc(pWeekStartDate) + 6) - 90;
         Exe_Pos := 1;
         Execute Immediate 'Truncate table country_traffic_details';
         dropIndexes('country_traffic_details');
         Exe_Pos := 2;
         /* Set org ID's as per AR */
         case (pCountry)
         when 'FR' then AR_OrgId := 81;
         when 'AT' then AR_OrgId := 125;
         when 'CH' then AR_OrgId := 126;
         when 'DE' then AR_OrgId := 127;
         when 'ES' then AR_OrgId := 123;
         when 'IT' then AR_OrgId := 122;
         when 'PT' then AR_OrgId := 124;
         when 'BE' then AR_OrgId := 132;
         when 'IE' then AR_OrgId := 128;
         when 'DK' then AR_OrgId := 133;
         when 'NL' then AR_OrgId := 129;
         when 'SE' then AR_OrgId := 130;
         when 'UK' then AR_OrgId := 131;
         else raise_application_error (-20003, 'No such Country Code Exists.');
         end case;
         Exe_Pos := 3;
    dbms_output.put_line('3: '||to_char(sysdate, 'HH24:MI:SS'));
         populateOrderDetails(AR_OrgId);
    dbms_output.put_line('4: '||to_char(sysdate, 'HH24:MI:SS'));
         Exe_Pos := 4;
         Open cTraffic;
         Loop
         Exe_Pos := 5;
         CallDateArr.delete;
    FETCH cTraffic BULK COLLECT
              INTO CallDateArr, SiteArr, CountryArr, Customer_NameArr,CustomerNumberArr,
              BCNArr,DESTINATION_TYPEArr,PRODUCT_CODEArr, PRODUCTArr, DurationArr, DebamounteurArr LIMIT arraySize;
              EXIT WHEN CallDateArr.first IS NULL;
                   Exe_pos := 6;
                        FORALL i IN 1..callDateArr.last
                        insert into country_traffic_details
                        values(CallDateArr(i), CountryArr(i), Customer_NameArr(i),CustomerNumberArr(i),
                        BCNArr(i),DESTINATION_TYPEArr(i),PRODUCT_CODEArr(i), PRODUCTArr(i), DurationArr(i),
                        DebamounteurArr(i), SiteArr(i));
                        Exe_pos := 7;
    dbms_output.put_line('7: '||to_char(sysdate, 'HH24:MI:SS'));
         EXIT WHEN ctraffic%NOTFOUND;
    END LOOP;
         commit;
    Exe_Pos := 8;
              commit;
    dbms_output.put_line('8: '||to_char(sysdate, 'HH24:MI:SS'));
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_CUSTNO ON country_traffic_details (CUSTOMER_NUMBER)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_BCN ON country_traffic_details (BCN)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_PRODCD ON country_traffic_details (PRODUCT_CODE)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_SITE ON country_traffic_details (SITE)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_DESTYP ON country_traffic_details (DESTINATION_TYPE)';
              execDDl(lSql);
              Exe_Pos:= 9;
    dbms_output.put_line('9: '||to_char(sysdate, 'HH24:MI:SS'));
    Exception
         When Others then
         raise_application_error(-20003, 'Error in populateCountryTrafficDetails at Position: '||Exe_Pos||' The Error is '||SQLERRM);
    End populateCountryTrafficDetails;
    In the above procedure if i substitute the values with hard coded values i.e. AR_orgid = 123 & pcountry = 'Austria' then it runs faster.
    Please let me know why it is so ?
    Thanks in advance.

  • My macbook is running slow after upgrading to yosemite

    Other's have posted similar experiences by when I ran etrecheck I didn't get a bunch of fails and yet my computer is extremely sluggish since moving from snow leopard to Yosemite.  So much so, that I'm considering going back.  Programs load slowly and switching between programs has a delayed response. Reminds me of the PC I had before I bought my macbook in 2008.
    Any ideas on what might be causing the slow down?
    Problem description:
    Mac is running slow after upgrading to Yosemite.
    EtreCheck version: 2.1.1 (104)
    Report generated December 10, 2014 at 10:51:13 AM PST
    Hardware Information: ℹ️
      MacBook (13-inch, Aluminum, Late 2008) (Verified)
      MacBook - model: MacBook5,1
      1 2 GHz Intel Core 2 Duo CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1067 MHz ok
      BANK 0/DIMM1
      2 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
      Cinema Display 1680 x 1050
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 1:33:11
    Disk Information: ℹ️
      ST9500420AS disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 499.25 GB (196.94 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      HL-DT-ST DVDRW  GS21N 
    USB Information: ℹ️
      Microsoft Microsoft® 2.4GHz Transceiver V1.0
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple, Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/StartupItems/Parallels
      [not loaded] com.parallels.kext.Pvsvnic (3.0) [Support]
      /System/Library/Extensions
      [not loaded] com.parallels.kext.ConnectUSB (3.0.0) [Support]
      [not loaded] com.parallels.kext.Pvsnet (3.0) [Support]
      [not loaded] com.parallels.kext.hypervisor (3.0) [Support]
      [not loaded] com.parallels.kext.vmmain (3.0) [Support]
    Startup Items: ℹ️
      HP IO: Path: /Library/StartupItems/HP IO
      Parallels: Path: /Library/StartupItems/Parallels
      ParallelsTransporter: Path: /Library/StartupItems/ParallelsTransporter
      Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [running] com.adobe.AdobeCreativeCloud.plist [Support]
      [loaded] com.carbonite.launchd.carbonitealerts.plist [Support]
      [running] com.carbonite.launchd.carbonitestatus.plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [loaded] com.hp.help.tocgenerator.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [running] com.carbonite.launchd.carbonitedaemon.plist [Support]
      [loaded] com.google.keystone.daemon.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.adobe.ARM.[...].plist [Support]
      [loaded] com.adobe.ARM.[...].plist [Support]
    User Login Items: ℹ️
      Citations Application (/Applications/Papers.app/Contents/SharedSupport/Citations.app)
      iTunesHelper UNKNOWNHidden (missing value)
      Time Out Application (/Users/[redacted]/.Trash/Time Out.app)
      AdobeResourceSynchronizer Application (/Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Support/AdobeResourceSynchronizer.app)
      iTunesHelper UNKNOWN (missing value)
      Caffeine Application (/Applications/Caffeine .app)
      Microsoft AU Daemon Application (/Applications/Microsoft AutoUpdate.app/Contents/MacOS/Microsoft AU Daemon.app)
      Garmin ANT Agent Application (/Applications/Garmin ANT Agent.app)
      Google Drive Application (/Applications/Google Drive.app)
      Stickies Application (/Applications/Stickies.app)
      Dropbox Application (/Applications/Dropbox.app)
      Box Sync Application (/Applications/Box Sync.app)
      EvernoteHelper Application (/Applications/Evernote.app/Contents/Library/LoginItems/EvernoteHelper.app)
      XPSLauncher Application (/Applications/Xerox/PrintingScout/XPSLauncher.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
      AmazonMP3DownloaderPlugin1017287: Version: AmazonMP3DownloaderPlugin 1.0.17 [Support]
      Google Earth Web Plug-in: Version: 5.1 [Support]
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 2.2.1.11  [Support]
      OfficeLiveBrowserPlugin: Version: 12.3.6 [Support]
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Support]
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 15.0.0.246 - SDK 10.6 [Support]
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Support]
      Flash Player: Version: 15.0.0.246 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.235
      AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17 [Support]
      googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
      iPhotoPhotocast: Version: 7.0
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 [Support]
      GarminGpsControl: Version: 4.0.4.0 Release - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      wkDimdimControl: Version: 1.01
      DirectorShockwave: Version: 11.6.6r636 [Support]
    User internet Plug-ins: ℹ️
      BrowserPlus_2.9.8: Version: 2.9.8 [Support]
      fbplugin_1_0_3: Version: Unknown [Support]
      Move_Media_Player: Version: npmnqmp 071505000006 [Support]
    Safari Extensions: ℹ️
      Extensions: No such file or directory
    3rd Party Preference Panes: ℹ️
      BrowserPlus  [Support]
      Carbonite  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 499.25 GB Disk used: 302.31 GB
      Destinations:
      Lottia [Local]
      Total size: 1.00 TB
      Total number of backups: 65
      Oldest backup: 2010-12-28 19:41:55 +0000
      Last backup: 2014-12-03 21:58:08 +0000
      Size of backup disk: Adequate
      Backup size 1.00 TB > (Disk used 302.31 GB X 3)
    Top Processes by CPU: ℹ️
          70% iPhoto
          20% TOCGenerator
          18% WindowServer
          9% Time Out Break
          6% CarboniteDaemon
    Top Processes by Memory: ℹ️
      463 MB iPhoto
      137 MB Mail
      116 MB Google Chrome
      106 MB WindowServer
      99 MB iTunes
    Virtual Memory Information: ℹ️
      114 MB Free RAM
      1.39 GB Active RAM
      1.21 GB Inactive RAM
      857 MB Wired RAM
      6.24 GB Page-ins
      34 MB Page-outs
    Diagnostics Information: ℹ️
      Dec 10, 2014, 09:18:41 AM Self test - passed
      Dec 9, 2014, 03:44:57 PM fontd_2014-12-09-154457_Postelsia.crash
      Dec 9, 2014, 12:12:52 PM CarboniteDaemon_2014-12-09-121252_Postelsia.cpu_resource.diag [Details]
      Dec 8, 2014, 10:27:45 AM CarboniteDaemon_2014-12-08-102745_Postelsia.cpu_resource.diag [Details]
      Dec 7, 2014, 01:04:27 PM CarboniteDaemon_2014-12-07-130427_Postelsia.cpu_resource.diag [Details]

    Also resetting SMC could solve the problem.
    Intel-based Macs: Resetting the System Management Controller (SMC) - Apple Support
    Upgrading RAM till 8GB could also help the system performance.

  • Macbook Pro still running slow after reformat

    So my Macbook pro, which is about 3-4 years old now, just started running slow after the latest update i did, whichever the latest one was. Possibly a security update or whatever it was. So i decided it was time to reformat and just clear out the stuff on my computer so i erased the HD and reinstalled Snow Leopard. After all that it still lags and is slow. Its slow on things like scrolling down a web page, or opening programs, or when i use expose, it isn't super smooth like it normally is.
    My MBP has 4gb of ram and 2.2ghz. I have also tried to repair the disk permissions, but didnt seem to help drastically. Any suggestions?

    Hi there,
    Have you applied all updates? Using Software Update or manually? Checked for EFI and SMC versions?
    Don't you have any clue from Console logs?
    Repair as T posted and bring back news and info about your Graphic Card.
    Good luck.

  • Why is my safari running slow after updating my mac?

    My safari is running slow after completing a software update.  I have cleared the cache.  It did not help.

    Please answer as many of the following questions as you can. You may already have answered some of them. In that case, there's no need to repeat the answers.
    Have you restarted your router and your broadband device (if they're separate) since you first noticed the problem? If not, do that now and see whether there's any change.
    If your browser is Safari, then from the Safari menu bar, select
    Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. Any change?
    If you're running OS X 10.9 or later, select the Advanced tab in the Preferences window and uncheck the box marked
    Stop plug-ins to save power
    Any change?
    Quit and relaunch the browser. Any change?
    Log out and log back in. Any change?
    Enable Private Browsing in the Safari menu. Any change?
    Are any other web browsers installed, and are they the same? What about other Internet applications, such as iTunes and the App Store?
    If other browsers and Internet applications are also affected, follow these instructions and test. Any change?
    If Parental Controls is active for any user, please turn it off and test. Any change?
    If only Safari is affected, launch the Activity Monitor application and enter "web" (without the quotes) in the search box. If a process named "Safari Web Content" is shown in red or is using more than about 5% of a CPU, select it and force it to quit by clicking the X or Quit Process button in the toolbar of the window. There may be more than one such process. Any improvement?
    Again, if only Safari is involved, open the iCloud preference pane and uncheck the box marked Safari, if it's checked. Any change?
    Are there any other devices on the same network that can browse the Web, and are they affected?
    If you can test Safari on another network, is it the same there?
    If you connect to your router with Wi-Fi and you can also connect with Ethernet, do that and turn off Wi-Fi. Any difference?

  • My computer is running slow after Yosemite install -but in the Mail program, when I open an email and then open the attachment -all is good -when I close the attachment the Mail program goes away, and I have to reopen it in my Dock -every time -been

    My computer is running slow after Yosemite install -but in the Mail program, when I open an email and then open the attachment -all is good -when I close the attachment the Mail program goes away, and I have to reopen it in my Dock -every time.

    I tried this, but no luck. I went to Previous System>Users. There is nothing inside the "Users" folder, so I hit a dead end.
    I can find my new e-mails -- those that came in since I re-installed the system -- in my NEW system (which I did to see if I was correctly understanding the advice), by going to Users>Home>Library>Mail>POP account name>Inbox.
    Let me add a new question: I am running PhotoShop C3. It opens OK, and I can use it, but when it opens I get this message: "One or more files for Adobe Application Support folder are missing. Please re-run the PhotoShop installer."
    I don't like re-installing working programs if I can avoid it, because it always seems to lead to other issues. Any idea what files are missing, and where it/they might be in the Previous System folder?
    thanks
    Mike

  • I have an early 2008 macbook pro that is running slow after upgrading to lion. Is there anything I can do? this is what I have,Processor  2.4 GHz Intel Core 2 Duo, Memory  2 GB 667 MHz DDR2 SDRAM.

    I have an early 2008 macbook pro that is running slow after upgrading to lion. Is there anything I can do? this is what I have,Processor  2.4 GHz Intel Core 2 Duo, Memory  2 GB 667 MHz DDR2 SDRAM.

    First, back up all data immediately, as your boot drive may be failing.
    Launch the usual set of applications you use when you notice the problem.
    Step 1
    Launch the Activity Monitor 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. Click Utilities, then Activity Monitor in the page that opens.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Next, select the Disk Activity tab. What approximate values are shown for Reads in/sec and Writes out/sec?
    Step 2
    You must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way as above. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Post the 50 or so most recent messages in the log — the text, please, not a screenshot.
    Important: Some personal information, such as your name, may appear in the log. Edit it out before posting.

  • RUNNING SLOW AFTER OPENING KASPERSKY ON PARALLELS

    RUNNING SLOW AFTER INSTALLING KASPERSKY ON PARALLELS

    AV software is well-known for requiring large CPU and memory resources. You're running it in a virtual machine, which may have limitations on what CPU and RAM resources are allocated to it.
    So, software that makes things run slowly makes things run extra slowly when a layer of virtualization is added.

  • Running slow after downloading a mandatory update

    running slow after downloading an update!
    I had zero complaints until today when I downloaded an update and restarted my machine.
    Now It feels like I'm back in the PC world.
    Any suggestions?

    If it is Safari loading web pages slowly, I would suggest http://support.apple.com/kb/ts3230 or http://support.apple.com/kb/TS1594, one of these will surely help. If not, as previously suggested, more detail will greatly help.

  • Why is my Macbook Pro running slow after I downloaded the new Lion software? I have a 2.26 GHz intel core 2 duo? whats Wrong?

    Why is my Macbook Pro running slow after I downloaded the new Lion software? I have a 2.26 GHz intel core 2 duo? whats Wrong?

    Spotlight may be indexing your drive(s).  Click the Spotlight icon at the right of your menubar; if it shows things being indexed, that's at least some of the reason. 

  • What could be the possible reason for a deployed application to run slow after the target pc comes out of standby mode?

    What could be the possible reason for a deployed application to run slow after the target pc comes out of standby mode?  PC running XP and using the USB to communicate with the DAQ and driver boards.  Application generated with 2010.
    Thanks

    Hello,
    Usually default property is checked 
      system property -> devices ->usb root -> power management -> allow system to switch off device
    Hope this help
    Regards
    Tinnitus
    CLAD / Labview 2011, Win Xp
    Mission d'une semaine- à plusieurs mois laissez moi un MP...
    RP et Midi-pyrénées .Km+++ si possibilité de télétravail
    Kudos always accepted / Les petits clicks jaunes sont toujours appréciés
    Don't forget to valid a good answer / pensez à valider une réponse correcte

  • Imac 11,2 running slower after installing software updates

    I purchased my imac 11,2 Sept. 2010. I recently downloaded my software updates that included airport utility, itunes and canon printer software update. Since these downloads, the imac has been very slow. Does anybody have any suggestions why my imac runs slower after software updates and what can be done to get my imac back to previous speed.

    isis24680,
    Welcome to the Apple Discussions!
    Did you run Disk Utility> Repair Permissions? Do you have your eMac in display-only sleep overnight, or use a utility such as OnyX, or otherwise ensure the Unix crom maintenenace scripts run? OS X 10.4.2 (in 7/05) included provision to force the maintenance scripts when sufficiently oberdue; it's possible you're seeing the Mac trying to catch up on a year-plus worth of maintenance.
    Do you have anything showing in System Preferences> Others, especially anything that adds to the menu bar? You'll need to check that any add-on system utilities or background programs are updated to run properly under 10.4.6; a quick way to check is to Start Up in Safe Mode and see if performance returns to normal.
    Open Applications> Utilities> Activity Monitor, show all tasks, and sort the list by CPU. Is their anything regularly showing up at more than say 15% of the CPU usage?

  • Video both in source window and edit window stops after just a few seconds. It also runs slow after a few seconds.

    Video both in source window and edit window stops after just a few seconds. It also runs slow after a few seconds. I don't if the problem  is the fact that it;'s a Vimeo down load. Any one got a suggestion as to why?

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840
    Exactly what is INSIDE the video you are editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

Maybe you are looking for

  • Converting .flv files?

    Source file = .flv downloaded from Twitch TV Need = to convert the .flv file to a format that I can edit in Final Cut Pro 10.0.6 End Result Desired = to posted editted version in format that will play on YouTube When I download the .flv file, the aud

  • Page Layout Trouble

    I have designed a page layout in Fireworks 8 that my client is very intereted in. It consist of a brick wall with antique paper nailed to it. I would like the "paper" to contain the content. When I add the content to the layout in Dreamweaver 8, the

  • I deleted my internet plug-ins folder

    i was trying to update my flash player and some how i managed to delete my internet plugins folder and i dont know how to get it back and i dont know what was in it can someone help me on finding a way to download a new one or figure out how to get i

  • CSS and skins

    hi all, i am developing a skin for my jdeveloper 11g application. If we dont use a skin, by default Jdeveloper uses blafplus-rich skin. But i cant find the css file used by this skin. Does anyone know where this css file is located. Pls help with thi

  • Lagging Video Output

    Hello world! It's my first post here. I've encountered a problem. When I export a video, the exported video files are always lagging. It won't play smoothly. I don't know why. I've tried to play around with the frame rate with no avail. What's the ca