Oracle 11g - Is there a way to speed up hard parsing?

Hi,
I have used TKPROF to examine my slow SQL and it's pointed out it is because of the hard parsing process. Bind variables would not help in my case because the query conditions vary quite arbitrarily depending on what the user selects on the application GUI.
I've managed to break the query into smaller ones using UNION ALL and the parsing takes much shorter. However I'm still wondering if, in general, there could be anything one could do to speed up the hard parsing process, or it is something totally internal in Oracle and there's nothing we can do about it?
A small example of the slow query (execute 0.00s, fetch 0.04s, and parse 66.51s), nr is the primary key.
SELECT n.nr,n.x,n.y,n.z
FROM
data2points n WHERE((n.nr>2595 AND n.nr<2600) OR n.nr=2601 OR (n.nr>2602 AND
  n.nr<2608) OR n.nr=2617 OR n.nr=2623 OR (n.nr>2634 AND n.nr<2637) OR
  (n.nr>6457 AND n.nr<6461) OR n.nr=6462 OR n.nr=6468 OR n.nr=6480 OR
  (n.nr>20677 AND n.nr<20680) OR n.nr=20681 OR n.nr=20683 OR n.nr=26404 OR
  n.nr=26406 OR (n.nr>26408 AND n.nr<26411) OR n.nr=26422 OR (n.nr>26423 AND
  n.nr<26426) OR (n.nr>26426 AND n.nr<26431) OR (n.nr>26432 AND n.nr<26435)
  OR n.nr=26441 OR n.nr=26443 OR (n.nr>26471 AND n.nr<26474) OR (n.nr>26474
  AND n.nr<26478) OR (n.nr>26481 AND n.nr<26486) OR (n.nr>26487 AND
  n.nr<26492) OR n.nr=26498 OR (n.nr>26504 AND n.nr<26507) OR (n.nr>26513 AND
  n.nr<26516) OR (n.nr>26516 AND n.nr<26520) OR n.nr=26522 OR (n.nr>26523 AND
  n.nr<26527) OR (n.nr>26527 AND n.nr<26530) OR (n.nr>26530 AND n.nr<26533)
  OR n.nr=26538 OR n.nr=26562 OR (n.nr>26566 AND n.nr<26570) OR (n.nr>26570
  AND n.nr<26575) OR n.nr=26580 OR n.nr=26603 OR (n.nr>26607 AND n.nr<26610)
  OR (n.nr>26610 AND n.nr<26614) OR (n.nr>26618 AND n.nr<26621) OR n.nr=26624
  OR n.nr=26627 OR (n.nr>26629 AND n.nr<26632) OR n.nr=26634 OR (n.nr>26635
  AND n.nr<26638) OR n.nr=26639 OR n.nr=26642 OR n.nr=26648 OR (n.nr>26650
  AND n.nr<26662) OR n.nr=26663 OR (n.nr>26664 AND n.nr<26668) OR (n.nr>26695
  AND n.nr<26698) OR (n.nr>26699 AND n.nr<26707) OR n.nr=26708 OR n.nr=26710
  OR (n.nr>26714 AND n.nr<26729) OR n.nr=26751 OR (n.nr>26752 AND n.nr<26755)
  OR n.nr=26757 OR (n.nr>26759 AND n.nr<26762) OR (n.nr>26762 AND n.nr<26766)
  OR n.nr=26767 OR (n.nr>26773 AND n.nr<26776) OR n.nr=26798 OR (n.nr>26801
  AND n.nr<26807) OR n.nr=26808 OR (n.nr>26813 AND n.nr<26816) OR n.nr=26817
  OR n.nr=26819 OR (n.nr>26852 AND n.nr<26855) OR (n.nr>26857 AND n.nr<26861)
  OR (n.nr>26862 AND n.nr<26865) OR (n.nr>26869 AND n.nr<26874) OR
  (n.nr>26874 AND n.nr<26881) OR (n.nr>26881 AND n.nr<26884) OR (n.nr>26902
  AND n.nr<26907) OR (n.nr>26907 AND n.nr<26910) OR (n.nr>26910 AND
  n.nr<26918) OR n.nr=26923 OR n.nr=26945 OR (n.nr>26946 AND n.nr<26949) OR
  (n.nr>26951 AND n.nr<26958) OR n.nr=26959 OR n.nr=26964 OR (n.nr>26965 AND
  n.nr<26971) OR n.nr=26972 OR n.nr=26979 OR (n.nr>26998 AND n.nr<27002) OR
  n.nr=27004 OR (n.nr>27005 AND n.nr<27008) OR n.nr=27009 OR (n.nr>27011 AND
  n.nr<27015) OR (n.nr>27019 AND n.nr<27022) OR (n.nr>27022 AND n.nr<27026)
  OR (n.nr>27042 AND n.nr<27050) OR n.nr=27051 OR (n.nr>27052 AND n.nr<27055)
  OR n.nr=27064 OR n.nr=27087 OR (n.nr>27088 AND n.nr<27096) OR (n.nr>27096
  AND n.nr<27099) OR n.nr=27100 OR n.nr=27106 OR n.nr=27130 OR n.nr=27138 OR
  (n.nr>27140 AND n.nr<27145) OR (n.nr>27145 AND n.nr<27150) OR n.nr=27152 OR
  n.nr=27154 OR n.nr=27160 OR n.nr=27182 OR n.nr=27184 OR n.nr=27186 OR
  (n.nr>27188 AND n.nr<27191) OR (n.nr>27191 AND n.nr<27194) OR n.nr=27195 OR
  (n.nr>27200 AND n.nr<27203) OR (n.nr>27204 AND n.nr<27208) OR (n.nr>27223
  AND n.nr<27226) OR (n.nr>27230 AND n.nr<27235) OR n.nr=27236 OR n.nr=27242
  OR (n.nr>27243 AND n.nr<27246) OR (n.nr>27246 AND n.nr<27249) OR n.nr=27250
  OR n.nr=27256 OR n.nr=27258 OR n.nr=27267 OR n.nr=27273 OR n.nr=27276 OR
  (n.nr>27277 AND n.nr<27280) OR (n.nr>27281 AND n.nr<27289) OR (n.nr>27299
  AND n.nr<27303) OR (n.nr>27308 AND n.nr<27312) OR (n.nr>27332 AND
  n.nr<27337) OR n.nr=27339 OR n.nr=27342 OR (n.nr>27344 AND n.nr<27351) OR
  (n.nr>27354 AND n.nr<27357) OR (n.nr>27357 AND n.nr<27362) OR (n.nr>27366
  AND n.nr<27369) OR n.nr=27370 OR (n.nr>27404 AND n.nr<27407) OR (n.nr>27407
  AND n.nr<27410) OR n.nr=27411 OR (n.nr>27412 AND n.nr<27417) OR n.nr=27422
  OR (n.nr>27423 AND n.nr<27427) OR n.nr=27431 OR n.nr=27434 OR n.nr=27437 OR
  n.nr=27446 OR n.nr=27448 OR n.nr=27454 OR n.nr=27457 OR (n.nr>27458 AND
  n.nr<27461) OR (n.nr>27464 AND n.nr<27467) OR (n.nr>27467 AND n.nr<27470)
  OR n.nr=27471 OR n.nr=27473 OR (n.nr>27478 AND n.nr<27481) OR n.nr=27486 OR
  (n.nr>27488 AND n.nr<27491) OR (n.nr>27497 AND n.nr<27501) OR n.nr=27502 OR
  (n.nr>27505 AND n.nr<27511) OR n.nr=27512 OR n.nr=27532 OR n.nr=27534 OR
  n.nr=27560 OR (n.nr>27565 AND n.nr<27571) OR (n.nr>27574 AND n.nr<27577) OR
  n.nr=27578 OR n.nr=27581 OR n.nr=27585 OR (n.nr>27600 AND n.nr<27604) OR
  n.nr=27611 OR (n.nr>27613 AND n.nr<27625) OR (n.nr>27631 AND n.nr<27636) OR
  n.nr=27639 OR n.nr=27641 OR n.nr=27655 OR (n.nr>27656 AND n.nr<27659) OR
  (n.nr>27659 AND n.nr<27663) OR (n.nr>27663 AND n.nr<27667) OR n.nr=27668 OR
  n.nr=27674 OR n.nr=27676 OR n.nr=27678 OR n.nr=27700 OR n.nr=27706 OR
  (n.nr>27707 AND n.nr<27712) OR (n.nr>27716 AND n.nr<27719) OR (n.nr>27719
  AND n.nr<27726) OR n.nr=27728 OR n.nr=27730 OR (n.nr>27755 AND n.nr<27758)
  OR n.nr=27761 OR (n.nr>27762 AND n.nr<27766) OR n.nr=27767 OR n.nr=27773 OR
  (n.nr>27774 AND n.nr<27779) OR n.nr=27782 OR (n.nr>27796 AND n.nr<27799) OR
  (n.nr>27801 AND n.nr<27808) OR n.nr=27809 OR n.nr=27812 OR (n.nr>27813 AND
  n.nr<27817) OR (n.nr>27817 AND n.nr<27823) OR n.nr=27829 OR n.nr=27847 OR
  (n.nr>27848 AND n.nr<27852) OR n.nr=27853 OR n.nr=27855 OR (n.nr>27856 AND
  n.nr<27859) OR n.nr=27860 OR n.nr=27862 OR n.nr=27864 OR (n.nr>27869 AND
  n.nr<27875) OR n.nr=27876 OR n.nr=27879 OR (n.nr>27882 AND n.nr<27885) OR
  (n.nr>27903 AND n.nr<27906) OR n.nr=27907 OR n.nr=27911 OR (n.nr>27912 AND
  n.nr<27915) OR (n.nr>27961 AND n.nr<27964) OR n.nr=27967 OR (n.nr>27968 AND
  n.nr<27974) OR (n.nr>27978 AND n.nr<27984) OR (n.nr>28016 AND n.nr<28022)
  OR (n.nr>28022 AND n.nr<28027) OR n.nr=28033 OR (n.nr>28056 AND n.nr<28059)
  OR (n.nr>28059 AND n.nr<28065) OR (n.nr>28065 AND n.nr<28068) OR n.nr=28077
  OR (n.nr>28083 AND n.nr<28086) OR (n.nr>28090 AND n.nr<28096) OR
  (n.nr>28097 AND n.nr<28103) OR n.nr=28112 OR n.nr=28114 OR (n.nr>28116 AND
  n.nr<28120) OR (n.nr>28120 AND n.nr<28123) OR (n.nr>28153 AND n.nr<28159)
  OR n.nr=28161 OR n.nr=28163 OR (n.nr>28164 AND n.nr<28167) OR (n.nr>28171
  AND n.nr<28174) OR (n.nr>28194 AND n.nr<28197) OR (n.nr>28200 AND
  n.nr<28206) OR n.nr=28207 OR (n.nr>28212 AND n.nr<28215) OR n.nr=28217 OR
  n.nr=28237 OR n.nr=28244 OR (n.nr>28245 AND n.nr<28248) OR (n.nr>28253 AND
  n.nr<28262) OR n.nr=28263 OR n.nr=28265 OR n.nr=28268 OR (n.nr>28269 AND
  n.nr<28273) OR n.nr=28291 OR n.nr=28293 OR (n.nr>28297 AND n.nr<28301) OR
  (n.nr>28301 AND n.nr<28305) OR (n.nr>28308 AND n.nr<28311) OR n.nr=28312 OR
  n.nr=28314 OR n.nr=28316 OR n.nr=28324 OR n.nr=28335 OR (n.nr>28345 AND
  n.nr<28349) OR (n.nr>28350 AND n.nr<28353) OR (n.nr>28354 AND n.nr<28360)
  OR n.nr=28361 OR n.nr=28366 OR (n.nr>28376 AND n.nr<28379) OR (n.nr>28401
  AND n.nr<28405) OR (n.nr>28405 AND n.nr<28416) OR (n.nr>28416 AND
  n.nr<28419) OR (n.nr>28422 AND n.nr<28425) OR (n.nr>28444 AND n.nr<28449)
  OR (n.nr>28449 AND n.nr<28452) OR (n.nr>28453 AND n.nr<28460) OR n.nr=28488
  OR (n.nr>28491 AND n.nr<28494) OR n.nr=28495 OR (n.nr>28496 AND n.nr<28504)
  OR (n.nr>28505 AND n.nr<28510) OR (n.nr>28510 AND n.nr<28517) OR n.nr=28531
  OR (n.nr>28535 AND n.nr<28539) OR (n.nr>28539 AND n.nr<28542) OR
  (n.nr>28547 AND n.nr<28551) OR n.nr=28552 OR n.nr=28573 OR n.nr=28576 OR
  (n.nr>28578 AND n.nr<28582) OR (n.nr>28582 AND n.nr<28587) OR (n.nr>28599
  AND n.nr<28607) OR (n.nr>28607 AND n.nr<28610) OR n.nr=28611 OR (n.nr>28613
  AND n.nr<28617) OR (n.nr>28620 AND n.nr<28624) OR (n.nr>28625 AND
  n.nr<28628) OR (n.nr>28634 AND n.nr<28639) OR n.nr=28641 OR (n.nr>28642 AND
  n.nr<28651) OR n.nr=28657 OR n.nr=28667 OR (n.nr>28668 AND n.nr<28671) OR
  (n.nr>28671 AND n.nr<28674) OR (n.nr>28680 AND n.nr<28691) OR (n.nr>28691
  AND n.nr<28694) OR n.nr=28695 OR (n.nr>28717 AND n.nr<28721) OR (n.nr>28721
  AND n.nr<28724) OR (n.nr>28724 AND n.nr<28729) OR (n.nr>28729 AND
  n.nr<28733) OR n.nr=28735 OR (n.nr>28736 AND n.nr<28747) OR n.nr=28748 OR
  n.nr=28750 OR (n.nr>28753 AND n.nr<28757) OR n.nr=28758 OR n.nr=28763 OR
  n.nr=28765 OR n.nr=28769 OR (n.nr>28771 AND n.nr<28774) OR n.nr=28775 OR
  (n.nr>28776 AND n.nr<28779) OR n.nr=28780 OR n.nr=28783 OR (n.nr>28784 AND
  n.nr<28794) OR n.nr=28808 OR (n.nr>28810 AND n.nr<28813) OR n.nr=28814 OR
  (n.nr>28815 AND n.nr<28821) OR (n.nr>28826 AND n.nr<28834) OR (n.nr>28846
  AND n.nr<28849) OR n.nr=28855 OR n.nr=28857 OR n.nr=28859 OR (n.nr>28864
  AND n.nr<28870) OR (n.nr>28871 AND n.nr<28876) OR (n.nr>28876 AND
  n.nr<28879) OR n.nr=28880 OR n.nr=28884 OR n.nr=28888 OR (n.nr>28889 AND
  n.nr<28892) OR (n.nr>28893 AND n.nr<28896) OR (n.nr>28896 AND n.nr<28901)
  OR (n.nr>28906 AND n.nr<28909) OR n.nr=28931 OR (n.nr>28937 AND n.nr<28943)
  OR n.nr=28948 OR n.nr=28953 OR (n.nr>28958 AND n.nr<28961) OR n.nr=28967 OR
  n.nr=28970 OR (n.nr>28972 AND n.nr<28975) OR (n.nr>28975 AND n.nr<28980) OR
  (n.nr>28980 AND n.nr<28984) OR n.nr=28991 OR n.nr=28993 OR n.nr=28996 OR
  (n.nr>28999 AND n.nr<29002) OR n.nr=29011 OR (n.nr>29012 AND n.nr<29018) OR
  (n.nr>29027 AND n.nr<29036) OR n.nr=29038 OR n.nr=29041 OR n.nr=29044 OR
  (n.nr>29048 AND n.nr<29051) OR n.nr=29053 OR (n.nr>29055 AND n.nr<29060) OR
  n.nr=29062 OR (n.nr>29063 AND n.nr<29069) OR (n.nr>29071 AND n.nr<29075) OR
  n.nr=29077 OR n.nr=29079 OR (n.nr>29097 AND n.nr<29100) OR (n.nr>29104 AND
  n.nr<29109) OR (n.nr>29109 AND n.nr<29112) OR (n.nr>29115 AND n.nr<29118)
  OR (n.nr>29118 AND n.nr<29122) OR n.nr=29135 OR (n.nr>29136 AND n.nr<29140)
  OR (n.nr>29143 AND n.nr<29148) OR n.nr=29149 OR n.nr=29155 OR n.nr=29157 OR
  (n.nr>29177 AND n.nr<29181) OR (n.nr>29182 AND n.nr<29191) OR n.nr=29196 OR
  n.nr=29199 OR (n.nr>29219 AND n.nr<29222) OR (n.nr>29224 AND n.nr<29229) OR
  (n.nr>29229 AND n.nr<29233) OR (n.nr>29236 AND n.nr<29239) OR (n.nr>29239
  AND n.nr<29244) OR (n.nr>29244 AND n.nr<29249) OR n.nr=29257 OR n.nr=29260
  OR (n.nr>29261 AND n.nr<29266) OR n.nr=29267 OR n.nr=29269 OR (n.nr>29270
  AND n.nr<29274) OR (n.nr>29276 AND n.nr<29279) OR n.nr=29280 OR n.nr=29282
  OR n.nr=29286 OR n.nr=29288 OR n.nr=29290 OR n.nr=29296 OR (n.nr>29297 AND
  n.nr<29300) OR (n.nr>29300 AND n.nr<29304) OR (n.nr>29305 AND n.nr<29310)
  OR (n.nr>29310 AND n.nr<29314) OR (n.nr>29319 AND n.nr<29324) OR
  (n.nr>29328 AND n.nr<29332) OR (n.nr>29335 AND n.nr<29338) OR (n.nr>29338
  AND n.nr<29343) OR (n.nr>29347 AND n.nr<29350) OR n.nr=29351 OR n.nr=29354
  OR (n.nr>29357 AND n.nr<29367) OR (n.nr>29367 AND n.nr<29371) OR
  (n.nr>29372 AND n.nr<29376) OR (n.nr>29377 AND n.nr<29385) OR (n.nr>29386
  AND n.nr<29389) OR (n.nr>29393 AND n.nr<29400) OR (n.nr>29405 AND
  n.nr<29408) OR (n.nr>29408 AND n.nr<29412) OR n.nr=29413 OR (n.nr>29414 AND
  n.nr<29417) OR n.nr=29423 OR (n.nr>29424 AND n.nr<29429) OR (n.nr>29429 AND
  n.nr<29433) OR (n.nr>29433 AND n.nr<29439) OR (n.nr>29439 AND n.nr<29443)
  OR n.nr=29444 OR (n.nr>29446 AND n.nr<29455) OR n.nr=29456 OR (n.nr>29457
  AND n.nr<29461) OR n.nr=29463 OR (n.nr>29464 AND n.nr<29467) OR (n.nr>29467
  AND n.nr<29473) OR n.nr=29474 OR n.nr=29476 OR n.nr=29478 OR (n.nr>29479
  AND n.nr<29486) OR (n.nr>29486 AND n.nr<29503) OR (n.nr>29509 AND
  n.nr<29535) OR (n.nr>29535 AND n.nr<29538) OR (n.nr>29538 AND n.nr<29541)
  OR (n.nr>29542 AND n.nr<29548) OR n.nr=29549 OR n.nr=29551 OR (n.nr>29552
  AND n.nr<29555) OR n.nr=29556 OR n.nr=29558 OR (n.nr>29560 AND n.nr<29564)
  OR (n.nr>29564 AND n.nr<29574) OR (n.nr>29574 AND n.nr<29577) OR n.nr=29578
  OR (n.nr>29579 AND n.nr<29582) OR (n.nr>29585 AND n.nr<29589) OR n.nr=29591
  OR n.nr=29593 OR n.nr=29595 OR n.nr=29597 OR n.nr=29605 OR n.nr=29607 OR
  (n.nr>29608 AND n.nr<29612) OR (n.nr>29615 AND n.nr<29623) OR n.nr=29627 OR
  (n.nr>29628 AND n.nr<29633) OR n.nr=29634 OR n.nr=29637 OR n.nr=29643 OR
  n.nr=29653 OR (n.nr>29659 AND n.nr<29664) OR (n.nr>29664 AND n.nr<29670) OR
  (n.nr>29671 AND n.nr<29677) OR n.nr=29679 OR (n.nr>29682 AND n.nr<29686) OR
  (n.nr>29686 AND n.nr<29689) OR (n.nr>29691 AND n.nr<29694) OR (n.nr>29697
  AND n.nr<29702) OR (n.nr>29702 AND n.nr<29705) OR (n.nr>29709 AND
  n.nr<29713) OR n.nr=29714 OR n.nr=29716 OR (n.nr>29736 AND n.nr<29741) OR
  n.nr=29742)Edited by: 808239 on Apr 19, 2011 7:01 AM
Edited by: 808239 on Apr 19, 2011 7:02 AM

To add on to what Girish Sharma posted, you can may need more than one temp table and a bit more complex SQL.
You can improve your parsing time ( 66 seconds is really a lot) by restructuring your statement and using temp tables. I assume that you cannot use PL/SQL - if you can you might be able to get more elegant solution with PL/SQL collections.
Store all literal values in where clause in temp tables (by temp table I mean a table that is deleted before and after the query– the specific physical implementation is up to you). Use bind variables/bulk load to load the data in the temp tables.
Select * from temp_1
val
2601
2617
2623
6462
Select * from temp_2
val1     val2
2595 2600
2602 2608
2634 2637
Now the query would look like this:
SELECT n.nr,n.x,n.y,n.z
FROM
data2points n WHERE
n.nr in (select val from temp_1)
or
exists
(select * from temp_2 where n.nr > val1 and where n.nr < val1)

Similar Messages

  • Is there a way to speed up charts on Forms?

    Hi,
    I have a chart incorporated on a form using the chart wizard.
    The problem is that the first chart generated takes forever
    although subsequent charts are seem much faster. I know that
    this is related to Oracle Graphics Batch but is there a way to
    speed this up on the first chart? Maybe there is a way to start
    Oracle Graphics Batch in the backround on application start-up?
    I'm out of ideas on this one.
    Thanks in advance to anyone who can help.
    Jeff

    Hi,
    I have a chart incorporated on a form using the chart wizard.
    The problem is that the first chart generated takes forever
    although subsequent charts are seem much faster. I know that
    this is related to Oracle Graphics Batch but is there a way to
    speed this up on the first chart? Maybe there is a way to start
    Oracle Graphics Batch in the backround on application start-up?
    I'm out of ideas on this one.
    Thanks in advance to anyone who can help.
    Jeff

  • Is there a way to speed up video clips in imovie on ipad

    is there a way to speed up video clips in imovie on ipad? I'm currently editing some videos and would like to speed up a few clips to make the video shorter. Is this possible on ipad or just mac pcs only?

    actually, no 'add-ons' possible or avail for iMovie/MacOS/iOS…

  • Downloading an app on to my iPad mini takes 15 minutes or more. Is there a way to speed up the process?

    Downloading an app on to my iPad mini takes 15 minutes or more just for one app is there a way to speed up the process?

    Maybe your internet is very slow.
    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • Is there a way to speed up data deletion ?

    i am purging data from  MEREP_10700 and MEREP_108 using MEREP_RDB_T01_RESET tool in the middleware
    Note that this is running **very** slowly at the moment (~100,000 records per hour, will take days to complete).  Is there a way to speed it up?
    Thanks & Regards
    Prashant Gupta

    There is no other easy way to achieve this (unless you write your own program to do so). But if you are looking for cleaning the entire table, you can use the  FM "DD_DATABASE_UTILITY" to delete the entire table..
    Regards
    Ajith

  • Is there a way to speed up importing of songs?

    When I am importing CD's, it seems extremely slow at times. The display shows 1.0X, and I am guessing that means if the CD is an hour, it is going to take an hour to import? Is there a way to speed this up?
    When I posted this question before, the only reply I got was some guy asking about my processor speed. That is not relevant as I do not have ability to improve on that at this time. My question is to ask if there is a way to speed up importing by changing a setting.
    I am trying to understand why some CD's go lightening fast, and some take over two hours to import one CD.....same machine.
    Any help you can offer is appreciated!!
    Suzanne in Atlanta

    Not much you can do, but here's some of what you have control over:
    Bitrate: Higher bitrates take longer to rip.
    *Disk Cleanliness*: Dirty, smudged, scratched CDs take longer to rip.
    *Error Correction*: If activated, the iTunes error correction will add ripping time. You may not need it, and I think by default it is not activated. Check to see at: Edit/ Preferences/ Advanced/ Importing/ Error Correction.
    *CD/DVD ROM vs. Read-Write*: I've noticed that my DVD ROM drive rips much faster than my DVD RW. If you have multiple drives, try a different one.
    In the end though, the limitation will be your hardware (CPU, CD/DVD drive, perhaps RAM)

  • Is there a way to speed up Firefox?

    Is there a way to speed up Firefox (I have the Fasterfox plug in)?
    It takes 85 sec. to open (vs. 13 for Camino) and 18 to open a new page (v. 4 for the same page with Camino).
    There are features and browser restrictions which favor Firefox; however, the wait offsets those benefits.
    G4 Dual 450 Mac OS X (10.3.9) 1 GB

    Hi, Jerry. On my Powerbook G4, with a 1GHz processor and half as much RAM as you have, FireFox 2.0.0.2 opens (to a blank page, which is what I prefer) in 5 seconds — slower than Safari, but nothing like what you're seeing. It loads most pages a little faster than Safari. I've never used FasterFox, and in light of what you report, I certainly won't try it. Maybe you should get rid of it too.
    What version of FireFox are you running? Have you emptied its cache lately? Is it possible that whatever you're using for a home page is what's wasting all that time when you start FireFox? You might try choosing another home page, or opening FF to a blank page as I do. You can't blame the app for being slow to load a page that's hosted on a slow server, if that's what's happening.

  • Is there a way to speed up the response time from the dock

    Is there a way to speed up the response time for external hard drives from the dock? I have three external HDs but when I click on the alias in the dock there is always hesitation before it opens. I'm leaning towards the fact that it is just a result of the fact that the speed of the Mac is what it is. But, maybe there is something I can do to speed it up. The drives are plugged via usb directly to the Mac and they have there own power source. The curious thing is that they once were plugged into a large separately powered USB hub and I don't recall a lag like I have now. Any thoughts? Thanks...
    Message was edited by: gfann18

    Have you got the drives set up to spin down when not in use?
    Have a look at the Energy Saver settings in System Preference on the Mac.
    Make sure the "Put the Hard Discs to sleep when possible" box is not ticked.

  • Is there a way to speed up Safari on Ipod Touch 4G?

    My Safari has gone much slower and I got the Ipod 7 months ago. Is there a way to speed it up?

    Try clearing Safari's History, Cookies and Cache, by heading to Settings -> Safari and tapping the delete button for each of these items.
    Then do a hard reset.  To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    If you are still having issues, try restoring the iPod from a previous backup and then to factory defaults after that if necessary.
    Is it slow no matter what type of Wi-Fi network you are connected to?
    B-rock

  • Is there a way to speed up a video that i accidentally captured in "SLO-MO"?

    I was at a concert and was videoing clips.
    One of the clips was accidentally recorded in the "SLO-MO" mode.
    Is there a way to speed this clip to normal speed?
    Regards,
    Jim P.

    I''m finally seeing what people are saying
    I've heard quickly gesturing for a space is a solution. Mission control is also fast with switching.
    Although I haven't really timed myself doing that.
    You can send feedback to apple saying you would like it to be faster http://www.apple.com/feedback/macosx.html (make sure you state you're on Mountain Lion)

  • Is there a way to speed up the pace of the video (watch in fast-forward) I am watching?

    I am watching a class lesson that is 3 hours long and my teacher talks extremely slow. Is there a way to speed up the pace of my video? I know on some video players you can watch a video in 1.5, 2.0, 2.5 etc. levels of fast forward.

    Have you got the drives set up to spin down when not in use?
    Have a look at the Energy Saver settings in System Preference on the Mac.
    Make sure the "Put the Hard Discs to sleep when possible" box is not ticked.

  • Is there a way to speed up or slow down video clips in iMovie using the iPad?

    Is there a way to speed up or slow down video clips using iMovie on the iPad? I do not have an Apple computer...just the iPad.

    No.
    There are other apps that can to time shifting, or speed effects.
    iMovie cannot.

  • Is ther a way to speed up a Mac? Mine has gotten slower and slower over time.  When memory comes close to full would that have an effect on performance? Is there a way to determine unused programs/software to remove and free space?

    Is there a way to speed up a Mac (similar to de-fragging on a PC)? Mine has gotten slower and slower over time. 
    When memory/disc comes close to full would that have an effect on performance? How should I determine what programs/software to remove and free space?

    Things You Can Do To Resolve Slow Downs
    If your computer seems to be running slower here are some things you can do:
    Start with visits to:     OS X Maintenance - MacAttorney;
                                      The X Lab: The X-FAQs;
                                      The Safe Mac » Mac Performance Guide;
                                      The Safe Mac » The myth of the dirty Mac;
                                      Mac maintenance Quick Assist.
    Boot into Safe Mode then repair your hard drive and permissions:
    Repair the Hard Drive and Permissions Pre-Lion
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    Repair the Hard Drive - Lion/Mountain Lion/Mavericks
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the Utilites Menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD disk icon and click on the arrow button below.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    Restart your computer normally and see if this has helped any. Next do some maintenance:
    For situations Disk Utility cannot handle the best third-party utility is Disk Warrior;  DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible.
    Note: Alsoft ships DW on a bootable DVD that will startup Macs running Snow Leopard or earlier. It cannot start Macs that came with Lion or later pre-installed, however, DW will work on those models.
    Suggestions for OS X Maintenance
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep.  Dependence upon third-party utilities to run the periodic maintenance scripts was significantly reduced since Tiger.  These utilities have limited or no functionality with Snow Leopard or later and should not be installed.
    OS X automatically defragments files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive.
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection I recommend using VirusBarrier Express 1.1.6 or Dr.Web Light both from the App Store. They're both free, and since they're from the App Store, they won't destabilize the system. (Thank you to Thomas Reed for these recommendations.)
    Troubleshooting Applications
    I recommend downloading a utility such as TinkerTool System, OnyX, Mavericks Cache Cleaner, or Cocktail that you can use for removing old log files and archives, clearing caches, etc. Corrupted cache, log, or temporary files can cause application or OS X crashes as well as kernel panics.
    If you have Snow Leopard or Leopard, then for similar repairs install the freeware utility Applejack.  If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the command line.  Note that AppleJack 1.5 is required for Leopard. AppleJack 1.6 is compatible with Snow Leopard. Applejack does not work with Lion and later.
    Basic Backup
    For some people Time Machine will be more than adequate. Time Machine is part of OS X. There are two components:
    1. A Time Machine preferences panel as part of System Preferences;
    2. A Time Machine application located in the Applications folder. It is
        used to manage backups and to restore backups. Time Machine
        requires a backup drive that is at least twice the capacity of the
        drive being backed up.
    Alternatively, get an external drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
      1. Carbon Copy Cloner
      2. Get Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files. For help with using Time Machine visit Pondini's Time Machine FAQ for help with all things Time Machine.
    Referenced software can be found at MacUpdate.
    Additional Hints
    Be sure you have an adequate amount of RAM installed for the number of applications you run concurrently. Be sure you leave a minimum of 10% of the hard drive's capacity as free space.
    Add more RAM. If your computer has less than 2 GBs of RAM and you are using OS X Leopard or later, then you can do with more RAM. Snow Leopard and Lion work much better with 4 GBs of RAM than their system minimums. The more concurrent applications you tend to use the more RAM you should have.
    Always maintain at least 15 GBs or 10% of your hard drive's capacity as free space, whichever is greater. OS X is frequently accessing your hard drive, so providing adequate free space will keep things from slowing down.
    Check for applications that may be hogging the CPU:
    Pre-Mavericks
    Open Activity Monitor in the Utilities folder.  Select All Processes from the Processes dropdown menu.  Click twice on the CPU% column header to display in descending order.  If you find a process using a large amount of CPU time (>=70,) then select the process and click on the Quit icon in the toolbar.  Click on the Force Quit button to kill the process.  See if that helps.  Be sure to note the name of the runaway process so you can track down the cause of the problem.
    Mavericks and later
    Open Activity Monitor in the Utilities folder.  Select All Processes from the View menu.  Click on the CPU tab in the toolbar. Click twice on the CPU% column header to display in descending order.  If you find a process using a large amount of CPU time (>=70,) then select the process and click on the Quit icon in the toolbar.  Click on the Force Quit button to kill the process.  See if that helps.  Be sure to note the name of the runaway process so you can track down the cause of the problem.
    Often this problem occurs because of a corrupted cache or preferences file or an attempt to write to a corrupted log file.

  • HT1414 I am restoring a new iPad, using iCloud, with all my old iPads info, it is taking forever, all day and I'm still only an 8th of the way there.  Is there any way to speed up all the game down loads or is there a way to re-organize my game icons manu

    I am restoring a new iPad, iCloud, with my old iPads info, it has been downloading all day and it's only 2pages in on my game apps out of about 10 pages.  Is there a way to speed this process, or is there a way to move my icons so that the games I want are at the beginning of the line as opposed to at the end because their name is alphabetically last

    There is no way that I know of to speed up the download. Restoring from an iCloud backup will take as long as it takes in order to download all of your iPads contents. You commited to iCloud and now you have to wait until everything finishes downloading.
    This relies on your WiFi connection speed, so unless you can speed that up, you just have to wait.

  • Is there any way to speed up "repair disk" over internet recovery on OSX

    After receiving a grey screen on startup, I finally have been able to boot into internet recovery on my 13" macbook pro. I'm running "Repair Disk" from the Disk Utility on my "Macintosh HD" drive. The estimated time is listed at "1 day, 23 hours", and has been stuck there for about 8 hours. It was 2 days and then did move to 1 day, 23 hours, but has not moved since.
    Is there any way to speed up this disk repair? Would connecting over ethernet rather than WiFi help? Should I go somewhere with a faster internet connection than my home (1.1Mbps Down / 1.6 Up)? It can't possibly take over 2 days to repair the disk under normal conditions, right?

    A hard wire connection should be faster than wifi.  If you have been running Disk Utility Repair for 8 hrs, try is again and if after an hour you still see the same result, I suspect that the HDD is faulty.
    I would try an external boot HDD and see if the MBP can boot from that.  If it can, than that indicates that your internal HDD has failed and must be replaced.  Transfer as much data as you can.
    Ciao.

Maybe you are looking for

  • How to access a web service from a XLet

    Hello, I am new in software development to ITV and I dint find too many usefull information teaching how to access a web service from a XLet running in a STB. Are there anybody who can give me some help, maybe sample or tutorial? Gratefull David

  • IMac only starts into Console mode

    Hi - I tried to follow the instructions in this link ( http://homepage.mac.com/james.clay/iblog/B894479528/C2040813928/E20070505184135/ index.html ), but since version -001 ("AirPort Base Station Update 2007-001")wasn't available anymore on Apple's W

  • No FT between US Mac and WiFi iPhone in Italy

    Can't do FaceTime chat between my Mac in USA on Airport Extreme WiFi and ani iPhone (4s) on hotel or cafe WiFi in Italy. The Italy end attempts to contact me via my Apple ID (I'm correctly set up, have tested with a local user), but no resullt  I've

  • BW ignores selection criteria in a Infopackage after transport

    Hi all, After transporting Infopackages with selection criteria the target system ignores them. If I create further Infopackages on the target system everthing is fine. It seems as if the criteria were not transported but they are displayed. I replac

  • Photo stream problem

    HI I've just had an iPhone 5 and everything has transferred from my iPad all the Apps ,reminders ,contacts etc. apart from all my photographs.Everything is turned on on both devices and backed up to the icloud.Unfortunately I can't get the icloud con