Why is iso5 download taking so long?

I"m updating an iPhone 4 and it's taken all night and appears to not have progressed past the halfway mark.  Can I unplug it? reinstall? help?

That's entirely up to your internet connection.
Mylenium

Similar Messages

  • Why is the download taking so long?

    I have the CC downloaded, but downloading the apps is taking extremely long.

    That's entirely up to your internet connection.
    Mylenium

  • Why is Illustrator download taking so long?

    I've been downloading the trial for about 5 minutes, and it's not even 1/10 done. I'm downloading it to the desktop, not to programs/applications folder. It says download will take 2 hours. Is this normal? Thank you.

    We cannot know. We know nothing about your network connection or otehr details. Could be perfectly normal on a slow connection....
    Mylenium

  • Why are the download options no longer categorized as in flv, WMP, MP3 etc?

    Why are the download options no longer categorized as in flv, WMP, MP3 etc?
    All one gets from the download drop-down menu is:
    (480p), (240p) or (360p) for example and the name of the video of course.
    The way it is now, I cannot identify the type of video I am downloading as I could before.
    Thanks!

    Ubi,
    Your assumptions are incorrect. Not all Youtube videos are offered in other formats; some are only offered in FLV format. Generally, only the very HD ones are offered in MP4. The format in which videos are offered are the decision of Youtube and/or the original poster of the video.
    I opted to not pay for the VDH converter. There are FREE converters that will convert FLV to other formats, but they do not interface with VDH. Even the VDH converter is a 2-step process (in both manual or automatic mode). The converter that is included free with VDH will put an ugly icon/watermark on your converted video--every frame of the video. To find a free converter, just Google "free flv converter" (with the quotation marks).

  • Why this Query is taking much longer time than expected?

    Hi,
    I need experts support on the below mentioned issue:
    Why this Query is taking much longer time than expected? Sometimes I am getting connection timeout error. Is there any better way to achieve result in shortest time.  Below, please find the DDL & DML:
    DDL
    BHDCollections
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[BHDCollections](
     [BHDCollectionid] [bigint] IDENTITY(1,1) NOT NULL,
     [GroupMemberid] [int] NOT NULL,
     [BHDDate] [datetime] NOT NULL,
     [BHDShift] [varchar](10) NULL,
     [SlipValue] [decimal](18, 3) NOT NULL,
     [ProcessedValue] [decimal](18, 3) NOT NULL,
     [BHDRemarks] [varchar](500) NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_BHDCollections] PRIMARY KEY CLUSTERED
     [BHDCollectionid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    BHDCollectionsDet
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[BHDCollectionsDet](
     [CollectionDetailid] [bigint] IDENTITY(1,1) NOT NULL,
     [BHDCollectionid] [bigint] NOT NULL,
     [Currencyid] [int] NOT NULL,
     [Denomination] [decimal](18, 3) NOT NULL,
     [Quantity] [int] NOT NULL,
     CONSTRAINT [PK_BHDCollectionsDet] PRIMARY KEY CLUSTERED
     [CollectionDetailid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    Banks
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Banks](
     [Bankid] [int] IDENTITY(1,1) NOT NULL,
     [Bankname] [varchar](50) NOT NULL,
     [Bankabbr] [varchar](50) NULL,
     [BankContact] [varchar](50) NULL,
     [BankTel] [varchar](25) NULL,
     [BankFax] [varchar](25) NULL,
     [BankEmail] [varchar](50) NULL,
     [BankActive] [bit] NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_Banks] PRIMARY KEY CLUSTERED
     [Bankid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    Groupmembers
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[GroupMembers](
     [GroupMemberid] [int] IDENTITY(1,1) NOT NULL,
     [Groupid] [int] NOT NULL,
     [BAID] [int] NOT NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_GroupMembers] PRIMARY KEY CLUSTERED
     [GroupMemberid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[GroupMembers]  WITH CHECK ADD  CONSTRAINT [FK_GroupMembers_BankAccounts] FOREIGN KEY([BAID])
    REFERENCES [dbo].[BankAccounts] ([BAID])
    GO
    ALTER TABLE [dbo].[GroupMembers] CHECK CONSTRAINT [FK_GroupMembers_BankAccounts]
    GO
    ALTER TABLE [dbo].[GroupMembers]  WITH CHECK ADD  CONSTRAINT [FK_GroupMembers_Groups] FOREIGN KEY([Groupid])
    REFERENCES [dbo].[Groups] ([Groupid])
    GO
    ALTER TABLE [dbo].[GroupMembers] CHECK CONSTRAINT [FK_GroupMembers_Groups]
    BankAccounts
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[BankAccounts](
     [BAID] [int] IDENTITY(1,1) NOT NULL,
     [CustomerID] [int] NOT NULL,
     [Locationid] [varchar](25) NOT NULL,
     [Bankid] [int] NOT NULL,
     [BankAccountNo] [varchar](50) NOT NULL,
     CONSTRAINT [PK_BankAccounts] PRIMARY KEY CLUSTERED
     [BAID] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[BankAccounts]  WITH CHECK ADD  CONSTRAINT [FK_BankAccounts_Banks] FOREIGN KEY([Bankid])
    REFERENCES [dbo].[Banks] ([Bankid])
    GO
    ALTER TABLE [dbo].[BankAccounts] CHECK CONSTRAINT [FK_BankAccounts_Banks]
    GO
    ALTER TABLE [dbo].[BankAccounts]  WITH CHECK ADD  CONSTRAINT [FK_BankAccounts_Locations1] FOREIGN KEY([Locationid])
    REFERENCES [dbo].[Locations] ([Locationid])
    GO
    ALTER TABLE [dbo].[BankAccounts] CHECK CONSTRAINT [FK_BankAccounts_Locations1]
    Currency
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Currency](
     [Currencyid] [int] IDENTITY(1,1) NOT NULL,
     [CurrencyISOCode] [varchar](20) NOT NULL,
     [CurrencyCountry] [varchar](50) NULL,
     [Currency] [varchar](50) NULL,
     CONSTRAINT [PK_Currency] PRIMARY KEY CLUSTERED
     [Currencyid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    CurrencyDetails
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[CurrencyDetails](
     [CurDenid] [int] IDENTITY(1,1) NOT NULL,
     [Currencyid] [int] NOT NULL,
     [Denomination] [decimal](15, 3) NOT NULL,
     [DenominationType] [varchar](25) NOT NULL,
     CONSTRAINT [PK_CurrencyDetails] PRIMARY KEY CLUSTERED
     [CurDenid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    QUERY
    WITH TEMP_TABLE AS
    SELECT     0 AS COINS, BHDCollectionsDet.Quantity AS BN, BHDCollections.BHDDate AS CollectionDate, BHDCollectionsDet.Currencyid,
                          (BHDCollections.BHDCollectionid) AS DSLIPS, Banks.Bankname
    FROM         BHDCollections INNER JOIN
                          BHDCollectionsDet ON BHDCollections.BHDCollectionid = BHDCollectionsDet.BHDCollectionid INNER JOIN
                          GroupMembers ON BHDCollections.GroupMemberid = GroupMembers.GroupMemberid INNER JOIN
                          BankAccounts ON GroupMembers.BAID = BankAccounts.BAID INNER JOIN
                          Currency ON BHDCollectionsDet.Currencyid = Currency.Currencyid INNER JOIN
                          CurrencyDetails ON Currency.Currencyid = CurrencyDetails.Currencyid INNER JOIN
                          Banks ON BankAccounts.Bankid = Banks.Bankid
    GROUP BY BHDCollectionsDet.Quantity, BHDCollections.BHDDate, BankAccounts.Bankid, BHDCollectionsDet.Currencyid, CurrencyDetails.DenominationType,
                          CurrencyDetails.Denomination, BHDCollectionsDet.Denomination, Banks.Bankname,BHDCollections.BHDCollectionid
    HAVING      (BHDCollections.BHDDate BETWEEN @FromDate AND @ToDate) AND (BankAccounts.Bankid = @Bankid) AND (CurrencyDetails.DenominationType = 'Currency') AND
                          (CurrencyDetails.Denomination = BHDCollectionsDet.Denomination)
    UNION ALL
    SELECT     BHDCollectionsDet.Quantity AS COINS, 0 AS BN, BHDCollections.BHDDate AS CollectionDate, BHDCollectionsDet.Currencyid,
                          (BHDCollections.BHDCollectionid) AS DSLIPS, Banks.Bankname
    FROM         BHDCollections INNER JOIN
                          BHDCollectionsDet ON BHDCollections.BHDCollectionid = BHDCollectionsDet.BHDCollectionid INNER JOIN
                          GroupMembers ON BHDCollections.GroupMemberid = GroupMembers.GroupMemberid INNER JOIN
                          BankAccounts ON GroupMembers.BAID = BankAccounts.BAID INNER JOIN
                          Currency ON BHDCollectionsDet.Currencyid = Currency.Currencyid INNER JOIN
                          CurrencyDetails ON Currency.Currencyid = CurrencyDetails.Currencyid INNER JOIN
                          Banks ON BankAccounts.Bankid = Banks.Bankid
    GROUP BY BHDCollectionsDet.Quantity, BHDCollections.BHDDate, BankAccounts.Bankid, BHDCollectionsDet.Currencyid, CurrencyDetails.DenominationType,
                          CurrencyDetails.Denomination, BHDCollectionsDet.Denomination, Banks.Bankname,BHDCollections.BHDCollectionid
    HAVING      (BHDCollections.BHDDate BETWEEN @FromDate AND @ToDate) AND (BankAccounts.Bankid = @Bankid) AND (CurrencyDetails.DenominationType = 'COIN') AND
                          (CurrencyDetails.Denomination = BHDCollectionsDet.Denomination)),
    TEMP_TABLE2 AS
    SELECT CollectionDate,Bankname,DSLIPS AS DSLIPS,SUM(BN) AS BN,SUM(COINS)AS COINS  FROM TEMP_TABLE Group By CollectionDate,DSLIPS,Bankname
    SELECT CollectionDate,Bankname,count(DSLIPS) AS DSLIPS,sum(BN) AS BN,sum(COINS) AS coins FROM TEMP_TABLE2 Group By CollectionDate,Bankname
    HAVING COUNT(DSLIPS)<>0;

    Without seeing an execution plan of the query it is hard to suggest something useful. Try insert the result of UNION ALL to the temporary table and then perform an aggregation on that table, not a CTE.
    Just
    SELECT CollectionDate,Bankname,DSLIPS AS DSLIPS,SUM(BN) AS BN,SUM(COINS)AS COINS  FROM
    #tmp Group By CollectionDate,DSLIPS,Bankname
    HAVING COUNT(DSLIPS)<>0;
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Why is N-Gage taking so long??

    Why is N-gage taking so long to finish games like asphalt etc?? Happy with first access on n81 but the games I like are not available yet

    CT - do you have any of that Pixie Dust left over from last time?

  • Why is my ipad taking so long to charge now that I upgraded to ISO 7. Not happy

    Why is my ipad taking so long to charge.  I upgraded to iso7.01 and it takes forever and I am not happy

    Have you reset you iPad,or tried deleting the apps that are crashing and then opening them again.  Or closing them and reopening them. Also clear Safari and see it that helps. There have been a few other posts like yours , and I can't figure out why it happens to some ipads and not others. I have not even seen what happens with a "crash" occurs and I use mine all the time. Good luck.

  • Why is my mac taking so long to load videos

    why is my mac taking so long to load videos

    This may have something to do with your Internet connection, the size of the video you are watching or the amount of items running in your Mac at the same time.

  • Why are my apps taking a long time to update both on my phone and iPad?

    Why are my apps taking a long time to update both on my phone and iPad?

    Hi ariasm21,
    Thanks for visiting Apple Support Communities.
    If the App Store on your iPhone seems unresponsive or app updates are not completing, try the steps below.
    First force close the apps using these steps:
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app's preview up to close it.
    These steps come from this article:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Next, restart your device:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Try updating an app again. If the issues persist, you may want to troubleshoot your internet connection next:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    All the best,
    Jeremy

  • Why are my songs taking so long to download?????

    I just bought songs from iTunes fromt he first time and they are taking forever to download. I have a 6GB ipod mini and I only have 189 songs on it. Its taken over 2 hours for 11 songs of about 2-4 min. to download. Why is this taking so long and is there anyhting i can do to speed up the process?
    Sony Vaio   Windows XP  

    Not sure what you are downloading, but it isn't a 4MB music file within 2 seconds.
    Even if you could get a true 56K speed (which does not exist) for dial-up, each 4MB file would take you 10 minutes to download.
    Most 56K modems are limited to around 40-50K at their fastest.
    Your times for the 11 songs seems about right.
    -- 11 songs @ an average of 3 minutes in length & 1MB/min = 33 MB total to download
    -- 33MB @ 56K = 1h23m
    -- 33MB @ 34K = 2h17m
    You are probably getting between 30K and 42K of real download speed from the modem.

  • Why is the game taking so long to download

    when i purchased deus ex: human revolution from the mac app store it kept saying error occured and then it started to download and now it is taking too long to download the finishing time says 6-8 hours i have tried restarting the download but it is still taking too long what should i do?

    How much RAM do you have?
    You might want to build it out to the max.
    Macs are not gaming consoles, as such are not maximized for such use. They are computers, not gaming consoles, that is not to say they can't play games. Just understand that they will generate more heat and if you are using a game that is using a high number of CPU/GPU cycles, you may have to use an additional cooling apparatus.
    All the best

  • HT1766 Why is my restore taking so long?

    Why is my iPhone 5 restore from iCloud taking so long?

    I FOUND A SOLUTION as to why the iCloud restore to my iPhone 5 was taking so long (3 days).
    It basically boiled down to my phone trying to download & restore iTunes music from my other apple id. It asked for it initially, but the tech on the phone told me I could skip it...don't skip it. My music is with one id (macbook) and my apps are with my most used id (iphone).
    I checked my phone to see if I had iTunes music waiting to download/reinstall...and there was, but it wasn't downloading. 
    On my phone, I went to settings, icloud, signed out of my most used id, signed in to my other id, downloaded that music, then signed back out.
    My phone was ready to go in seconds!
    **I highly suggest using wifi to perform your iCloud restore***
    I was on my way to the Genius Bar in the morning, but now things are resolved. I really hope this helps someone!

  • Why is my restore taking so long

    i had to restore my iphone 4. so i did. then it extracted all software and now its restoring it all back but ive literally been at this exact point for about 2 hours now and still nothing. ive been having trouble with this specific phone since i got it.
    i just wanna update my phone to ios 5 and i cant even do that cause my phone wont restore.
    please help

    I FOUND A SOLUTION as to why the iCloud restore to my iPhone 5 was taking so long (3 days).
    It basically boiled down to my phone trying to download & restore iTunes music from my other apple id. It asked for it initially, but the tech on the phone told me I could skip it...don't skip it. My music is with one id (macbook) and my apps are with my most used id (iphone).
    I checked my phone to see if I had iTunes music waiting to download/reinstall...and there was, but it wasn't downloading. 
    On my phone, I went to settings, icloud, signed out of my most used id, signed in to my other id, downloaded that music, then signed back out.
    My phone was ready to go in seconds!
    **I highly suggest using wifi to perform your iCloud restore***
    I was on my way to the Genius Bar in the morning, but now things are resolved. I really hope this helps someone!

  • Why is my shipping taking so long?

    i ordered my macbook pro 15 inch 2.2 gig for college about 2 weeks ago and have seen nothing about the product being shipped, i called up my college's book store where i ordered the computer and asked them what the problem was, to which i was told that the order was sent to apple and now you have to wait for them to ship (i was told that they had recieved the order but the person i was talking to said that nothing was showing up about the computer being shipped), why is apple taking so long to ship? is there anyway i can find out if apple has shipped?

    CT - do you have any of that Pixie Dust left over from last time?

  • After formatting and creating two partitions on my external HD, why is Time Machine taking 25x longer to perform a backup?

    Hi.
    I bought a macbookpro 13"retina, new two weeks ago and a G-tech 1TB external drive from the apple store. It's my first mac.
    I performed a backup, using Time Machine, which copied 18 GB onto he 1TB external HD in around 20 minutes.
    After a little more reading, I realised I should use Disk utility to partition the 1TB external G-tech drive into a 250gb partition, and a 750gb partition.
    [My MBP has a 250gb flash HD. I'll use the other 750gb for storage of my other files, like photos, music etc.]
    So, using disk utility I formatted the 1TB exernal drive, then created two partitions.
    However, I've started backing up my data using time machine again, onto the 250gb partition, on the external drive, and its now taking 5 hours to copy the 19.81GB
    So why is it taking 25x longer than the first time I did it? [First time it took 20 minutes]
    Thanks

    Since performing the fist backup, a couple of days ago, which took twenty minutes, and the second backup, which is taking 5 hours, I installed MS office for Mac 2011 and Silverlight.
    Dont know if thats responsible?

Maybe you are looking for

  • Can't attach USB devices in Windows XP Mode

    I am still trying to set up my new Probook G1 450.  It is presently in the original Win 7 Pro 64-bit OS. I am trying to use Windows XP Mode.  I can set up XP Mode, but I can't get USB access under it. But for me, the whole point of getting XP Mode is

  • Time Machine: disk full (but doesn't self erase old backups?)

    Hi everyone. I am trying to do my backups with Time Machine (TM). My HD is 1TB, external HDD (for TM backups) is 2TB. After a few days TM tries to do new backups, but an error message pops up: "Too low space" in the 2TB HDD. But does not TM automatic

  • Swing app in JDK6 continues to rendering slow in Windows Terminal Server

    Hi, Because Swing apps create interfaces internally and not using default OS APIs, when running into a Windows Terminal Server client, there is no way to optimize rendering. Windows Terminal Server and Linux FreeNX use a mechanism to send to client o

  • How to create a MYSELF Datasource

    Hello, can any body help me creating a MYSELF Datasource from which i can create a InfoCube .. My requirement is I want to partition my InfoCube for which i want to transfer all my data that is in my present Cube to another dummy InfoCube. So that i

  • Which application should I use?

    The search function for this forum returns an error message (I've reported it), so excuse me if the answer would have been easy to find. I'm writing a book on living cheap. I want to make it available for donations. (I figure that the people who need