Query very very slow

Hi Guys,
I have one simple query but data volume is too huge and it's taking too long time. Can you guys suggest how to improve it's response time or lets say we can re-write in different manner to achieve performance gain.
SELECT b.BENE_CLM_NUM_EQ, b.HSE_CLM_THRU_DT
  FROM haji.haji_clm_b b
where b.hse_clm_thru_dt BETWEEN to_date('01/01/2007', 'mm/dd/yyyy') AND
       to_date('12/31/2007', 'mm/dd/yyyy')
   AND b.hcfa_clm_proc_dt <= to_date('03/31/2008', 'mm/dd/yyyy')
   AND b.final_action_sw = 'Y'
   and exists
(select l.link_num
          from haji.haji_clm_b_line l
         WHERE l.run_dt = b.run_dt
           AND l.link_num = b.link_num
           AND (l.HCPCS_CD IN (SELECT c.code
                                 from dmatta.CKD1_codes c
                                WHERE l.HCPCS_CD = c.code
                                  AND c.type = 'EXHCPCS') OR
               l.DGNS_CD IN (SELECT c.code
                                from dmatta.CKD1_codes c
                               WHERE l.DGNS_CD = c.code
                                 AND c.type = 'EXICD9DX')));
PLAN_TABLE_OUTPUT                                                                                                                                                                                                                                                                                           
Plan hash value: 1387564539                                                                                                                                                                                                                                                                                 
| Id  | Operation                 | Name            | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     | Pstart| Pstop |                                                                                                                                                                                       
|   0 | SELECT STATEMENT          |                 |     1 |    67 |       |    27M  (2)|108:01:15 |       |       |                                                                                                                                                                                       
|*  1 |  HASH JOIN RIGHT SEMI     |                 |     1 |    67 |    21G|    27M  (2)|108:01:15 |       |       |                                                                                                                                                                                       
|   2 |   VIEW                    | VW_SQ_1         |   675M|    13G|       |    22M  (2)| 86:23:02 |       |       |                                                                                                                                                                                       
|*  3 |    FILTER                 |                 |       |       |       |            |          |       |       |                                                                                                                                                                                       
|   4 |     PARTITION RANGE ALL   |                 |  6925M|   167G|       |    22M  (2)| 86:23:02 |     1 |    25 |                                                                                                                                                                                       
|   5 |      TABLE ACCESS FULL    | HAJI_CLM_B_LINE |  6925M|   167G|       |    22M  (2)| 86:23:02 |     1 |    25 |                                                                                                                                                                                       
|*  6 |     TABLE ACCESS FULL     | CKD1_CODES      |     1 |    12 |       |     2   (0)| 00:00:01 |       |       |                                                                                                                                                                                       
|*  7 |      TABLE ACCESS FULL    | CKD1_CODES      |     1 |    12 |       |     2   (0)| 00:00:01 |       |       |                                                                                                                                                                                       
|   8 |   PARTITION RANGE ITERATOR|                 |   679M|    28G|       |  3021K  (3)| 11:44:58 |    21 |    24 |                                                                                                                                                                                       
|*  9 |    TABLE ACCESS FULL      | HAJI_CLM_B      |   679M|    28G|       |  3021K  (3)| 11:44:58 |    21 |    24 |                                                                                                                                                                                       
Query Block Name / Object Alias (identified by operation id):                                                                                                                                                                                                                                               
   1 - SEL$C772B8D1                                                                                                                                                                                                                                                                                         
   2 - SEL$683B0107 / VW_SQ_1@SEL$7511BFD2                                                                                                                                                                                                                                                                  
   3 - SEL$683B0107                                                                                                                                                                                                                                                                                         
   5 - SEL$683B0107 / L@SEL$2                                                                                                                                                                                                                                                                               
   6 - SEL$3        / C@SEL$3                                                                                                                                                                                                                                                                               
   7 - SEL$4        / C@SEL$4                                                                                                                                                                                                                                                                               
   9 - SEL$C772B8D1 / B@SEL$1                                                                                                                                                                                                                                                                               
Predicate Information (identified by operation id):                                                                                                                                                                                                                                                         
   1 - access("RUN_DT"="B"."RUN_DT" AND "LINK_NUM"="B"."LINK_NUM")                                                                                                                                                                                                                                          
   3 - filter( EXISTS (SELECT 0 FROM "DMATTA"."CKD1_CODES" "C" WHERE "C"."CODE"=:B1 AND                                                                                                                                                                                                                     
              "C"."TYPE"='EXHCPCS') OR  EXISTS (SELECT 0 FROM "DMATTA"."CKD1_CODES" "C" WHERE "C"."CODE"=:B2 AND                                                                                                                                                                                            
              "C"."TYPE"='EXICD9DX'))                                                                                                                                                                                                                                                                       
   6 - filter("C"."CODE"=:B1 AND "C"."TYPE"='EXHCPCS')                                                                                                                                                                                                                                                      
   7 - filter("C"."CODE"=:B1 AND "C"."TYPE"='EXICD9DX')                                                                                                                                                                                                                                                     
   9 - filter("B"."FINAL_ACTION_SW"='Y' AND "B"."HSE_CLM_THRU_DT"<=TO_DATE('2007-12-31 00:00:00',                                                                                                                                                                                                           
              'yyyy-mm-dd hh24:mi:ss') AND "B"."HCFA_CLM_PROC_DT"<=TO_DATE('2008-03-31 00:00:00', 'yyyy-mm-dd hh24:mi:ss'))                                                                                                                                                                                 
Column Projection Information (identified by operation id):                                                                                                                                                                                                                                                 
   1 - (#keys=2) "B"."BENE_CLM_NUM_EQ"[VARCHAR2,12], "B"."HSE_CLM_THRU_DT"[DATE,7]                                                                                                                                                                                                                          
   2 - "RUN_DT"[DATE,7], "LINK_NUM"[NUMBER,22]                                                                                                                                                                                                                                                              
   3 - "L"."RUN_DT"[DATE,7], "L"."LINK_NUM"[NUMBER,22]                                                                                                                                                                                                                                                      
   4 - "L"."RUN_DT"[DATE,7], "L"."LINK_NUM"[NUMBER,22], "L"."DGNS_CD"[VARCHAR2,5], "L"."HCPCS_CD"[VARCHAR2,5]                                                                                                                                                                                               
   5 - "L"."RUN_DT"[DATE,7], "L"."LINK_NUM"[NUMBER,22], "L"."DGNS_CD"[VARCHAR2,5], "L"."HCPCS_CD"[VARCHAR2,5]                                                                                                                                                                                               
   6 - "C"."CODE"[VARCHAR2,6], "C"."TYPE"[VARCHAR2,10]                                                                                                                                                                                                                                                      
   7 - "C"."CODE"[VARCHAR2,6], "C"."TYPE"[VARCHAR2,10]                                                                                                                                                                                                                                                      
   8 - "B"."RUN_DT"[DATE,7], "B"."LINK_NUM"[NUMBER,22], "B"."HSE_CLM_THRU_DT"[DATE,7],                                                                                                                                                                                                                      
       "B"."BENE_CLM_NUM_EQ"[VARCHAR2,12]                                                                                                                                                                                                                                                                   
   9 - "B"."RUN_DT"[DATE,7], "B"."LINK_NUM"[NUMBER,22], "B"."HSE_CLM_THRU_DT"[DATE,7],                                                                                                                                                                                                                      
       "B"."BENE_CLM_NUM_EQ"[VARCHAR2,12]                                                                                                                                                                                                                                                                   
Note                                                                                                                                                                                                                                                                                                        
   - dynamic sampling used for this statement                                                                                                                                                                                                                                                               
58 rows selected

Hi Taral,
I think you need some indexes my friend. You have a lot of multi-gigabyte FULL TABLE SCANS - and luckily - your query has some range and equality predicates. I would suggest experimenting with these:
/* Indexes for table: haji_clm_b */
CREATE INDEX haji.haji_clm_b_idx1 ON haji.haji_clm_b (hse_clm_thru_dt);
CREATE INDEX haji.haji_clm_b_idx2 ON haji.haji_clm_b (hcfa_clm_proc_dt);
CREATE INDEX haji.haji_clm_b_idx3 ON haji.haji_clm_b (run_dt, link_num);
-- Create bitmap here if it has lower cardinality (which it seems it does) AND if the table is infrequently updated...
CREATE BITMAP INDEX haji.haji_clm_b_idx4 ON haji.haji_clm_b (final_action_sw);
/* Indexes for table: haji_clm_b_line */
CREATE INDEX haji.haji_clm_b_line_idx1 ON haji.haji_clm_b_line (hcpcs_cd);
CREATE INDEX haji.haji_clm_b_line_idx2 ON haji.haji_clm_b_line (dgns_cd);
/* Indexes for table: ckd1_codes */
CREATE INDEX dmatta.ckd1_codes_idx1 ON dmatta.ckd1_codes (TYPE);I would also suggest slightly re-writing your query like this:
SELECT bene_clm_num_eq
     , hse_clm_thru_dt
  FROM haji.haji_clm_b
WHERE hse_clm_thru_dt BETWEEN TO_DATE ('01/01/2007'
                                      , 'mm/dd/yyyy') AND TO_DATE ('12/31/2007'
                                                                 , 'mm/dd/yyyy')
   AND hcfa_clm_proc_dt <= TO_DATE ('03/31/2008'
                                  , 'mm/dd/yyyy')
   AND final_action_sw = 'Y'
   AND (run_dt, link_num) IN (SELECT run_dt
                                   , link_num
                                FROM haji.haji_clm_b_line
                               WHERE (   hcpcs_cd IN (SELECT code
                                                        FROM dmatta.ckd1_codes
                                                       WHERE TYPE = 'EXHCPCS')
                                      OR dgns_cd IN (SELECT code
                                                       FROM dmatta.ckd1_codes
                                                      WHERE TYPE = 'EXICD9DX')));Give it a try and let us know how it goes....
Good luck.
Message was edited by:
PDaddy

Similar Messages

  • The query is performing very very slow, can any one please help me tue this

    SELECT h.ROWID row_id, e.preparer_user_id
    FROM arsarc.ars_sv_reconciliation e,
    arsarc.ars_sv_reconciliation_accts a,
    arsarc.ars_sv_acct_status_history h
    WHERE e.rec_id = :b1
    AND e.rec_id = a.rec_id
    AND e.ledger_id = h.ledger_id
    AND a.ccid = h.ccid
    AND e.preparer_user_id <> h.preparer_user_id
    AND h.fiscal_year + h.fiscal_period >= e.fiscal_year + e.fiscal_period
    PLAN_TABLE_OUTPUT
    Plan hash value: 2851427911
    | Id  | Operation                     | Name                           | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |                                |    60 |  7740 |  6282  (11)| 00:00:08 |
    |*  1 |  HASH JOIN                    |                                |    60 |  7740 |  6282  (11)| 00:00:08 |
    |*  2 |   INDEX RANGE SCAN            | PK_RECONCILIATION_ACCTS        |   104 |  4160 |     3   (0)| 00:00:01 |
    |   3 |   NESTED LOOPS                |                                |   178K|    15M|  6243  (10)| 00:00:08 |
    |   4 |    TABLE ACCESS BY INDEX ROWID| ARS_SV_RECONCILIATION          |     1 |    23 |     2   (0)| 00:00:01 |
    |*  5 |     INDEX UNIQUE SCAN         | PK_ARS_SV_RECONCILIATION       |     1 |       |     1   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    |*  6 |    TABLE ACCESS BY INDEX ROWID| ARS_SV_ACCT_STATUS_HISTORY     |   178K|    11M|  6241  (10)| 00:00:08 |
    |*  7 |     INDEX RANGE SCAN          | ARS_SV_ACCT_STATUS_HISTORY$LPY | 62094 |       |  5243  (11)| 00:00:07 |
    Predicate Information (identified by operation id):
       1 - access("A"."CCID"="H"."CCID")
       2 - access("A"."REC_ID"=TO_NUMBER(:B1))
       5 - access("E"."REC_ID"=TO_NUMBER(:B1))
       6 - filter("E"."PREPARER_USER_ID"<>"H"."PREPARER_USER_ID")
    PLAN_TABLE_OUTPUT
       7 - access("E"."LEDGER_ID"="H"."LEDGER_ID")
           filter("H"."FISCAL_YEAR"+"H"."FISCAL_PERIOD">="E"."FISCAL_YEAR"+"E"."FISCAL_PERIOD")

    Hi,
    the plan isn't showing any problem (the cost isn't high) so it's not possible to use it to troublehshoot the query. Please provide more information: 4-digit Oracle version, and depending on the version, either SQL real-time monitor report or dbms_xplan output with rowsource stats (option "iostats last" after running your sql with ALTER SESSION SET STATISTICS_LEVEL = ALL).
    Also, when reporting a performance problem it would be wise to avoid expressions like "very, very slow" replacing them with something more useful like "my query is taking 2.5 hours to retrieve 30k rows".
    Best regards,
    Nikolay

  • SQL Query is very slow

    Hello ,
    I have a table like employee having more than 80 Lakhs records .
    In the table there is a country column (country_name) having 234 distinct countries .
    I have created index on Country_name column to make it fast .
    I have created a view (employee_country) which is having distinct countries . The view is populating the country_name from employee table .
    So , in the view (employee_country) have 234 distinct countries .
    Now if I run select count(*) from employee_country ; then the query is taking ( 320.391 seconds ) time to show result ..
    I am using one query which is taking the country_name from this view and comparing to another table with the country names .
    like for example :
    select ec.country_name from employee_country ec where ec.country_name not in (select cdf.country_name from country_dnb_full cdf)
    I am using this query in APEX page to get the country name . But this query is very samll and taking 350.725 seconds to show the result . Therefore the APEX page when we run is showing time out error because the query is taking too much time .
    I don't know why this problem is ?? I already created a index on country_name column to speed up the result . But still its not happening .
    Please some one guide me where the problem is .??
    Thanks
    Prashant Dwivedi

    Hi Prashant
    First thing the view does not store any data. Its just a definition and the select query gets excuted on the original table whenever the view is referred.
    Probabaly you can check for Materialized View.
    Alternatively you can have a Look Up table if you think the values for the country_name is constant.
    Regards
    Arun

  • Exchange 2013 CU5 , Exchange Power Shell very very very slow reasponse when using get command.

    Exchange 2013 CU5 , Exchange Power Shell very very very slow reasponse when using get command.
    First my organize has Exchange on 2 site like
    site A (internet facing) : 2CAS 2 MB all are Services pack1
    site B (DR Site , no user active on this site) : 2CAS 2MB all are Services pack 1
    so today I upgrade Exchange 2013 from SP1 to CU5 start on "site B" and I found this issue and the details is....
    When I open EMS on any CU5 for query something (like get-mailboxdatabasecopystatus) the response return very slow and some query will not return at all (like get-owavirtualdirectory).
    But If I using EMS on SP1. Everything is ok then I try to use EMS on SP1 connect to CU5 and try to query something. the result is
    some query command cannot return for any result that are server on siteB (just some query command)
    Problem
    EMS on CU5 return very slow result.
    EMS on SP1 still ok.
    Does anyone face this problem before for CU5??? Please help me figure this out. Thank you
    reply from Social.technet

    Hi,
    Have you used the above cmdlets to check your Exchange server health?
    "all other command that I ran on EMS didn't logged on event viewer.", my environment is the same with you. I use Exchange 2013, only errors will be displayed in MSExchange Management. Actually, it is not related to slow EMS response.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • DNS very very slow

    Hello Admins and Apple Techies
    I do use SLS on a Mac Mini 1.83GHz with 2GB of memory.
    More or less all services do work fine, except the very very slow DNS.
    I did the following settings.
    1) DNS Server settings are Debug loglevel, localnets, forwarders are the DNS servers of my networkprovider which are 195.186.1.162, 195.186.4.162
    2) Zone settings are 1.99.168.192.in-addr.arpa, 192.168.99.1 for server.private., addressbook.server.private. as alias to server.private., calendar.server.private as alias to server.private. and ical.server.private. as alias to server.private.
    3) The clients and the server do have the following settings in the network settings for DNS entry.
    192.1686.99.1, 195.186.162, 195.186.4.162
    Below you will see the logfile for a query of store.apple.com. As you can see it took 2 minutes to get the server IP of store.apple.com. If I switch off my DNS Server, the clients get this page very very quick. The CPU load is close to nothing.
    26-Oct-2009 14:37:34.137 createfetch: store.apple.com A
    26-Oct-2009 14:37:34.138 connection refused resolving 'store.apple.com/A/IN': 195.186.1.162#53
    26-Oct-2009 14:37:34.147 createfetch: store.apple.com AAAA
    26-Oct-2009 14:37:35.139 createfetch: store.apple.com A
    26-Oct-2009 14:37:35.150 createfetch: store.apple.com AAAA
    26-Oct-2009 14:37:42.933 connection refused resolving 'store.apple.com/AAAA/IN': 17.254.0.59#53
    26-Oct-2009 14:37:44.269 connection refused resolving 'store.apple.com/AAAA/IN': 17.72.133.64#53
    26-Oct-2009 14:37:55.587 connection refused resolving 'store.apple.com/A/IN': 17.254.0.50#53
    26-Oct-2009 14:37:57.833 success resolving 'store.apple.com/A' (in 'apple.com'?) after disabling EDNS
    26-Oct-2009 14:37:57.834 createfetch: store.apple.com.akadns.net A
    26-Oct-2009 14:37:57.834 connection refused resolving 'store.apple.com.akadns.net/A/IN': 195.186.4.162#53
    26-Oct-2009 14:38:00.040 success resolving 'store.apple.com/AAAA' (in 'apple.com'?) after reducing the advertised EDNS UDP packet size to 512 octets
    26-Oct-2009 14:38:00.040 createfetch: store.apple.com.akadns.net AAAA
    26-Oct-2009 14:38:00.041 connection refused resolving 'store.apple.com.akadns.net/AAAA/IN': 195.186.4.162#53
    26-Oct-2009 14:38:08.147 createfetch: store.apple.com.bluewin.ch A
    26-Oct-2009 14:38:08.147 connection refused resolving 'store.apple.com.bluewin.ch/A/IN': 195.186.4.162#53
    26-Oct-2009 14:38:08.157 createfetch: store.apple.com.bluewin.ch AAAA
    26-Oct-2009 14:38:11.153 createfetch: store.apple.com.bluewin.ch A
    26-Oct-2009 14:38:11.163 createfetch: store.apple.com.bluewin.ch AAAA
    26-Oct-2009 14:38:20.055 connection refused resolving 'store.apple.com.bluewin.ch/AAAA/IN': 195.186.1.110#53
    26-Oct-2009 14:38:26.235 connection refused resolving 'store.apple.com.akadns.net/A/IN': 204.2.178.133#53
    26-Oct-2009 14:38:26.970 connection refused resolving 'store.apple.com.bluewin.ch/AAAA/IN': 195.186.4.162#53
    26-Oct-2009 14:38:33.055 success resolving 'store.apple.com.bluewin.ch/A' (in 'bluewin.ch'?) after disabling EDNS
    26-Oct-2009 14:38:33.211 success resolving 'store.apple.com.bluewin.ch/AAAA' (in 'bluewin.ch'?) after reducing the advertised EDNS UDP packet size to 512 octets
    26-Oct-2009 14:39:28.038 createfetch: store.apple.com.akadns.net A
    26-Oct-2009 14:39:28.049 createfetch: store.apple.com.akadns.net AAAA
    26-Oct-2009 14:39:37.056 createfetch: store.apple.com.akadns.net A
    26-Oct-2009 14:39:37.067 createfetch: store.apple.com.akadns.net AAAA
    26-Oct-2009 14:39:37.928 success resolving 'store.apple.com.akadns.net/A' (in 'akadns.NET'?) after reducing the advertised EDNS UDP packet size to 512 octets
    26-Oct-2009 14:39:38.262 createfetch: store.apple.com.akadns.net AAAA
    26-Oct-2009 14:39:39.264 createfetch: store.apple.com.akadns.net AAAA
    26-Oct-2009 14:39:39.275 success resolving 'store.apple.com.akadns.net/AAAA' (in 'akadns.NET'?) after disabling EDNS
    Thank you for anyones advice and help.
    Kind regards
    Thomas Thaler

    In the forum afp548 I did get the following replay:
    Quote by: MacTroll
    Your DNS server is attempting to use DNS-SEC, for validated DNS lookups. This requires a larger UDP packet size, >512 bytes, than your firewall seems to like. It then has to wait to both decide it needs to reduce packet size /and/ to get a negative result on the lookup.
    I would imagine that the DNS resolver on OS X client doesn't bother to do a DNS-SEC lookup, and hence no issue.
    My question is now how do I change the behavior of Snow LEopard Server DNS?
    Thanky ou for your feedback and tips.

  • Since updating my iPad 2 to ios8, it safari has been slow and crashing and some of the apps acting wierd. The password app doesn't work at all so had to find another way of retrieving all my passwords. Very very dissapointing

    Since updating my iPad 2 to ios8, it safari has been slow and crashing and some of the apps acting wierd. The password app doesn't work at all so had to find another way of retrieving all my passwords. Very very dissapointing. It appears from these forums that a lot of people are having the same problems wit this latest update.

    Hi erastyle,
    Actually the Licensing information for the package is missing hence it is not launching any applications. You need to Reserialize the products using APTEE which you can find it on the Machine where you have created the package. If you dont have the access to that Machine then please download and install Creative Cloud Packager and it will download APTEE in the below mentioned location.
    Windows:
    C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\CCP\utilities
    Once downloaded please follow this KB article to use the Tool.
    http://helpx.adobe.com/creative-cloud/packager/provisioning-toolkit-enterprise.html
    Please let us know if it helps.
    Regards,
    Abhijit

  • My macbook pro is running very slow and very very hot

    hi everyone I have a 13 inch mid 2012 MacBook pro,
    it is running very very slow and extremely hot, I downloaded a program called smc fan control and it is reading the internal temperature of my computer as 80 degrees Celsius. I was looking on the forums and saw that I should run an apple hardware test. which I have done and it is coming up with Error 4/MOT/4/40000002: EXHAUST-2003
    what does this mean? is it something to do with my fan?
    also there is a very strange clicking noise when I lift the mac up or if its on its side and sometimes it just randomly freezes,  the computer does not respond and then it restarts.
    what do I do?
    please help!

    " the fan didn't seem congested with dust, at least not enough to cause any malfunction."
    The lint and crap builds up in the heat exchanger radiator. It's the grilled thing at the output of the fan.
    https://www.ifixit.com/Guide/MacBook+Pro+13-Inch+Unibody+Mid+2012+Fan+Replacemen t/10367
    Look at step 6. It's that grilled thing at the top of the fan. If you remove the fan that radiator is probably clogged with lint. Brush it all away and if possible blow out the fan with compressed air. Make sure the fan turns freely and doesn't feel stiff.
    http://s291.photobucket.com/user/spudnuty/media/13%20inch%20MacBook%20Core%202%2 05-2007%20dirty%20rainstrm/MacBookHeatsinkinlet.jpg.html?filters[user]=68196367& filters[recent]=1&sort=1&o=21
    This isn't a MBP radiator but the problem will look like this.

  • TS1398 since i have updated the latest software i am facing problem using wifi which is very very slow most of the time or wont connect at all was that update supposed to be for better or worse

    is apple product going down hill it seems their updates are creating a lot of problem now the wifi connection is really ******* me off it doesnt connect or even if it does its very very slow i used to love using iphone but i think its time to move on to something else they have taken everyone for granted

    Welcome to Apple Discussions, Mark.
    I've never come across your first problem on any of the Apple notebooks I currently own (or have owned in the past). Then again, perhaps I'm not looking close enough.
    Have you compared it with any other 12" PowerBook? If not, perhaps you might be able to try that at a local store with units on display.
    Otherwise you might want to give AppleCare a call. Alternatively, if you have an Apple Store or Apple Authorised Service Provider near you (I don't know where you are located) then you can take it in to be checked.
    As for your second problem (uneven illumination), that has been known to afflict other notebooks. My own 15" PB has had its screen replaced on two occasions because of this. Depending on the severity, you might be able to get it replaced. Mine became so bad that the screen was effectively unusable.
    To be honest, here in the UK, I would actually try for a replacement PowerBook - if the problems were severe enough and also because your PB is still very new. However the consumer laws in your country (wherever that may be) might be very different to mine.

  • Firefox (3.6.10) is very sluggish/slow and hangs up

    All of a sudden Firefox (3.6.10) is very sluggish/slow and hangs up
    I've been using Firefox (very actively) for over a year now and all of a sudden (yesterday) it began to act very sluggishly. On sites I have always visited frequently it hangs up for periods of 15-90 seconds or more, won't scroll down, won't open hot links, slowly opens new tabs ...
    I rebooted my PC (multiple times), powered down my modem and router, ran a Norton disk optimization - essentially making sure it was not an outside factor effecting Firefox's performance. (Note: I am using a cable connection.)
    I then ran a side by side speed comparison with Internet explorer (on my 2nd monitor) going to the same web sites, and IE had no problems/hang-ups.
    FYI I only have a couple of add ins/extensions (Java, Microsoft Framework, Norton, No Squint, & RealPlayer) and none of those are new within the past few weeks at least.
    Any ideas on what could be causing this? How to fix? (As I much prefer Firefox to any Microsoft product.)
    Thanks.

    Yes, FF gets sluggish from time to time. Sorry but it's the fact! FF also cannot render some websites properly (especially v3.6.10). I'm a big fan of all Mozilla software but FF 3.6.10 makes me very disappointed.

  • Very very slow to download gmail in mail APP iPad

    As I wrote in the title, in the last days, from when I updated iOS 7.04, I've some problem with the mail app in iPad 3rd gen.
    With the account gmail: it's very very very slow to download the emails.
    First of all, I reset the iPad, but nothing.
    So, I deleted the gmail account and set up it again... but nothing.
    So, what's the problem: Gmail? Mail APP in iOS 7.04? Both? And how can I resolved it?
    Thank you very much for yours replay. Best regards.
    Fabio Panzeri

    As I wrote in the title, in the last days, from when I updated iOS 7.04, I've some problem with the mail app in iPad 3rd gen.
    With the account gmail: it's very very very slow to download the emails.
    First of all, I reset the iPad, but nothing.
    So, I deleted the gmail account and set up it again... but nothing.
    So, what's the problem: Gmail? Mail APP in iOS 7.04? Both? And how can I resolved it?
    Thank you very much for yours replay. Best regards.
    Fabio Panzeri

  • My BlackBerry Messenger is very very slow. I am not rece...

    My BlackBerry Messenger is very very slow. I am not receiving the messages in a timely fashion.

    Do you mean your iPhone got wet in the rain?  If so, turn it off, put it in a plastic bag with some uncooked rice and let it dry out for several days (minimum).  You might want to change the rice out every day too, especially if you notice it swelling (from moisture coming out of the phone).
    Continue to use it and you risk further harm from continued water damage.  If it does not work after drying out, then you can take it to Apple and pay for an out of warranty exchange (water damage voids the warranty, so you would have to pay the replacement fee).

  • Query takes very very long time to display on the web portal.

    HI Gurus
    My query takes very very long time to display the result on the web.It takes almost 30 mins to show the
    results.However when I execute the same query in analyzer it shows the result in 10 Sec.
    Gurus could u please let me what r the steps required to increase teh performance of it.
    What steps BI Consultant take to resolve it . Is it a portal issue.
    Regards
    loyee

    Hi,
    you can use the following parameters to the start URL: &PROFILING=X&TRACE=X. They could be set in iView of Portal as well as the url of the webtemplate. You will get information about performance of the web application.
    Additional check this notes:
    NW 7.0 BI Web Applications: Performance Problem Analysis
    SAP Note Number: [1048691|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler]
    Performance problems when you start a query in Java Web
    SAP Note Number: [950602|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler]
    Also intresting threads:
    Re: Poor performance Web vs Bex
    Re: BEx vs the Web : Which provides better performance
    Regards
    Andreas

  • Query takes very long time and analyze table hangs

    Hi
    One of the oracle query taking very long time (ie more than a day) and affecting business requirment of getting the report in time.
    I tried to analyze the table with compute statistics option, however it hangs/runs forever on one of the huge table?
    Please let me know how to troubleshoot this issue

    Hi,
    What's your Oracle version?
    You should use DBMS_STATS package not ANALYZE..
    Regards,

  • Sql Query taking very long time to complete

    Hi All,
    DB:oracle 9i R2
    OS:sun solaris 8
    Below is the Sql Query taking very long time to complete
    Could any one help me out regarding this.
    SELECT MAX (md1.ID) ID, md1.request_id, md1.jlpp_transaction_id,
    md1.transaction_version
    FROM transaction_data_arc md1
    WHERE md1.transaction_name = :b2
    AND md1.transaction_type = 'REQUEST'
    AND md1.message_type_code = :b1
    AND NOT EXISTS (
    SELECT NULL
    FROM transaction_data_arc tdar2
    WHERE tdar2.request_id = md1.request_id
    AND tdar2.jlpp_transaction_id != md1.jlpp_transaction_id
    AND tdar2.ID > md1.ID)
    GROUP BY md1.request_id,
    md1.jlpp_transaction_id,
    md1.transaction_version
    Any alternate query to get the same results?
    kindly let me know if any one knows.
    regards,
    kk.
    Edited by: kk001 on Apr 27, 2011 11:23 AM

    Dear
    /* Formatted on 2011/04/27 08:32 (Formatter Plus v4.8.8) */
    SELECT   MAX (md1.ID) ID, md1.request_id, md1.jlpp_transaction_id,
             md1.transaction_version
        FROM transaction_data_arc md1
       WHERE md1.transaction_name = :b2
         AND md1.transaction_type = 'REQUEST'
         AND md1.message_type_code = :b1
         AND NOT EXISTS (
                SELECT NULL
                  FROM transaction_data_arc tdar2
                 WHERE tdar2.request_id = md1.request_id
                   AND tdar2.jlpp_transaction_id != md1.jlpp_transaction_id
                   AND tdar2.ID > md1.ID)
    GROUP BY md1.request_id
            ,md1.jlpp_transaction_id
            ,md1.transaction_versionCould you please post here :
    (a) the available indexes on transaction_data_arc table
    (b) the description of transaction_data_arc table
    (c) and the formatted explain plan you will get after executing the query and issuing:
    select * from table (dbms_xplan.display_cursor);Hope this helps
    Mohamed Houri

  • Reasons why CS6 is running very very slow?

    I have InDesign CS6 and the program is running extremely slow. I have googled and tried all troublshooting options but still cannot even highlight a sentence without it taking 30 seconds. Just going from one document to the next takes a very very long time. Besides for turning preflight off and other tricks is there anything else I can do to fix this problem?

    Are you working documents from an older version of Indesign? I found that even though the document is "converted" Indesign CC has major problems with any older version's files.
    I had to convert all my old files by copying masters and pages to a new, blank indesign cc document. All the speed issues went away.
    Unfortunately, even though you can open the file, I don't feel it's compatible because you can't really work at that speed and still be profitable.
    But hope that helps...

  • G5 Dual - DVD Reader has gone very very slow after Leopard

    After 1 Migrate install and 1 clean install, I notice that reinstalling apps is taking 4/5 times as long as they should it's as if my DVD Reader has gone very very slow. I thought at first it was the migration that had caused FCPS2 to reinstall slow.
    (Sony DVD RW AW-G170A 4 months old) on G5 Dual 2's)
    FCPS2 wanted 19-hrs to install, I waited 6 hrs and then gave up. Luckily or unluckily as the case may be I used the time install Leo on my other Macs.
    In the end I have installed Apps over the Firewire network connected to my other G5 Dual with the stock DVD drive, they are installing fast now.

    Some more info about my setup:
    *Simultaneous Dual band AEBS:*
    Radio Mode: 802.11n only (5 GHz) - 802.11b/g
    Radio Channel Selection: Manual - 161 (5GHz), 6(2.4GHz)
    *Airport Express:*
    Wireless mode: Extend a wireless network
    Allow wireless clients checked under the name of the network (same as for AEBS).
    Both are WPA/WPA2 Personal security. And both the routers were upgraded to 7.4.2 firmware this morning with the hope that it will help.
    *N Devices (both working fine):*
    Apple TV 40GB
    2009 Model Mac Mini upgraded to Snow Leopard - working perfectly.
    *G Devices:*
    Thinkpad running WinXP
    Dell Laptop running WinXP
    Acer Netbook running WinXP
    iPod Touch
    iPhone 3G
    Linksys webcam
    _All of the above are working fine_.
    +2008 model Mac mini -+ upgrade to Snow Leopard shows extremely slow wifi connection that it is unusable. It takes 20min to load apple homepage. When I boot from the clone of my Leopard lying on my external drive, it works perfectly.
    I compared the settings between all the tabs of Network-->Airport-->Advanced and they are identical between Snow Leopard and Leopard mode except that SL doesn't have the "Apple Talk" tab.
    Appreciate any help to debug this.

Maybe you are looking for

  • Writing multiple files using UTL_File package

    Hi, I have an requirement where I need to read the flat file and based on the first 3 character in each line which will be compared with the FlagTable, I have to create and move data into different files. I'm using Oracle 11g in Windows xp platform.

  • 713x BDA Analog Capture defaults to SVideo?

    I am having trouble using the MSI TV@nywhere Plus to stream live video from the composite input to a provider like ustream.tv. Using a free version of webcamxp/webcam7, I am able to view/stream video ONLY when I select '713x BDA Analog Capture', then

  • Use of Third Party while creating Technical System

    When I am creating new technical system it asks to enter the technical system type. I want to when to use Third Party. Can u all throw some light on Third Party.......??

  • CFC Generator doesn't create anything?

    Ok, this is baffeling me! We have Coldfusion Builder installed as a plugin to FlashBuilder. I have the CFC generator extension installed. When I right-click on a table in my RDS view and select "Create CFC" It prompts me for a location. Location rela

  • Filter on navigational attributes

    Hi, We have 0Material characterstic in the query which has Material Type as navigational attribute. The master data for Material Type is already loaded. Will it be possible to restrict the values of Material Type in the query designer? Thank you.