Updating 3GS from 3.1.2 to 6.1.3 taking way too long. Is there a better and faster way?

How long does it take to update an original 3GS to 6.1.3? I followed the iTune instructions and it has been updating for hours already. Is there a better and faster way to do this?

SO if I want to represent the London Underground
network as a Graph how would I be able to do it?By writing classes of your own or using some one else's. I don't think that the collections framework has out-of-the-box support for graphs.... So try google first.
The implementation details depend on the API you are going to use, of course...
from A to B 5 min
from B to C 4 min
from A to C 9 min
this information is redundant, the third info should be omitted. <nit-picking>
No it's not - What if there's a special, more direct route from A to C? Also, getting from A to B to C will usually take more time than the time from A to B plus the time from B to C. The trains have to stop at B, don't they?
</nit-picking>
Maybe this approach is more complex, but it solves the problem Have I understood correctly - isn't what you describe just another way to implement a graph?

Similar Messages

  • Running Windows XP service pack 3. Updated Firefox from 8.0 to 9.0. Now when Firefox opens "The URL is not valid and cannot be loaded" is displayed in a window and no home page appears. What's wrong?

    Running Windows XP service pack 3. Updated Firefox from 8.0 to 9.0. Now when Firefox opens "The URL is not valid and cannot be loaded" is displayed in a window and no home page appears. What's wrong?

    That issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I've just updated my Macbook to Mavericks and all my .avi files storaged in a Lacie Rugged aren't opening but converting one by one I opened; are they not compatible?. Is there a way to converting all of them simultaneously and faster? Thanks a lot guys

    I've just updated my Macbook to Mavericks and all my .avi files storaged in a Lacie Rugged aren't opening but converting one by one I opened; are they not compatible?. Is there a way to converting all of them simultaneously and faster? Thanks a lot guys

    Have you tried using VLC media player it seems to play almost any codec without converting.
    https://www.macupdate.com/app/mac/5758/vlc-media-player

  • Step by step what's an easy and fast way to transfer photos and videos from my iphone to my imac?

    step by step what's an easy and fast way to transfer photos and videos from my iphone to my imac?

    Same as you would from any digital camera.  Open iphoto, connect iphone, import photos
    iOS: Importing personal photos and videos from iOS devices to your computer

  • How do I remove Completed items from the Completed Reminders List? The list is growing too long.

    How do I delete Completed items from the Completed Reminders List? The list is growing too long.

    The little box, next to the reminder on the reminder page.  Touch it, and it puts a check mark there, i suppose to mean completed.  Leave the app.  When you go back, the items are gone.  ( at least on mine...)

  • HT5934 My phone downloaded the update but it won't install it, it keep saying I'm no longer connected to the Internet and I am I'm under wifi at home what should I do?

    My phone downloaded the update but it won't install it, it keep saying I'm no longer connected to the Internet and I am I'm under wifi at home what should I do?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (100170)

  • HT4623 how to update iphone4 from 5.1.1 to 7.0.4 i try itunes wrote that there was  a problem downloading software

    i try to update my iphone by the air and then its become to recovery mode i use itunes to update its written there was a problem downloading software
    please help me

    You cannot downgrade but as modular suggests you may want to restore the phone from your backup. If that still doesn't work then restore as a new phone.

  • Select/Update taking far too long to run, how can I get it to go faster?

    Hello all,
    I am trying to do an update/select on a table that returns 16 million records. So far most of the time it takes forever to complete or never finishes. Initially I was trying to do it as one big select, but when that didnt work, i broke it down to creating a table with the "base" 16 million records, and am trying to fetch additional values for each of those records from the table i grabbed those records from. Doing a select got me no where, so I am trying to do an update of the tables with the values i find using a cursor. Even this does not seem to be working. Is there a way to do it with a batch/bulk update that would be faster? The code is as follows: (oracle 10g):
    DECLARE 
       CURSOR wr63993_cur IS
          SELECT   provider_id,
                   din_gp_pin,
                   orig_prescription_nbr,
                   adjudication_date
            FROM   WR63993_BASE
           WHERE   adjudication_date BETWEEN to_date('2009/07/01', 'yyyy/mm/dd') AND to_date('2009/07/31', 'yyyy/mm/dd');
       CURSOR date_cur (v_provider_id WR63993_BASE.provider_id%TYPE,
                        v_din_gp_pin WR63993_BASE.din_gp_pin%TYPE,
                        v_orig_prescription_nbr WR63993_BASE.orig_prescription_nbr%TYPE,
                        v_adjudication_date WR63993_BASE.adjudication_date%TYPE)
          IS
          SELECT   MIN(adjudication_date) min_date
            FROM   claim_history@posi
           WHERE   provider_id = v_provider_id
             AND   din_gp_pin = v_din_gp_pin
             AND   orig_prescription_nbr = v_orig_prescription_nbr
             AND   adjudication_date >= ADD_MONTHS(v_adjudication_date, - 24);
    BEGIN
       FOR wr63993_rec IN wr63993_cur LOOP
          FOR date_rec in date_cur(wr63993_rec.provider_id, wr63993_rec.din_gp_pin, wr63993_rec.orig_prescription_nbr, wr63993_rec.adjudication_date) LOOP
             UPDATE   WR63993_BASE
                SET   min_date = date_rec.min_date
              WHERE   provider_id = wr63993_rec.provider_id
                AND   din_gp_pin = wr63993_rec.din_gp_pin
                AND   orig_prescription_nbr = wr63993_rec.orig_prescription_nbr;
          END LOOP;
      END LOOP;
      COMMIT;
    END;
    /

    aaah. healthcare insurance :)
    The performance of these, as i'm sure you know, is tricky.
    Consider the following which could help you eliminate your cursors. Here, B.adjudication_date will be the same as "MIN(adjudication_date) min_date" from your query.
    I understand that this is typically outside of your control, but if it is at all possible, move all of the data to the same database so you don't need those distributed queries. Separate schemas is ok.
    Select
      stuff
    From Wr63993_Base A
    Inner Join Claim_History@Posi B On A.Provider_Id=B.Provider_Id And A.Din_Gp_Pin=B.Din_Gp_Pin And A.Orig_Nbr=B.Orig_Nbr
    --the next table will allow you to get *earlier* instances of the claim where the adjudication date was in past 24 months
    --we only want to see the row where there ARE NO EARLIER instances. So this LOJ will return null for that row.
    Left Outer Join Claim_History@Posi C On A.Provider_Id=C.Provider_Id And A.Din_Gp_Pin=C.Din_Gp_Pin And A.Orig_Nbr=C.Orig_Nbr
    and c.adjudication_date >= ADD_MONTHS(a.adjudication_date, - 24) and c.adjudication_date<b.adjudication_date
    Where  
      A.Adjudication_Date Between To_Date('2009/07/01', 'yyyy/mm/dd')
      And To_Date('2009/07/31', 'yyyy/mm/dd')
      And B.Adjudication_Date >= Add_Months(A.Adjudication_Date, - 24)
      and c.adjudication_date is null --only get the row where B is the earliest qualifying adjudication date.
    Dave

  • HT3406 i bought a i-phone 4s from cex i reset the phone to factory setting ow i am stuck on activion lock and no way to contact preveious owner and cex wont take it back as i dont have the receipt anymore how can i fix this or get in contact with the prev

    i wud be gratefull for any help
    like i say i bought it from cex working then as soon as i rset it to factory setting it ask for the person email and password but cant return it as i havent got the recipet anymore

    You can't fix this, called Activation Lock, & currently there is no way around it. With no way to contact the previous owner, & no way to get your money back, you own a useless paperweight.
    Apple can't/won't help you.

  • Why has exporting a film from Final Cut Express (FCE) HD (3.5) taking 30 times longer and file size increased by 30X?

    Exporting a 75 minute film from Final Cut Express (FCE) HD(3.5) through Quick Time Movie is now taking over an hour instead of the 2minutes it used to take.  The FCEMovie file is now 14 GB instead of the 1 GB it used to be.  In both cases Self Contained was notchecked when exporting.  I havetried trashing the Preference file to no avail.  There was a message when opening the FCE project that 140render files were offline.  Ichecked the box to forget them and also did a Render All Both and Render Only Mixdownbefore exporting.  I had thisproblem a few days ago and solved it by reinstalling FCE.  However after two days the problem hascome back.  As far as I know I didnot change anything in FCE or the system when the export times and file sizeincreased.

    I think you are correct about the longer version being a self-contained movie except that I did not check that option when exporting.  However, I have opened another project of the same size and that one can be exported in the usual time, the problem must reside with the particular project.  A clue is that to regain some disk space I deleted the render folder for several projects including the one I am having trouble with.  Also when iI opened that project I got a message that files were disconnected and I think they were render files.  I did re-render before exporting and that is when the file length increased by a factor of 13, even though it was not supposed to be self-contained.  FCE is working OK with other projects when I export them.  I am still puzzled.

  • Updates take way too long

    im trying to update OS X to its latest version (10.5.2) and i have left the updater on all night and all day, and the status bar has not moved more than a sliver. anything that can be done to speed it up?

    Hi sceptile2390 -
    Check your internet speed is okay, try downloading something else. Try the update again. If not, try Disk Utility?

  • Updates not installing/taking way too long.

    Hey everyone.
    So i just got my first iMac and of course as expected it asked me to download and update my computer OS and apps
    So i downloaded them and it asked me to restart to install so i clicked yes.
    then it goes to the blue screen with the loading bar that says "installing 6 updates" or whatever
    of course...it's probably at about...3% judging by the loading bar...and it's been that way for about 5 hours.
    i've tried this twice and both times its done the same thing.
    Can i safely assume that this is not normal?
    or do i just need to be patient and leave it overnight? (since this is the very first update i've had on the computer)

    Welcome to the Apple boards.
    No, it's not normal. Something is amiss.
    Usually when I get several updates at once, I install them one at a time.
    See if you can boot up in the safe mode (hold shift down on boot) and cancel the updates. Check your Login Items (Preferences->Users) and remove them if they are there.
    Someone else might know how to abort them if that's not how Apple does it.
    Then just do one at a time.
    Most updates, after downloading, take a few minutes in the Leopard GUI and a few more during reboot. Never more than 7 minutes, at least for me, and that included 10.5.1.

  • When I download Adobe's CS6 applications from the applications manager it takes way too long.  On my macbook I can download the same applications in about an hour or so.  With my new mac with tons of RAM it takes about 6 hours.  Can anyone help?

    Basically I'm having trouble downloading Adobe's CS6 applications.  On my macbook it does it a lot faster than my more powerful imac.  I know someone who also has a mac who said something like fragmenting my memory.  Does anyone know how to do that.  I'm totally clueless.  Thanks.

    Curt-
    Thanks for the reply!
    Quick thumbnails: Yes, always
    Video card: NVIDIA GeForce 8400M GT
    The performance of the laptop has been great. It is a sony vaio that I bought 2 months ago and it has been very capable with CS3 photoshop, bridge and ACR. I load in thousands of raw files, cull them down to 600-800, apply quick develop settings with camera raw, and then batch all 800 through a fairly intense photoshop action. All of this runs great except when I want to rename or delete in Bridge. A little earlier I finally shut down bridge after letting it rename images for 3 hours and it had only renamed 7 files out of 700. (And I'm just trying to rename to Name_0001)
    If you think I should run a performance check, I will. I'm just not familiar enough with Vista yet to know how.
    ross.james
    RossJamesPhotography.com

  • Last night I was installing the iOS 6 update on my ipod. I noticed it was taking way too long so I hit the home button and the ON/OFF button in ordered to restart it. After it restarted, the screen went blank and has been like that since.

    Someone please help me!

    Plug it into iTunes and hold the power and home buttons down for about 10 seconds, then release the power button but continue to hold the home button. That should put it in DFU mode. iTunes should recognize that and ask if you want to restore.
    ~Lt. Leviathan

  • Deleting 1 row from a table takes too long...why?

    We are running the following query...
    delete gemdev.lu_messagecode where mess_code ='SSY'
    and it takes way too long as there is only 1 record in this table with SSY as the mess_code.
    SQL> set timing on;
    SQL> delete gemdev.lu_messagecode where mess_code ='SSY';
    1 row deleted
    Executed in 293.469 seconds
    The table structure is very simple as you can see below.
    CREATE TABLE GEMDEV.LU_MESSAGECODE
    MESS_CODE VARCHAR2(3) NOT NULL,
    ROUTE_CODE VARCHAR2(4) NULL,
    REPORT_CES_MNEMONIC VARCHAR2(3) NULL,
    CONSTRAINT SYS_IOT_TOP_52662
    PRIMARY KEY (MESS_CODE)
    VALIDATE
    ORGANIZATION INDEX
    NOCOMPRESS
    TABLESPACE IWORKS_IOT
    LOGGING
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE(BUFFER_POOL DEFAULT)
    PCTTHRESHOLD 50
    NOPARALLEL
    ALTER TABLE GEMDEV.LU_MESSAGECODE
    ADD CONSTRAINT LU_ROUTECODE_FK3
    FOREIGN KEY (ROUTE_CODE)
    REFERENCES GEMDEV.LU_ROUTECODE (ROUTE_CODE)
    ENABLE
    ALTER TABLE GEMDEV.LU_MESSAGECODE
    ADD CONSTRAINT MSGCODE_FK_CESMNEMONIC
    FOREIGN KEY (REPORT_CES_MNEMONIC)
    REFERENCES GEMDEV.SYS_CESMNEMONIC (CES_MNEMONIC)
    ENABLE
    My explain reads as follows.
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | DELETE STATEMENT | | | | 1 (100)| |
    | 1 | DELETE | LU_MESSAGECODE | | | | |
    | 2 | INDEX UNIQUE SCAN| SYS_IOT_TOP_52662 | 1 | 133 | 1 (0)| 00:00:01 |
    Also in my AWR Sql Report I see this as well
    Plan Statistics DB/Inst: IWORKSDB/iworksdb Snaps: 778-780
    -> % Total DB Time is the Elapsed Time of the SQL statement divided
    into the Total Database Time multiplied by 100
    Stat Name Statement Per Execution % Snap
    Elapsed Time (ms) 521,102 N/A 12.0
    CPU Time (ms) 73,922 N/A 5.1
    Executions 0 N/A N/A
    Buffer Gets 2,892,144 N/A 3.4
    Disk Reads 2,847,609 N/A 8.6
    Parse Calls 1 N/A 0.0
    Rows 0 N/A N/A
    User I/O Wait Time (ms) 475,882 N/A N/A
    Cluster Wait Time (ms) 0 N/A N/A
    Application Wait Time (ms) 0 N/A N/A
    Concurrency Wait Time (ms) 2 N/A N/A
    Invalidations 1 N/A N/A
    Version Count 1 N/A N/A
    Sharable Mem(KB) 45 N/A N/A
    Now, since the table only has 150 rows, and I am only try to delete 1 row, why is there so much disk read and why does it take 5 minutes to delete? This just weird. Does this have something to do with the Child tables?

    Any triggers on the table?
    If you trace the session, what statement(s) seem to
    be taking all that time?
    JustinWell I traced my session and I noticed that my query does take a while, but I also noticed several other queries that I was not running. Not too sure where it came from. Have a look below. It is a sample from my TKPROF utility report.
    delete gemdev.lu_messagecode
    where
    mess_code ='SSY'
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.01 0.04 0 2 23 1
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.01 0.04 0 2 23 1
    Misses in library cache during parse: 1
    Optimizer mode: FIRST_ROWS
    Parsing user id: 57
    Rows Row Source Operation
    1 DELETE LU_MESSAGECODE (cr=3446672 pr=3442028 pw=0 time=309363335 us)
    1 INDEX UNIQUE SCAN SYS_IOT_TOP_52662 (cr=2 pr=0 pw=0 time=35 us)(object id 52663)
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    SQL*Net message to client 1 0.00 0.00
    SQL*Net message from client 1 35.87 35.87
    select /*+ all_rows */ count(1)
    from
    "GEMDEV"."TBLCLAIMCHARGE" where "CONTRACT_FEE_MESS_CODE" = :1
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 1 10.53 44.95 381779 382893 0 1
    total 3 10.53 44.95 381779 382893 0 1
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: SYS (recursive depth: 1)
    Rows Row Source Operation
    1 SORT AGGREGATE (cr=382893 pr=381779 pw=0 time=44953436 us)
    0 TABLE ACCESS FULL TBLCLAIMCHARGE (cr=382893 pr=381779 pw=0 time=44953403 us)
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    db file scattered read 47795 0.03 37.87
    db file sequential read 101 0.00 0.02
    select /*+ all_rows */ count(1)
    from
    "GEMDEV"."TBLCLAIMCHARGE" where "FEE_INEL_MESS_CODE" = :1

Maybe you are looking for

  • DVD Drive Broken on iSight G5

    Well, I think the DVD drive broek on my G5.  Also, I tok my new DVD drive and hooked it up, and it seems not to be compatible.  What can I do? Are there compatible drives - yes, I NEED to use the DVD drive for their school.  Thanks.

  • Lack of search sidebar in Pages 5.0 is a major drag

    I used the search sidebar as a handy list of shortcuts to jump around within a large document. For example I used to have important locations marked with "##" which then showed up as a clean list on the left. Now the search sidebar is gone in Pages 5

  • My Story. (reply with yours, good or bad)

    Im a perfectionist and ive admired Apple products since the dawn of the MacBook. I was unable to afford anything Apple untill the first iPhone was released. 3 months after owning it I knew I wouldn't want any other phone again. In my opinion, the iPh

  • Incorrectly defined Logical table source

    Hi all, I have two facts(F1& F2) and two  confirmed dimensions(D1,D2) for the facts F1 and F2. F1 F2:LTS1,LTS2 D1 D2 When I query columns from D1,D2,F1,F2 LTS1 result is coming But, when I query from D1,D2,F1,F2 LTS2 it is throwing incorrectly define

  • Remote sharing and combining of garageband layers

    My daughter and niece live in separate states, both write music, both have well-updated macbooks (osx 10.5.5, gb 08, etc). So far, we have not found a way for them to share layers (or tracks, or whatever it calls them) in GB to collaborate on the son