Importing in iphoto 6 is taking way too long!

I am having problems importing photos from my Nikon coolpix 5100 . When i first purchsed my imac it imported quick and easy with iphoto 6 and my camera, but now i am waiting just to import 48 photos. It comes up saying would you like to import 48 and i press import. IT finally imported after 15 minutes. Why did it take this long?

Have you tried using a USB card reader? Saves wear and tear on your camera ports, plus less risk of data loss if the camera shuts down during transfer.
Other than that, try reformat the card using the camera - but, of course, beware that reformatting will erase the card.
Regards
TD

Similar Messages

  • Installing OS X on a new hard drive taking way too long?

    I switched out my old 250 GB hard drive that shipped with my MacBook Pro for a new 640 GB WesternDigit drive. I'm trying to use a Mavericks installer USB to install on my newly formatted hard drive, but it's taking way too long - I mean, I left it going overnight (about 7.5 hours), and when I came down, it wasn't even half done. Is there anything I can do here? I'd like to use my laptop. Thank you very much for any suggestions.

    Do you have a internet connection? Even with a USB installer that if good and functioning properly you need an internet connection to Authenticate the install with your Apple ID.
    If your old drive is still functioning you can connect it to your Mac with a SATA to USB adapter and use the Recovery HD on that original drive to reinstall Mavericks on the new drive.
    If the drive is no longer functioning and you have no way of getting to the Apple internet download for Mavericks then you will need to start with an install of the original version of OS X that came on your Mac when new then update and or upgrade to Snow Leopard 10.6.8 and then use the Mac App Store to reinstall Mavericks. There is not other way to do this. So save yourself some time and trouble and start fresh.
    If your original drive is still functioning and it had Mavericks installed on it you can also CLONE that drive to the new one once you connect it to your mac with some type of SATA to USB adapter or enclosure.
    If the Mavericks USB installer you have was made from a Mac that came with Mavericks pre-installed on it that will not work on your Mac.

  • It's taking way too long for my messages to load.

    Starting on Tuesday this week (10/14) it is taking way too long for my messages to load from my Gmail account. Once the message finally shows up in the Inbox, it's taking up to 10-15 min for the message to load where I can actually view the message. I'm going to have to move to another email application if this can't be resolved which is very unfortunate as I've enjoyed using Thunderbird up until now.

    I guess I'm at least happy to know it's not just me. I've had to abandon Thunderbird for now. I guess I'll keep an eye out for future updates.

  • Firefox is taking way too long to load pages. I have a very fast internet connection but firefox takes forever to load websites. At first it worked fine and very fast but now very slow??

    firefox is taking way too long to load pages. I have a very fast internet connection but firefox takes forever to load websites. At first it worked fine and very fast but now very slow??

    Hi there!
    do you test other browsers?
    i suggest to make a clean install of newer version of Firefox like v8.0.

  • Taking way too long to iPhone for iOS 5

    Taking too long to sinc iPhone for ios5

    What it has to do is install the framworks and then reload all of your data onto the iPhone. It took me 2 hours to install on my iPad but it took 15 min for my iPhone

  • OSX installation (and reloading images) taking way too long

    Hi everyone.
    I've noticed a problem lately: installing OSX (either my original Tiger DVD or my new Leopard DVD) is taking way longer than it should. The same thing also happens when I try to revert back to an older disk image.
    I tried installing Leopard yesterday and it said it was going to take 5 hours. Initially I thought it was because the disk I was using was partitioned, so today I have wiped the disk completely, restored it to one partition, and disconnected all my external drives and all but the primary internal ones. That seems to have dropped the install time to 3 hours.
    The first thing I did yesterday was try to restore an older image of my Tiger installation. That one was about 60GB in size and, even after 8 hours, the installation had not predicted an actual remaining install time, but from the progress bar, it looked like it would be at least 2 days.
    Why in the world would this be happening and has anyone run into it before? All the system checks I ran the other day seemed to indicate things were fine. So am I missing something?
    Thanks.
    -N

    Check the S.M.A.R.T. status of the HDs.
    Run DU and repair the HDs if needed.
    It's also possible that your optical drive is dying and/or your Tiger CD and Leopard DVDs are dirty or scratched.
    A typical Leopard install takes under 1 hour. Anything over 2 indicates some major issues.

  • Slideshow Taking WAY too long to load

    I have a slideshow posted at
    http://olyrents.com/slideshow.htm
    My client is saying it takes too long to load, and I am
    finding that it is loading all of the photos first before you can
    scroll through and view them. It's just not functioning properly.
    I wonder if someone could look at the actionscript and give
    me any suggestions? Maybe there's something else going on?
    I have attached the script from the original fla file.
    Thanks!

    That adds up to somewhere in the realm of 5MB, which isn't
    going to be a quick load time, though it might be visually workable
    if you separate the loading from the viewing.
    One thing you might consider is doing away with the preloader
    visual. With 65 images being interupted by 65 preloader screens, it
    kinda defeats the potential aethetics of the images and may lead
    one to think it's taking a long time to load them as a result.

  • Query taking way too long

    Hello,
    Can somebody please help.
    I am wanting to change this query so that it does not take too long. How can I do it please?
    select count(*), t.tel_no, t.prospect_id, a.ACCOUNT_NO, a.account_title
    from tel_nos t, account a
    where t.tel_type = 'S'
    AND t.prospect_id = a.prospect_id
    AND SYSDATE BETWEEN t.start_date AND NVL(t.end_date, SYSDATE)
    group by t.tel_no, t.prospect_id, a.ACCOUNT_NO, a.account_title
    having count(*) > 1
    Thanks in advance.

    Tuning is a science not a parlour guessing game. It's hard for us to diagnose the problem you have here as you have given us almost no information. For instance, are you using rule based or cost based optimizer? How big are these two tables? What indexes do they have? What percentage of rows are you expecting the query to return?
    Tuning is such a big area that it's hard to know where to begin. I suggest you start at the Oracle docs. Chapters 1, 4 and 5 will set you going.
    http://download-west.oracle.com/docs/cd/A87860_01/doc/server.817/a76992/toc.htm
    Having said all that you may well find this runs faster:
    SELECT count(*), t.tel_no, t.prospect_id, a.account_no, a.account_title
    FROM   account a, tel_nos t
    WHERE  t.tel_type = 'S'
    AND    sysdate BETWEEN t.start_date AND nvl(t.end_date, sysdate)
    AND    t.prospect_id = a.prospect_id
    GROUP  BY t.tel_no, t.prospect_id, a.account_no, a.account_title
    HAVING count(*) > 1
    /I leave it to you to work out why (it's nothing to do with clearer layout).
    Cheers, APC

  • 10g Import Taking Way too Long!

    Hello -
    I'm attemping to import an 80GB database into a 10g database (exported from 8i), and it took an amazing 20 hours to import! Once thing I didn't do was put it into NOARCHIVE log mode which I will do for the next attempt. I have 3 set of 15MB redo logs. Would increasing these to a really large number like 500MB help? The export only took 1/2 hours using Direct Path.
    Any ideas are greately appreciated!
    Thanks,
    Mike

    I have 3 set of 15MB redo logs. Would increasing these to a really large number like 500MB help?15MB looks really small to me you need to check the alert log file to find out how frequently log switches are occuring and then decide to enlarge your log file. I think 15MB log is one of the problem and you need to enlarge it, check other database events too to find out any other bottleneck. What kind of box you are on??
    Daljit Singh

  • Slideshow on iPhoto is taking way too long to export...

    I created a slideshow of about 1,200 photos on iPhoto with a slide duration of 13 seconds and an HDTV aspect ratio (16:9). When I tried to export the slideshow i noticed it took an excessive amount of time. I attempted to export it 3 times, all of which I had left overnight for the task to be completed, and when I checked on the project in the morning I saw that it had only gotten halfway through the process but it was stuck on "saving slideshow" for the rest of the day. I've checked numerous websites and Google for help but found no answeres. Is there something I'm doing wrong or is there a problem with iPhoto?

    I think that a 1200 shot slideshow is too big for iPhoto to work with (and might also prove a challenge to an audience too )
    I think you'll need to use a dedicated app for that job, and make sure you have lots and lots and lots of free disk space as the scratch requirements for that will be enormous.
    Alternatives to iPhoto's slideshow include:
    iMovie, on every Mac sold.
    Others, in order of price: PhotoPresenter  $29
    PhotoToMovie  $49.95
    PulpMotion  $129
    FotoMagico $29 (Home version) ($149 Pro version, which includes PhotoPresenter)
    Final Cut Pro X $299
    It's difficult to compare these apps. They have differences in capability - some are driven off templates. some aren't. Some have a wider variety of transitions. Others will have excellent audio controls. It's worth checking them out to see what meets your needs. However, there is no doubt that Final Cut Pro X is the most capable app of them all. You get what you pay for.
    Regards
    TD

  • HT1689 It is taking way too long to download my purchase, what's going on?

    My tv program download is taking too long

    Your TV program may be huge ... like a gigabyte or so.  That could take a very long time to download, depending on your WiFi connection speed and quality.

  • Mail taking way too long to get to my iphone...Rogers network Toronto

    Today, on more than one occasion I sent an email from my yahoo account to my .mac account. The email arrived within 2 minutes. I was online the entire time to verify. My iphone, failed to be notified within 30 minutes!! In actual fact, i don;t know how long it would have taken to get the email. The only way I managed to retrieve the email on my iphone was to select the mail application on the iphone and select "inbox". This forces the software to check for mail....This isn't PUSH at all.
    Is anyone else experiencing this.?
    Thanks
    B

    the push services are only as good as the pusher I believe. I know my yahoo mail doesn't get pushed very well. Sometimes it's instant other times it's not. My girlfriend's email on a microsoft exchange server activesync is pushed pretty consistently. Given some of the hangups with the mobileme services, I'm not too surprised that the push isn't working great. It's really a mobilme issue I think, and I will let others with the service chime in with their experiences.

  • BUNDLE_EXECUTE TAKING WAY TOO LONG TIME. PLEASE HELP

    Hi Experts,
    Please see that after we ugrade our SEM 4 to SEM 6 along with BW 3.5 to BI 7, I am performing Post Upgrade Testing in Sandbox.
    In this process when I tried executing a Global Planning Sequence in Back Ground by Right Clicking the GPS I wish to run and selected Execute PS in Background Option.
    But when I am looking at it's status in Job overview, it is running for ever. I still wonder that how come it is taking so long time and I have no clue.
    The same GPS when I tried executing the ssame way in DEV and QA servers where the Upgrade is still not happened it is not taking more than 80 Seconds.
    So Kindly guide me through this issue. Highly appreciate your valuble inputs.
    Thanks and Regards,
    BIP

    Hi ,
    We are facing the same issue in our new parallel systems (SEM 3.2 to SEM 6 along with BW 3.1 to BI 7). Please let us know how you solved the issue.
    Our Planning Sequence has just one copy function.
    The same GPS when I tried executing in old systems in SEM 3.2 and BW 3.1, it is working fine.
    Any solution?
    Thanks,
    H

  • Shuffle taking way too long to sync

    after updating to itunes 8.o, all of the three shuffles that use that itunes library take forever to sync-even one song or podcast. what happened?? does anyone know how to fix this??

    Even though the Shuffle is listed as USB 2.0 compatible it only seems to sync at USB 1.1 speeds. I've had a nano and a shuffle and the nano syncs WAY faster than shuffle (no conversion to 128kbps AAC is taking place)
    Message was edited by: ajstahl

  • Min() taking way too long

    Hi,
    I have two databases, one with 2 million rows and another with 171 million rows. On both boxes when I do a max() it takes milliseconds for the result to return. There is an index on this column.
    But when I do a min, on the DB with 2 million its takes about 2-3 minutes and min on the other DB with 171 M it takes only a few milliseconds.
    The execution plan seems to be fine, the cost in 1 in both. The only difference is that the one taking most time has large number of physical reads. Could anyone let me know what's happening. Both the DB boxes are exactly the same in terms of configuration.
    Elapsed: 00:03:25.38
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1 Card=1 Bytes=8)
    1 0 SORT (AGGREGATE)
    2 1 INDEX (FULL SCAN (MIN/MAX)) OF 'ST_AI' (NON-UN
    IQUE) (Cost=1 Card=2126583 Bytes=17012664)
    Statistics
    0 recursive calls
    0 db block gets
    341787 consistent gets
    341749 physical reads
    0 redo size
    382 bytes sent via SQL*Net to client
    503 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed
    Elapsed: 00:00:00.23
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1 Card=1 Bytes=8)
    1 0 SORT (AGGREGATE)
    2 1 INDEX (FULL SCAN (MIN/MAX)) OF 'ST_AI' (NON-UN
    IQUE) (Cost=1 Card=171363076 Bytes=1370904608)
    Statistics
    0 recursive calls
    0 db block gets
    4 consistent gets
    0 physical reads
    0 redo size
    383 bytes sent via SQL*Net to client
    503 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed

    here it is
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.01 0 0 0 0
    Execute 1 0.00 0.02 0 0 0 0
    Fetch 2 0.00 198.26 341207 341245 0 1
    total 4 0.00 198.30 341207 341245 0 1
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 27
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.01 0 0 0 0
    Execute 2 0.00 0.03 0 0 0 0
    Fetch 2 0.00 198.26 341207 341245 0 1
    total 5 0.00 198.32 341207 341245 0 1
    Misses in library cache during parse: 1
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 0 0.00 0.00 0 0 0 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 0 0.00 0.00 0 0 0 0
    Misses in library cache during parse: 0
    2 user SQL statements in session.
    0 internal SQL statements in session.
    2 SQL statements in session.
    0 statements EXPLAINed in this session.
    Trace file: db_ora_24250.trc
    Trace file compatibility: 9.02.00
    Sort options: default

Maybe you are looking for

  • I'm looking for a scheduling app that will send reminder emails to clients

    I'm looking for an iPad appointment app that will send reminder emails to clients & synch with my iMac. Suggestions?

  • Few Queries in ODI

    Hi , I am very new to ODI so might be the question would sound silly . Few Questions: 1. I want to know if there is any way of hardcoding SQL query in ODI for the source. 2. I have 4 total interfaces(LoadEmp,LoadCustomer,LoadProd,LoadFact) . I am bun

  • Specification of user's servlets

    Hi, I am working on tomcat4.1 and the servlets were also working fine.But in an attempt of doing some R&D I changed my server.xml.Now all the servlets in webapps/examples/ are working fine.But if I create a new directory below webapps like c:\jakart1

  • Data points

    I'm having a bit of an issue. I have a cycle counter that counts the TTL of a function generator and I'm collecting 100 data points per "cycle" My cycle count is being saved to the data file in the first column, along with 4 analog channels. My issue

  • How to set delaypercentage for Test set execution?

    I am running Test set from Test execution tab in OTM. But I am not getting option 'Command line run settings' to enter value as -delaypercentage 1. The test case(Openscript) is failng if I run the test set. If I run indivisual test case then it is ge