Extremely slow running query.

Hi all

I'm sitting on 10.2.0.4.0 on GNU / linux. I have a complain people on demand, slow queries, he works long enough. I extracted the explain plan command and events waiting for the sessions and system and found commulative db file sequenciial read caused us awaits more. the same query worked fine a day before. not sure where the focus?
++ Query ++

SELECT A.ITEM, A.LOC, MAX(CO1.AFFBILLPR) AFFBILLPR, MAX(CO1.UNIT_COST) UNIT_COST FROM INVOPT_STG.TMP_COST_OCS CO1, 
(SELECT SS.LOC, SS.MANUF_LOC, SS.ITEM, MAX(CO.ITEM_10D) ITEM_10D, COUNTRY_CD FROM INVOPT_STG.STG_LOC SL, TMP_COST_OCS CO, STG_SKU SS WHERE 
CASE WHEN SL.COUNTRY_CD_COST = CO.COUNTRY_CD THEN SL.COUNTRY_CD_COST
WHEN SL.COUNTRY_CD_COST != NVL((SELECT DISTINCT CO3.COUNTRY_CD FROM INVOPT_STG.TMP_COST_OCS 
CO3 WHERE CO3.ITEM_10D = CO.ITEM_10D AND CO3.FYEAR = CO.FYEAR AND CO3.COUNTRY_CD = SL.COUNTRY_CD_COST),' ')
AND SL.COUNTRY_CD_COST= 'US' THEN 'CAN' WHEN SL.COUNTRY_CD_COST != NVL((SELECT DISTINCT CO3.COUNTRY_CD 
FROM INVOPT_STG.TMP_COST_OCS CO3 WHERE CO3.ITEM_10D = CO.
ITEM_10D AND CO3.FYEAR = CO.FYEAR AND CO3.COUNTRY_CD = SL.COUNTRY_CD_COST),' ') 
AND SL.COUNTRY_CD_COST = 'CAN' THEN 'US' ELSE SL.COUNTRY_CD_COST END = CO.COUNTRY_CD AND CO.COST_TYPE IN ('F') AND CO.ITEM_10D != 
SS.ITEM_10D AND CO.ITEM_10D < SS.ITEM_10D AND 
SUBSTR(CO.ITEM_10D,1,9) = SUBSTR(SS.ITEM_10D,1,9) 
AND SUBSTR(SL.LOC,1,3) = SS.MANUF_LOC GROUP BY SS.LOC, SS.MANUF_LOC, SS.ITEM, 
CO.COUNTRY_CD) A WHERE CO1.ITEM_10D = A.ITEM_10D AND CO1.FYEAR =
(SELECT MAX(CO2.FYEAR) FROM INVOPT_STG.TMP_COST_OCS CO2 WHERE CO2.ITEM_10D
= A.ITEM_10D AND CO2.COST_TYPE = 'F' AND CO2.COUNTRY_CD = A.COUNTRY_CD) 
AND CO1.COST_TYPE = 'F' AND CO1.COUNTRY_CD = A.COUNTRY_CD GROUP BY A.ITEM, A.LOC
 ------ Eplain plan generated from shared pool +++++++++++

---------------------------------------------------------------------------------------------------------------
| Id  | Operation                             | Name            | E-Rows |  OMem |  1Mem | Used-Mem | Used-Tmp|
---------------------------------------------------------------------------------------------------------------
|   1 |  HASH GROUP BY                        |                 |      1 |    11M|  2139K| 3095K (1)|    8192 |
|*  2 |   FILTER                              |                 |        |       |       |          |         |
|*  3 |    TABLE ACCESS BY INDEX ROWID        | TMP_COST_OCS    |      1 |       |       |          |         |
|   4 |     NESTED LOOPS                      |                 |      1 |       |       |          |         |
|   5 |      VIEW                             |                 |      1 |       |       |          |         |
|   6 |       HASH GROUP BY                   |                 |      1 |    22M|  4334K| 3898K (1)|   17408 |
|*  7 |        FILTER                         |                 |        |       |       |          |         |
|*  8 |         TABLE ACCESS BY INDEX ROWID   | TMP_COST_OCS    |      1 |       |       |          |         |
|   9 |          NESTED LOOPS                 |                 |      1 |       |       |          |         |
|* 10 |           HASH JOIN                   |                 |      1 |  1179K|  1179K| 1210K (0)|         |
|  11 |            TABLE ACCESS FULL          | STG_LOC         |    155 |       |       |          |         |
|  12 |            TABLE ACCESS FULL          | STG_SKU         |   1738K|       |       |          |         |
|* 13 |           INDEX RANGE SCAN            | TMP_COST_OCS_01 |      1 |       |       |          |         |
|  14 |         SORT UNIQUE NOSORT            |                 |      1 |       |       |          |         |
|* 15 |          TABLE ACCESS BY INDEX ROWID  | TMP_COST_OCS    |      1 |       |       |          |         |
|* 16 |           INDEX RANGE SCAN            | TMP_COST_OCS_01 |      3 |       |       |          |         |
|  17 |           SORT UNIQUE NOSORT          |                 |      1 |       |       |          |         |
|* 18 |            TABLE ACCESS BY INDEX ROWID| TMP_COST_OCS    |      1 |       |       |          |         |
|* 19 |             INDEX RANGE SCAN          | TMP_COST_OCS_01 |      3 |       |       |          |         |
|* 20 |      INDEX RANGE SCAN                 | TMP_COST_OCS_01 |      3 |       |       |          |         |
|  21 |    SORT AGGREGATE                     |                 |      1 |       |       |          |         |
|* 22 |     TABLE ACCESS BY INDEX ROWID       | TMP_COST_OCS    |      1 |       |       |          |         |
|* 23 |      INDEX RANGE SCAN                 | TMP_COST_OCS_01 |      3 |       |       |          |         |
---------------------------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   2 - filter("CO1"."FYEAR"=)
   3 - filter(("CO1"."COST_TYPE"='F' AND "CO1"."COUNTRY_CD"="A"."COUNTRY_CD"))
   7 - filter("CO"."COUNTRY_CD"=CASE  WHEN ("SL"."COUNTRY_CD_COST"="CO"."COUNTRY_CD") THEN
              "SL"."COUNTRY_CD_COST" WHEN (("SL"."COUNTRY_CD_COST"<>NVL(,' ')) AND ("SL"."COUNTRY_CD_COST"='US'))
              THEN 'CAN' WHEN (("SL"."COUNTRY_CD_COST"<>NVL(,' ')) AND ("SL"."COUNTRY_CD_COST"='CAN')) THEN 'US'
              ELSE "SL"."COUNTRY_CD_COST" END )
   8 - filter("CO"."COST_TYPE"='F')
  10 - access("SS"."MANUF_LOC"=SUBSTR("SL"."LOC",1,3))
  13 - access("CO"."ITEM_10D"<"SS"."ITEM_10D")
       filter(("CO"."ITEM_10D"<>"SS"."ITEM_10D" AND
              SUBSTR("CO"."ITEM_10D",1,9)=SUBSTR("SS"."ITEM_10D",1,9)))
  15 - filter(("CO3"."COUNTRY_CD"=:B1 AND "CO3"."FYEAR"=:B2))
  16 - access("CO3"."ITEM_10D"=:B1)
  18 - filter(("CO3"."COUNTRY_CD"=:B1 AND "CO3"."FYEAR"=:B2))
  19 - access("CO3"."ITEM_10D"=:B1)
  20 - access("CO1"."ITEM_10D"="A"."ITEM_10D")
  22 - filter(("CO2"."COUNTRY_CD"=:B1 AND "CO2"."COST_TYPE"='F'))
  23 - access("CO2"."ITEM_10D"=:B1)

Note
-----
   - Warning: basic plan statistics not available. These are only collected when:
       * hint 'gather_plan_statistics' is used for the statement or
       * parameter 'statistics_level' is set to 'ALL', at session or system level
+++++ System Waits ++++++++
EVENT                                                            TOTAL_WAITS TIME_WAITED AVERAGE_WAIT
---------------------------------------------------------------- ----------- ----------- ------------
db file sequential read                                             11887758     3643542          .31
jobq slave wait                                                         4434     1297399        292.6
db file scattered read                                               3821415      615568          .16
log file parallel write                                               778118      476860          .61
db file parallel write                                                652969      456530           .7
SQL*Net more data to client                                         93400714      364435            0
PX Idle Wait                                                            1078      208509       193.42
control file parallel write                                           141212       62082          .44
log file switch (checkpoint incomplete)                                  323       22567        69.87
log buffer space                                                         786       10051        12.79
log file sync                                                          17816        7988          .45
db file single write                                                   42869        5994          .14
read by other session                                                  13713        5051          .37
log file switch completion                                              1125        4963         4.41
db file parallel read                                                    756        3951         5.23
Data file init write                                                   18444        3569          .19
cursor: pin S wait on X                                                 3280        3409         1.04
os thread startup                                                        452        2250         4.98
direct path read                                                     4438445        1629            0
SQL*Net more data from client                                          73118        1613          .02
control file sequential read                                          291106        1523          .01
local write wait                                                        4707        1169          .25
latch: shared pool                                                       166         954         5.75
direct path read temp                                                4657234         921            0
library cache load lock                                                  313         753         2.41
enq: KO - fast object checkpoint                                        5286         734          .14
PL/SQL lock timer                                                          7         682        97.43
latch: library cache                                                     501         614         1.23
+++ commulative events for session +++


EVENT                                                            TOTAL_WAITS TIME_WAITED AVERAGE_WAIT
---------------------------------------------------------------- ----------- ----------- ------------
db file sequential read                                                 6224        1978          .32
SQL*Net message from client                                               20           2          .09
SQL*Net message to client                                                 20           0            0
log file sync                                                              1           0          .17
Published by: user11983993 on May 18, 2012 11:12

Hello

(1) http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_stats.htm#i1046561
(2) if there was no FBI created, then most likely the plan slipped by accident. For example, a histogram obtained collected which biased the estimation of cardinality closer to the correct value. The important thing is that, unless you have an FBI (or extended his stats, but to do this, you must be on 11g or higher) you can not count on the coming optimizer with a reasonable plan for queries involving joins
(3) If you are unable to re - create the problem, you can use 10053 event tracing to see the origin of the error in the selectivity of the join of and that fixed it. If you are not sure of how to interpret a 10053 trace file, you can export a test case and post it here (or by mail to me).

Best regards
Nikolai

Tags: Database

Similar Questions

  • Characters not visible (caused by hitting the bar space or TAB in PL/SQL developer tool) causing slow running query? and database with low performance?

    Hi all

    I need your help to get this issue resolved its urgent and I'm not able to get to the conclusion. Here is my scenario, I'm getting slow query runs because of some non-visible characters that are copied with the application of the PL/SQL developer tool. Please find below attached screenshot: Oracle_Issue

    Oracle_Isssue.png

    Note: This non-visible characters are caused when we write the query then us hit the SPACEBAR or press TAB PL/SQL developer tool

    I use the developer tool PL/SQL to write or test the query. Now I take this request copy paste in my application of the company (who takes this query connects to Oracle or any source of data base, catch data and produce PDF reports for customers).

    Now, my client is the Oracle user when I write and you run this query by the PL/SQL Developer, it works fine, but when I paste in my Inbox feature request (reporting system) and run it, it runs slower and jams to the customer database. Now after a little research I found that when I copy the query directly from PL/SQL developer at my request, he copy some characters not visible (introduced when we press SPACE or TAB in PL/SQL developer tool when writing query) with the request, then I copy this query again to my box of the application Notepad and delete these non-visible characters. Now, after removing the non-visible characters again once I copy backup question in my application and run the query, it works normally. Please find below attached screenshot: Oracle_Issue 2

    Oracle_Isssue_2.png

    So I think that the cause of slow performance is due to some INVISIBLE CHARACTERS present in the query.

    My application uses SQL server 2008-2012 at the backend to store data from different sources.

    Character set used: SQL_Latin1_General_CP1_CI_AS


    To write and test queries: PL/SQL developer tool

    My Client use Oracle 11 g

    Character set used: Normal character: NLS_CHARACTER: AL16UTF16

    National Characeter: NLS_NCHAR_CHARACTER: WE8WIN1521

    I just wanted to know the blocking process to the top of the database and the characters not visible how affecting slow running query of query database.

    Please let me know if I'm missing something or you need more information on this issue.

    Thanks in advance,

    HP

    Simple answer. No.

    Spaces and line breaks do not change the execution plan created. Does not plan to run slower or faster.

  • Extremely slow running VM XP in Windows 7 (7 post)

    I'm running a Windows 7 thinkpad with 4 GB of ram and a 2.4 GHz processor. When running an XP VM, I get unusually high processor utilization. I ran the same configuration (a laptop even slower) under WS 6.x with much better results. No idea as to what could happen? I've attached a screenshot of its use within the virtual machine.

    The host is Windows 7 RTM and virtual Windows XP SP3 machine.

    Thank you.

    Why you set up a virtual computer with 2 processors - your host should have at least 4 cores before such a framework works well.

    But in this case, I guess that there is also something wrong with the USB - if you do not need USB disable for a test

    ___________________________________

    VMX-settings- VMware-liveCD - VM-infirmary

  • Problem running query.

    Hello

    I have the below slow running query.

    Please suggest / give your input on the reduction of the time for this request

    ENV: Oracle 10.2.0.4.0


    SELECT *.
    OF GMS_NOTE g
    WHERE g.SEQ_ID =
    (SELECT MAX (B.SEQ_ID)
    OF GMS_NOTE gn
    WHERE the gn. HIST_ID = g.HIST_ID)
    AND SUPERIOR (SRC_ID) =: SYS_B_0
    AND SUPERIOR (SAL_CODE) =: SYS_B_1
    AND TRANS_DATE > = TO_DATE (: SYS_B_2, SYS_B_3);




    PLAN_TABLE_OUTPUT
    -------------------------------------------------------------------------------------------------------------------------
    Hash value of plan: 4245552679

    ---------------------------------------------------------------------------------------------------
    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
    ---------------------------------------------------------------------------------------------------
    | 0 | SELECT STATEMENT | 1. 402 | 57739 (1) | 00:11:33 |
    |* 1 | FILTER |
    |* 2 | TABLE ACCESS FULL | GMS_NOTE | 1. 402 | 57736 (1) | 00:11:33 |
    | 3. GLOBAL TRI | 1. 10.
    | 4. FIRST LINE | 3. 30. 3 (0) | 00:00:01 |
    |* 5 | INDEX RANGE SCAN (MIN/MAX) | GMS_NOTE_PK | 3. 30. 3 (0) | 00:00:01 |
    ---------------------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):
    ---------------------------------------------------

    1 - filter("O".") SEQ_ID "IS (SELECT MAX ('B'.". SEQ_ID") OF
    "GMS_NOTE" 'B' WHERE 'B '. "HIST_ID"=:B1))
    2 filter (UPPER ("SRC_ID") =: SYS_B_0 AND UPPER ("SAL_CODE") =: SYS_B_1)
    AND 'TRANS_DATE' > = TO_DATE (: SYS_B_2,: SYS_B_3))
    5 - access("B".") HIST_ID "(=:B1)"

    21 selected lines.



    Index / row count information for the GMS_NOTE (not partitioned table):

    His stats are up to date.

    Select count (*) in the GMS_NOTE;


    COUNT (*)
    ----------
    4858242



    CREATE A UNIQUE GMS_NOTE_PK ON GMS_NOTE INDEX
    (HIST_ID, SEQ_ID);


    CREATE INDEX IDX1_BIDFEEDORDER ON GMS_NOTE
    (HIST_ID, UPPER ("SRC_ID"), UPPER ("SAL_CODE"), TRANS_DATE);


    ALTER TABLE GMS_NOTE ADD)
    CONSTRAINT GMS_NOTE_PK
    KEY ELEMENTARY SCHOOL
    (HIST_ID, SEQ_ID)
    WITH THE HELP OF INDEX GMS_NOTE_PK
    ENABLE VALIDATE);

    Thanks in advance.

    user13517642 wrote:
    Thanks Nikolay.

    I created an index on the trans_date column, and it is originally a range of indexes on the table instead of a table scan full scan.

    I'm not Nikolai, but you're welcome. ;)

    Now turn this trans_date the composite index index, I suggested, for an even better improvement.

  • My MacBook Pro is running extremely slow all of a sudden. Help, please!

    My MacBook Pro is in running extremely slow all of a sudden, that way for several days now and I can't understand what is the cause.

    Details: MacBook Pro (13-inch, late 2011)

    Processor - 2.4 GHz Intel Core i5

    Memory - 4 GB 1333 MHz DDR 3

    Storage - 500 GB SATA (264.44 498.88 free GB) drive

    OSX - El Capitan 10.11.5 version

    I tried the simple things such as checking for indexing spotlight, my home screen of the size of the compensation, first aid running in disk utility, etc.. But had no results. Any suggestions would be very appreciated!

    Back up all data immediately, as the internal drive may be failing.

    When you see a beachball cursor or the slowness is particularly bad, note the exact time: hour, minute, second.

    These must be run as administrator. If you have only one user account, you are the administrator.

    Run the Console application in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys 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

    in the list of logs on the left. If you don't see this list, select

    List of newspapers seen ▹ display

    in the menu at the top of the screen bar.

    Each message in the journal begins with the date and time when it was entered. Highlight date back to the time you noted above.

    Select the messages entered since then until the end of the episode, or until they begin to repeat, whichever comes first.

    Copy messages to the Clipboard by pressing Control-C key combination. Paste into a reply to this message by pressing command + V.

    The journal contains a large amount of information, almost all this is useless to solve any particular problem. When you post a journal excerpt, be selective. A few dozen lines are almost always more than enough.

    Please don't dump blindly thousands of lines in the journal in this discussion.

    Please do not post screenshots of log messages - text poster.

    Some private information, such as your name, may appear in the log. Anonymize before posting.

    When you post the journal excerpt, an error message may appear on the web page: "you include content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the forum software. Thanks for posting the text on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

  • iTunes running extremely slow

    I'm having a problem with extreme slowness.  I have read all the post and don't see anything that I could change to correct this situation.  I have my music on an external disk file using the FireWire on my iMac.  I have the latest Mac os 10.11.1 and the latest iTunes version 12.3.1.23.

    I lit the apple music, but I'm not using the icloud or search service

    I have 127,88 GB of music on any external drive

    At this point, I am considering canceling music apple and past to another service, and I plan to download an alternative product to iTunes.

    Is it possible that you and Podcasts iTunes can get their own programs as they do on the iPad and iPhone?

    What would be a good alternative to iTunes?

    Thanks for any help.

    One thing you should do is to run disk utility and test the volume of the external drive to confirm that there is no alteration of the data on it.  You can do this by selecting the disk external volume (indented under the Unit) in the disk utility sidebar.  Click on the button of first aid , then run it.  The corruption of data may cause slow access.  Also, if the player is close to being full, which can strongly increase the fragmentation of data, which can cause slow access, especially if the drive has been through cycles to get closer to satiety, followed erase you data in order to free up space, followed by get start near new...

    My iTunes Media , also on an external FireWire drive folder, is currently 315 GB (with things that take more space as films, TV series, video podcasts, etc.).  I actively use two Match iTunes and music from Apple.  I don't feel any slowness.  You can do additional tests on your system to determine the cause.

  • When the computer remains in standby mode it will not start normally, usually ok in safe mode, but even when its up and running normally it's extremely slow.

    Original title: searchfilterhost problems

    I am running Vista family 32-bit and when the computer is left in standby mode, that it does not start normally, usually ok in mode without failure, but even if his place and it works normally is extremely slow. Having verified the use of the processor, 82 processes running anything meaningful except 50 + % is used by searchfilterhost.exe, this would cause the problem and if so how it can be cured.

    Hi Brian,.

    You have made any changes to your computer recently?

    I suggest you to follow the steps and check if it helps.

    Method 1: Follow the link and check if that helps.
    The problems of wake the computer from sleep mode

    Method 2: You can also follow the link and check if it helps.
    How to troubleshoot performance problems with sleep, hibernation and resume in Windows Vista

    Method 3: Search for viruses using the Microsoft Safety Scanner and check if that helps.
    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    Note: The data files that are infected must be cleaned only by removing the file completely, which means that there is a risk of data loss.

    Method 4: You can also check out the link and check if it helps.

    Ways to improve your computer's performance

     
  • Dreamweaver cc 2014 running extremely slow

    Dreamweaver CC 2014 is running extremely slow - with essentially no response (using the split or any other mode mode). My version of CC works perfectly - fast and clean. I have not changed anything - I have to install the new 2014 CC and tried and it doesn't fundamentally. What is going on? I have an iMac 2012 - updated my OS a lot of RAM, etc. I have a lot of open fonts, but this has never done other programs - just wondering if perhaps behind the scenes its reading of all this stuff (why would it?).

    Thanks Preran.

    My external drives (nine in total) were originally of course DreamWeaver 2014 to a problem of 'mapping' of readers. However, by connecting the USB drives first, restarting and opening DreamWeaver 2014 once again, it worked as expected. Add two additional discs to high speed and restart again, all mounted drives and checking dreamweaver acted as it should and it behaved as it should.

    That solved my problem.

    Thank you

    Greg

  • VMware Fusion 3 running extremely slow...

    First of all, my MacBook Pro:

    Core 2 T9300 2.5 GHz

    4 GB memory

    250 GB SATA HARD DRIVE

    Snow Leopard 10.6.1

    VMware Fusion 3.0

    When I was with Leopard and VMware Fusion 2.x, the virtual machines run fast, but now they are extremely slow. BTW, I have activated the 64-bit kernel.

    I managed to find the reason, it's because the "mds" in the host OS process, is not a problem of the guest operating system. Everytime I turn on my Windows XP in VMware, "mds" will appear in the activity monitor window, and account for about 2% ~ 20% CPU, hard drive usage becomes noisy at the same time. What I could do is just wait, after about an hour, mds will be 'calm down' and my MBP back alone. But, when the next time I turn on my virtual machine, "mds" will appear again...

    "Mds" makes me crazy... I tried to google for answers, but no result.

    Anyone faced this problem too? Or someone knows how to solve the problem? Thank you!

    We found just a bug where in some cases fusion 3 will be a spotlight on every launch search (it is supposed not only to occur once), which seems to be exactly what describes this thread. You can work around this bug open Terminal.app and running

    defaults write com.vmware.fusion PLLibrarySpotlightSearchDone -bool YES
    

    Please let us know if that fixes things (or if not).

  • Convert an Esxi 4 2 Server VM runs extremely slow

    Hello

    I am very new to virtualization and have just the configuration server ESXi 4 that will replace the VM Server 2 systems we tested.  Recently, I tried to convert one of my server-2 VMs (Using the 'Converter Standalone Client') a VM (Version 7) Infrastructure.  After two days of continuous operation, the converter was only 5% finished and was transferring data to 24 kb/s (the server is ~ 150 GB in size).  This seems to be extremely slow and I hope that there is something that I can do to speed up that this server should run during opening hours and I like that, I can't take it down more than the weekend.

    I ran the converter Client on the server that hosts the virtual machine, and that server and the ESXi have dual network adapters connected to a managed switch of FD 100 MB.  (They are both on the same switch).  The virtual machine was not working and there was almost no other network activity going on during the conversation.

    Any help is appreciated

    The goal is to eliminate the things that it is not. Download your installation as simple as possible. I don't know what your problem is, but it certainly seems like a network problem. A single 100 MB network adapter should work much faster than the speed you receive.

    Other things to eliminate are pass the port problems, configuration issues, cable issues, NIC

    Run something like wireshark as you begin your conversion. See if you notice any problems in the capture.

    Create a new fresh installation of the VM on the ESXi host and check the flow rate etc. You don't want to go to production if you have problems. Monday will not be fun if you do.

  • Facebook (entire site) runs extremely slow in Firefox.

    This does not happen with all the other Web sites. It is extremely slow-scrolling, loading of pages, etc., and each time I have a Facebook tab is open, it slows down the whole browser. The browser returns to normal speed once the Facebook tabs are closed. The worst thing is when I type a message or comment on Facebook - specific messages - he's so bad that I have to stop and wait for the characters to catch up to me, sometimes for several minutes just finish one sentence until I can move my real typing speed. It makes it extremely difficult to use as a communication tool and I don't know what to do about this.

    I had this problem (Linux though). Disabling the extension DownloadHelper solved it for me.

  • My Mac Mini is extremely slow and any video will start but soon stops and intermittently starts and stop immediately. What is the reason?

    My Mac Mini (end 2012) 2.5 ghz memory 8 GB Yosemite 10.10.5 is extremely slow. I read a few articles on communities, but unable to solve the problem. I plan to upgrade memory soon. In addition, a video game doesn't quite work. It starts and stops in 5 seconds and restarts it for a few seconds and stops completely. An advisor to fix the problem will be appreciated.

    When you see a beachball cursor or the slowness is particularly bad, note the exact time: hour, minute, second.

    These must be run as administrator. If you have only one user account, you are the administrator.

    Run the Console application in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys 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

    in the list of logs on the left. If you don't see this list, select

    List of newspapers seen ▹ display

    in the menu at the top of the screen bar.

    Each message in the journal begins with the date and time when it was entered. Highlight date back to the time you noted above.

    Select the messages entered since then until the end of the episode, or until they begin to repeat, whichever comes first.

    Copy messages to the Clipboard by pressing Control-C key combination. Paste into a reply to this message by pressing command + V.

    The journal contains a large amount of information, almost all this is useless to solve any particular problem. When you post a journal excerpt, be selective. A few dozen lines are almost always more than enough.

    Please don't dump blindly thousands of lines in the journal in this discussion.

    Please do not post screenshots of log messages - text poster.

    Some private information, such as your name, may appear in the log. Anonymize before posting.

    When you post the journal excerpt, an error message may appear on the web page: "you include content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the forum software. Thanks for posting the text on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

  • Please help make the equivalent of a defrag on my Mac, as it is extremely slow

    my Mac is extremely slow, painfully slow in reality and needs a cleanup but I don't know how to delete it all waste such as cookies etc and help run faster.

    Help, please

    Cookies do not affect the performance of Mac, and there is no advantage in "defragmentation". Do not use any product that claims to "clean up" your Mac either. They are all scams.

    Back up your Mac if you have not already done so. Read https://www.apple.com/support/backup/to learn how to do this. To learn how to use Time Machine read to use Time Machine to back up or restore your Mac.

    Determine if the problems persist also in 'Safe Mode':

    • "Safe Boot" or Safe Mode is a troubleshooting mode that bypasses all system of third-party extensions and only loads the required system components. Read about it: departure upward in Safe Mode
    • You must turn off FileVault before you start your Mac in Mode without failure.
    • From your Mac in Safe Mode takes longer that usual, graphics won't get smooth, audio is disabled on some Macs and some programs (iTunes for example) may not work at all.
    • Just from your Mac in Safe Mode does not solve the problem, it's to observe its performance without additional components.
    • To end, Safe Mode restart your Mac normally. Stop will take more time as well.
  • Extremely slow on my Satellite Z930 - 15 X

    Hello

    Here is my problem (sorry for my English):

    I have a Toshiba Satellite Z930 15 X.

    For several weeks, it is very very slow. If eco or normal mode, it is still slower than the eco mode. * Even without running any program *. When I look at the Task Manager, everything is ok and fluid.

    Is this a hardware problem?
    I also noticed that the fan works far more often than the first months of use, even with just an open word document.

    The only solution I found is to restart the computer.
    After each restart, it is fast as usual, but only for a short period. But at one time or another, the extreme slowness often returns after a break.

    * I also noticed that it often occurs after a suspension or the connection / disconnection of the laptop from the AC outlet.*

    (I said I have a few programs installed and no trace of virus and other software malicious (I'm very careful about that)).

    Have you had this problem, where it comes from, what can I do?

    Thank you!

    Hello

    On this virtual path, it is not easy to tell what exact reason. To be honest I don't think that there is a hardware problem. Fact is that many background processes can slow down the performance of s for laptop. Perhaps some context downloads and installation of the update may be reason your laptop reacts quite slow.

    Please check the commissioning and disable all unnecessary applications. If you do not use some of them, they should not start with Windows and run in the background. Also check Windows update option. Turn off automatic updating.

    If please do first and check if the laptop runs a little faster.
    Please post comments.

  • Extremely slow printing wireless with HP Photosmart Premium C309g-m

    I see extremely slow print speeds when printing from a Mac or a Windows XP system on a new printer HP Photosmart Premium C309g-m wireless. The printer starts printing immediately when I request a print, but it only prints one line. It will take about 15 minutes then to print the rest of the page, each print after a very long break line. Print demo page doesn't exhibit this problem, only documents of programs such as Word 2008, Safari, and Firefox (I tried firefox on PC and Mac) are affected.

    If I connect to the printer via a USB connection it prints very well, so this problem seems to be the only wireless printing.

    Printer: HP Photosmart Premium C309g-m
    Computer: Mac mini (late 2009 model) (also tried a Windows XP laptop, by comparison using the latest drivers from the HP website)
    OS: Mac OS X 10.6.2 with all available updates installed
    Method of connection: cable Ethernet connection to the router wireless
    Printer drivers: version 2.2.1 (Apple provided, drivers HP never installed as system comes with 10.6)
    Wireless router: Apple TimeCapsule (early 2009) 1 TB, honing a/d and modes of b/g on 2.4 and 5 GHz. TimeCapsule is in transition as the DSL modem handles DHCP service mode
    Encryption: WPA2 Personal, no MAC filtering or hide the SSID.

    IP addressing scheme: all addresses are distributed by the server DHCP without reservation of any kind

    The TimeCapsule is sitting three inches from the printer and the printer indicates the complete signal. Connecting the printer to the wireless network and setup of the printer on the Mac went off without a hitch. Only when you print a test document discover us the problem. The wireless network will behave as expected when you access Internet from Mac and Windows devices (tested with a laptop computer Dell XP and a MacBook with OS X 10.6.2), so I don't see any problem with the wireless network together.

    Attempt to use:
    1 reboot and power off, wait, restart the computer
    2 reset the print subsystem, the printer off and on again and reinstall the printer

    3. disconnect the power to the printer and let it sit for several minutes before trying to print wireless.

    None of them worked.

    I don't know exactly what is happening... I'll have to think about.

    Looks like you're running with the current configuration.

    Can we call this resolved?

Maybe you are looking for