Overflow the disk I/O buffer

Hello,
I am getting "overflow the disk I/O buffer" in my SSIS, and what's weird is that when I construct the same SSIS in a new package, it works perfectly.  I almost want to believe that it could be a bug.  Some days when I import the files, it works fine, but some days it errors out with this error on the last column.  Is there some setting with CR/LF or LF that I have to pay attention to avoid this type of random error?
Thanks for your help!
-Lawrence

[Flat File Source [439]] Error: The column data for column "Avg Position" overflowed the disk I/O buffer.
[Flat File Source [439]] Error: An error occurred while skipping data rows.
[DTS.Pipeline] Error: The PrimeOutput method on component "Flat File Source" (439) returned error code 0xC0202091.  The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing.
[DTS.Pipeline] Error: Thread "SourceThread0" has exited with error code 0xC0047038.
[DTS.Pipeline] Error: Thread "WorkThread0" received a shutdown signal and is terminating. The user requested a shutdown, or an error in another thread is causing the pipeline to shutdown.
[DTS.Pipeline] Error: Thread "WorkThread0" has exited with error code 0xC0047039.

Similar Messages

  • Overflow the SQL query string buffer

    Hello,
    I have a report that is using a query to determine values for a parameter. In Report Builder everything renders fine, but when I publish the report on the Report Server, it will not render if too many values are entered for the parameter, including "Select
    All". The reason for this behavior is likely due to the number of possible values for the parameter being over 2500. My research has shown that this is causing an overflow of the SQL query string buffer. The obvious fix is to not use that column as a
    parameter, but the power that be are insisting. My system administrator says he can likely increase the buffer size, but has asked me to find out how and where to do that. Any help would be much appreciated.

    Hi CrazyAlligator,
    According to your description, you have more than 2500 values within a parameter. It throws overflow exception when selecting all values. Right?
    Microsoft security update MS11-100 limits the maximum number of form keys, files, and JSON members to
    1000 in an HTTP request. Because of this change, ASP.NET applications reject requests that have more than
    1000 of these elements. HTTP clients that make these kinds of requests will be denied, and an error message will appear in the web browser. The error message will usually have an HTTP 500 status code. This new limit can be configured on a per-application
    basis. Please see the "Resolution" section for configuration instructions. Please refer the KB article:
    https://support2.microsoft.com/kb/2661403?wa=wsignin1.0
    In this scenario, we need add the setting in the web.config file. Please follow the steps below:
    Go to the reporting services installation folder.
    Go to the report server folder and make a backup of the file “Web.config”. Once you have the backup, open the original file in notepad and add the following entry under the Configuration section:
        <appSettings>
                    <add key="aspnet:MaxHttpCollectionKeys" value="10000"/>
        </appSettings>
    Go to the Report Manager folder and again make a backup of the file “Web.config”. Once you have the backup, open the original file in notepad and add the following entry under the appSettings tag:
    <add key="aspnet:MaxHttpCollectionKeys" value="10000"/
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • I got this error message when verifying the disk

    The electricity in my apartment was abruptly shut down while I was using my imac. After I'd got all the electricity back on, I turn on my mac and found that when I verified the disk in disk utility I got this error message.
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Illegal name
    Illegal name
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    Volume Header needs minor repair
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    The repair button is in grey so I couldn't do anything. So far, the computer seemed to work fine, but what is the necessary thing to do in this situation??
    Can anyone help?? please.
    Navin

    I'd stay away from disk warrior etc. Try disk utility.
    DiskWarrior is not a disk repair program in the conventional sense. Instead of patching the original directory, it uses a patent-pending technology to quickly build a new replacement directory using data recovered from the original directory, thereby recovering files and folders that you thought were lost and that no other program could recover.
    I've never had trouble with Journaled HFS+ volumes but if I did I try disk utility to repair. Then run fsck from single-user-mode. Then, if that failed I'd pull my data off and erase.
    I've never had any persistent luck with norton type utilities, the problems always come back until I erase.

  • Threads to keep the CPU faster than the disk?

    Greetings,
    I hope this is the correct place to post a question like this - I did not see a forum specific to C/C++ programming on Solaris.
    I'm currently writing a data conversion program and would like to get better performance. The programming language is straight C, Solaris 10, E25K with 8 CPUs and 16G RAM allotted to my zone. I do not have admin on the box. I am compiling 64-bit with lots of compiler options for performance.
    The process is very linear and most of the optimization examples I find are for making loops run in parallel and such. Well, I don't have any loops. I'm moving a lot of data from a set of source files, doing some transformation and validation, then writing to the appropriate target file. No recursion or matrix math here...
    I wrote my initial test program which would basically spin through the source files and write empty target files. Doing this I was able to process about 70,000 source records per second - which was acceptable and on par with the speed of simply copying the disk files from one place to another.
    Once I started adding logic, the records per second started to drop drastically. I expected this to some degree, but adding just the basic initial logic cut the records per second in half, and after that the performance dropped in a pretty linear fashion as I added transformation logic. Mind you, most of the logic is moving source to target and space padding the target, validating a date range, etc.. Nothing complex by any stretch of the imagination, there are just a lot of fields.
    Before I spend a lot of time trying to multi-thread the application, I wanted to see if my expectations are realistic. My thinking is that 8 CPUs should be able to keep up with the disk subsystem and that my conversion should not take any longer than the amount of time it takes to simply copy the data from one point to another. Possible?
    Currently I'm processing like this:
    1. mmap open all sources (there are about 10 to 15 depending)
    2. collect counts of all source records in a given "set"
    3. wait for any previous targets to finish writing to disk
    4. process the current set of source records and write target records to memory buffers for each target
    5. when a given target buffer is full, aiowrite to the target file
    6. while there are source records, goto step 2
    Basically I used aiowrite to get a little free async operation in that any target buffers that are ready to be written could do so while the next set of source records is being grouped (being read from the mmap'd source files). I also try to keep things as fast as possible by not moving the data more than necessary. Usually my transformation logic can move the data directly from the mmap'd file to the target buffer, and in other cases only a single move of the data needs to be done.
    What I think I would like to do is create a thread that groups the source record sets into 8 independent memory locations. This thread's job is to simply keep those group locations full. Then 8 worker threads would pick the next source "set" from the pool and process it, and only have to sync on a mutex when writing to the target file.
    Any insight or feedback would be greatly appreciated.
    Thanks,
    Matthew

    If your application is not using threads, then the entire program is running in a serial state, waiting for i/o etc. To check how your little program works, use:
    truss -a -d -D -f -l -o your_truss_output_file.log your_application

  • TCode OS07 not giving the Disk Info

    Hi All,
    I wanted to know the Server Disk Status i.e. Free Space on Server , I don' have root access. I use OS07 > Server Name > Detail Analysis Menu  ..but, I don't see any data . At the end I see the message " OS Collector not running ( Shared Memory Not Available )
    " ..Any input to solve this.. ?
    Also, how would I check the Disk Space on JAVA only Server which has Portal on it ?
    Thanks in Advance,
    - Ishan

    Thanks, Warren.
    At the time of  posting the Q, matter was quite urgent ..so, the OS Admin gave me the info about free disk space.
    However, just for my knowledge / record :
    I started the OS Collectore through ST06 but, still I don't see the required info.
    - I see only zeros under the columns i.e. Disk, Resp [ ms ], Utilization [ % ] , Queue Len, Wait [ ms ], Serv [ ms ], Kbyte [/s], Oper
       [s]  etc.
    - OSCol Version seems ok as per note ( It's not THE latest, but it is as per the SAP Kernel Version i.e. 640 )
    I have copy/paste the log file here. Pl. let me know what would be the workaround. As, not having the root access , I frequently need
    to know the Free Disk Space Available on a Specific Server. Even if there's some data in the above columns, I don't see any column like ' Free ' or ' Available  Disk Space ' . So, is this ST06 is the right one to check the free disk Space ?
    Your help is sincerely appreiciated and would be rewarded with Appropriate Points.
    Thanks n' Regards,
    - Ishan
    >>> Content of the Log File :
    Contents of log file
          SAPOSCOL version  COLL 20.90 640 - 20.54 NT 06/06/06, 32 bit, multithreaded, Non-Unicode
          compiled at   Jul 17 2006
          systemid      560 (PC with Windows NT)
          relno         6400
          patch text    COLL 20.90 640 - 20.54 NT 06/06/06
          patchno       139
          intno         20020600
          running on    LEXUS Windows NT 5.2 3790 Service Pack 2 4x Intel 801586 (Mod 3 Step 4)
    12:13:59 27.05.2008   LOG: Profile          : no profile used
    12:13:59 27.05.2008   LOG: Saposcol Version  : [COLL 20.90 640 - 20.54 NT 06/06/06]
    12:13:59 27.05.2008   LOG: Working directory : D:\usr\sap\PRFCLOG
    12:13:59 27.05.2008   LOG: Allocate Counter Buffer [10000 Bytes]
    12:13:59 27.05.2008   LOG: Allocate Instance Buffer [10000 Bytes]
    12:13:59 27.05.2008   LOG: You can ignore :"Index of Title:[Disk Queue Length] not found" on Windows NT 4.0
    12:13:59 27.05.2008   LOG: Shared Memory Size: 53348.
    12:13:59 27.05.2008   LOG: Connected to existing shared memory.
    12:13:59 27.05.2008   LOG: Reused shared memory. Clearing contents.
    12:14:02 27.05.2008   LOG: Collector daemon started
    12:14:02 27.05.2008   LOG: Don't use put-file (Taken on other system)
    12:14:02 27.05.2008   LOG: Collector PID: 5092
    12:14:12 27.05.2008   LOG: Process Monitoring active.
    12:14:12 27.05.2008   LOG: searching for Process Monitoring Templates in D:\usr\sap\PRFCLOG\dev_proc
    12:14:12 27.05.2008   LOG: searching for Process Monitoring Templates in D:\usr\sap\PRFCLOG\procmon\
    12:14:12 27.05.2008   LOG: The following processes will be monitored:
    12:14:12 27.05.2008   LOG: Process:    jlaunch-DSAPINFO=B35_00_dispatcher*  for user:        SAPServiceB35
    12:14:12 27.05.2008   LOG: Process:        jlaunch-DSAPINFO=B35_00_server*  for user:        SAPServiceB35
    12:14:12 27.05.2008   LOG: Process:           jlaunch-DSAPINFO=B35_00_sdm*  for user:        SAPServiceB35
    <<<<<

  • Error:The Disk needs to be repaired

    Hopefully someone can help guide me. I have been noticing a few more spinning beach balls. Nothing dramatic but as a recent convert to Mac (about 1 year) it has me frustrated. A few months ago they got worse and disk utility said my drive was corrupted. Disk utility could not resolve it and through a suggestion I rebooted from the install disk and it repaired the drive. Now with a routine check of disk utility I received a message like below. So I used disk utility from the start up disk to repair the error successfully. Now, just rechecking two days later, it appears that the error is back. Is this something to worry about? If so, it seems I need a more robust tool to repair the disk. Any suggestions? Anyway to tell which program might be causing this? Thanks in advance for any help offered.
    Verifying volume “Macintosh HD”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    Invalid volume file count
    (It should be 673026 instead of 673027)
    Invalid volume directory count
    (It should be 174521 instead of 174520)
    The volume Macintosh HD was found corrupt and needs to be repaired.
    Error: This disk needs to be repaired. Start up your computer with another disk (such as your Mac OS X installation disc), and then use Disk Utility to repair this disk.

    Thanks for your response. I finally received my DVD from Disk Warrior in the mail, ran the program and everything seems to be fixed and running more smoothly. Thanks for the tip. Sorry it took a bit to respond back. Thanks again.

  • Leopard doesn't mount the disk with time machine backup!

    Hi friends. It's my first time in this forum, and I'm sorry by now for my poor english.
    My problem: One week ago I had some problem with hard disk, but after a visit to an Apple center and after a replacement of my disk the problem was solved.
    Now I want to restore all my file and my system preference from an external hard disk (USB LaCie 500GB) when have made a complete backup with time machine.
    But Leopard doesn't mount the disk in finder or in Utility Disco. I see it only in System Profiler. I try with my old iBook with Tiger and it mount correctly the disk! It's amazing! Please Help me, I need my file on my iMac for work!
    Thanks and merry Christmas!!!

    Similar thing for me as well. I however haven't made a backup using Time Machine.
    In preparation for Leopard, I reformatted my laptop's hard drive and installed Mac OS X 10.5.1 fresh. As soon as I plugged in my trusty 500GB external WD MyBook Pro (trying both Firewire 400 and 800 on my MacBook Pro 17"), I get the following alert:
    "Disk Repair
    The disk "500GB" was not repairable by this computer. It is being made available to you with limited functionality. you must back up your data and reformat the disk as soon as possible. OK"
    Keep in mind, I run Disk Utility and "Repair Disk" and "Repair Permissions" religiously every week and have had no issues while running under Mac OS X 10.4.11. My other laptop running the 10.4.11 doesn't report any issues with the drive at all - only when I plug it into this one running 10.5.1.
    Is there a firmware update for this drive? Is this Apple's issue? I have another LaCie Firewire drive and it works flawlessly even under 10.5.1.
    Right now, I can't even use the drive as it's Read Only (due to the error).
    In system logs:
    Feb 9 19:02:59 Cam diskarbitrationd69: unable to repair /dev/disk4s3 (status code 0x00000008).
    /dev/rdisk4s3: fsck_hfs run at Sat Feb 9 19:00:41 2008
    /dev/rdisk4s3: ** /dev/rdisk4s3 (NO WRITE)
    /dev/rdisk4s3: QUICKCHECK ONLY; FILESYSTEM DIRTY
    /dev/rdisk4s3: fsck_hfs run at Sat Feb 9 19:00:41 2008
    /dev/rdisk4s3: ** /dev/rdisk4s3
    /dev/rdisk4s3: ** Checking Journaled HFS Plus volume.
    /dev/rdisk4s3: ** Checking Extents Overflow file.
    /dev/rdisk4s3: ** Checking Catalog file.
    /dev/rdisk4s3: Incorrect number of file hard links
    /dev/rdisk4s3: ** Checking multi-linked files.
    /dev/rdisk4s3: ** Checking Catalog hierarchy.
    /dev/rdisk4s3: ** Checking Extended Attributes file.
    /dev/rdisk4s3: ** Checking volume bitmap.
    /dev/rdisk4s3: ** Checking volume information.
    /dev/rdisk4s3: ** Repairing volume.
    /dev/rdisk4s3: ** The volume 500GB could not be repaired.
    The drive is reported to be "Ok" when running Disk Repair on other machines not running Leopard. As a test, I just "upgraded" my wife's laptop to Leopard and now I have the same issue on that machine.
    Help.

  • "The device drained its buffer without burn underrun protection"

    I see so many postings about this but no answers?!?!
    I am trying to burn a movie made with iMovie HD to a dvd with my superdrive (details on the drive below). The DVD is Office Depot generic (not the best I know) DVD-R media. I have tried burning it with Dragon Burn and the mac disk utility, and keep getting the same error:
    "The device drained its buffer without burn underrun protection"
    How do I fix this? The movie is a 1.7 gig .img file . I have also tried burning it straight from iDVD and to know avail, same error. Suggestions?
    Here is my drive info.
    SONY DVD RW DW-U10A:
    Manufacturer: SONY
    Model: SONY DVD RW DW-U10A
    Revision: A43h
    Serial Number: EAB86043
    Drive Type: CD-RW/DVD-RW
    Disc Burning: Apple Supported/Shipped
    Removable Media: Yes
    Detachable Drive: No
    Protocol: ATAPI
    Unit Number: 0
    Socket Type: Internal

    Welcome to iDVD Discussions.
    How do I fix this?
    Suggest you create a disc image and then burn the DVD. File/Save as Disc Image...
    http://docs.info.apple.com/article.html?path=iDVD/6.0/en/18.html
    http://www.kenstone.net/fcphomepage/image_to_diskstone.html
    This will isolate any encoding/burning issues you may encounter. Once the disc image is created, double-click the .img and burn the virtual disc that should appear on your desktop, using Toast to burn the DVD. Disk Utility to burn the .img file. Usually, you can select a burning speed in Disk Utility.
    There are variations to this process based on which OS X you are using...
    Open Disk Utility (in Utilities folder in Applications folder), click on the virtual disc (maybe the .img) in the left-hand window. Click the Burn icon. A new window should drop down and your SuperDrive tray will open after clicking the Burn icon. Insert a recordable DVD. (Verbatim DVD-R preferred by me.) Click the Close button. Wait. Select a burn speed. If you hold your mouse cursor over the pop-up it says: "Select a slower speed to work around burn failures," so select 4x or slower for best results. Then click the Burn button.
    -->If the virtual disk selection won't allow you to click the Burn icon, use the .img file instead. This may have changed in 10.3.9 and did change in Tiger.
    Also, you can use DVD Player to play the virtual disk to check your iDVD project before burning to DVD. Launch DVD Player. File/Open VIDEO_TS (Open DVD Media... in Player 4.6). Find the VIDEO_TS folder and open that. (The audio folder is for DVD-Audio disks.)
    http://docs.info.apple.com/article.html?artnum=93006

  • Disk Partition, Dynamic Buffer Problems

    My 3000 K100 has been sitting unused for over a year while I went back to my (very) old 486 that actually works. The dynamic buffer warning is constant, with frequent SEVERE warnings. When this happens, I do an instant backup, which buys me a little time, but I expect the thing to lock up any time now. I initially did a base backup, which I now know should not have done. I've read all the posts on the subject and thought I'd try shrinking my D drive (which worked) and expanding C (which was not allowed). Because the PC came with software installed, I have no system disks, and my warranty has expired, so I have no faith in Lenovo correcting their problem. I tried making a backup of C, but many files were copied without their associated properties, and I fear may not work correctly if I rely on them as restore files. Can anyone steer me to the 3 fix disks, or any other low cost (or better yet, free) solution? I'd be most grateful for your help. If not, maybe I'll just reformat the drive and install XP instead (sigh).

     What a mess. I got the two disk re-partitioning disk that lenovo came out with. thanks to Mark.  I had the Vista disk that came with my PC.
    I have run the disk three times trying to get a clean install of the complete Hard Drive reformation. Most things are working OK now but what a task it has been.  Start up is slower than ever before. I get a Windows Experience index of 1 for Areo and 3D on start up but it goes up to 3.1 after retesting.
    What does this have to do with Dynamic Buffer?
    The repartitioning to one big C drive was suppose to fix that but two days after I started One Key recovery back up I started getting the warnings again.  I have not deleted One Key but I will never start the base back up. I have the disks for recovering the System and I have files backed up on an external HD.
    3000 K-100 3gigram, 500gigHD,
    type 10005
    model 57061330
    Last support case # wn018143

  • IPod Error Message: "The disk could not be read from or written to."

    Hello!
    I was syncing my sister's video iPod (30GB) and this error message pops up "Attempting to copy to the disk. "SARAH'S IPO" failed. The disk could not be read from or written to."
    I have restored it three times already, but once it starts putting the music and files back onto the iPod it pops up with that error message. I have updated to the latest version of iTunes and iPod software available. My OS is Windows XP.
    Is this something serious? Will I be able to fix it myself or will I need to send it in to be fixed by Apple? Will that be expensive? We didn’t get the Apple replacement plan. D=
    Any help would be greatly appreciated. Thank you in advance. ^_^
    PowerBook G4   Mac OS X (10.4.3)   15" PowerBook 1.5 GHz PowerPC G4, 1.5GB RAM - Windows XP with iPod 5 Generation

    Okay I went thru that entire list and here's what I got...
    (1) My OS is XP and is running fine.
    (2) I've updated my windows
    (3) I don't know of any software that might be interfering.
    (4) There are no damaged files.
    (5) My Windows hard-drive is not damaged and I've tried restoring my iPod's disk thru iTunes but it still doesn't work.
    (6) I don't have an iPod photo and I can't find the folder to delete the cache if if I did.
    (7) The USB cord is firmly connected into my USB port and my iPod
    (8) My music is on my external hard-drive so I need to keep 3rd-party hardware connected
    (9) I will try another USB cord to see if that works.
    Is there anything else that I can do? Can Apple fix this?
    Please let me know.

  • When I update my nano ipod I get an error message "User ipod cannot be updated.  The disk couldnot be read from or written to."   How can I overcome this error message.

    In the iTunes window, when I update my nano ipod, I get an error message "User ipod cannot be updated.  The disk could not be read from or written to."   How can I overcome this error message.

    Hello there dilip77707,
    It sounds like you are getting this error message that your iPod cannot be read from or written to when you are trying to update your iPod Nano. I recommend the troubleshooting from the following article to help you get that resolved. Its pretty straight forward, just start at the top and work your way down as needed:
     'Disk cannot be read from or written to' when syncing iPod or 'Firmware update failure' error when updating or restoring iPod
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • "The disk could not be read from or written to"??

    When I try to sync my ipod it gives me following error message "Attempting to copy to the disk 'My Ipod' failed. The disk could not be read from or written to."
    Have not reset or restored it yet, wondering if there is anything I can do that doesn't involve me deleting all the songs on my ipod.
    5th Gen 80g Ipod, G5 Imac   Mac OS X (10.4.9)  

    See if this troubleshooting article helps.
    Disk cannot be read from or written to error syncing iPod in iTunes.

  • Attempting to copy to the disk Ipod failed. the disk could not be read from

    Keep getting error message Attempting to copy to the disk.....Ipod failed. The disk could not be read from or written to. I can copy to Ipod from my laptop however, can not sync with my G-4 tower. I keep my library on an external HD Lacie d2. I've tried all the possibilities from the support page to no avail.. Need help... When error refers to disk is it referring to my external HD

    Hi c2xist,
    And you did follow all of the suggestions from this article?:
    "Disk cannot be read from or written to" when syncing iPod
    Also, you could go through these iPod troubleshooting steps, and see if they are of any help:
    The Five Rs
    -Kylene

  • 9.1.1 sync problems: "The disk could not be read from or written to."

    Using OSX 10.6.3 and upgraded to iTunes 9.1.1. Once I did, I keep getting the following error message: "Attempting to copy to the disk [my ipod] failed. The disk could not be read from or written to." This is followed by another error message: "iTunes could not copy {name of file} to the iPod {iPod name} because the file could not be read or written."
    I tried deleting the files mentioned in the error message, but then the message returns with the name of a different file. At this rate, I'll be deleting all my files!
    I tried checking everything on the Knowledge Base article: http://support.apple.com/kb/HT1207
    I tried restoring my iPod (twice), but it didn't help.
    All my software is up to date. I haven't added any new software since I upgraded iTunes.
    NOW...when I try to sync my iPhone, I get the same error message.
    What's going on, and can anyone help?
    This is very annoying since I can't sync my iPhone which I need or my iPod which I would like.

    ArizonaDAK wrote:
    "iTunes could not copy {name of file} to the iPod {iPod name} because the file could not be read or written."
    check if you have read & write permissions for your iTunes music folder. in finder, right-click on it and +get info+. unlock the little padlock (you may have to enter your admin password) and change the permission settings. next, click on the little gear-shaped icon and +apply to enclosed items+ like so
    you may also give everyone read & write access. if this doesn't help, try the same on your iTunes folder (not just the iTunes music folder).
    if that make no difference, try reinstalling iTunes. click here and follow the instructions. next, download a fresh copy from here: http://www.apple.com/itunes/download/.
    you might also try to _*remove and reinstall the Apple Mobile Device Service*_
    JGG
    edited by the Jolly Green Giant (where Green stands for environmentally friendly)

  • IPod cannot be synced. The disk could not be read or written to.

    I have...
    G5 ipod video 30Gb formated to PC
    iBook G3 600MHz
    iTunes 7.1 (59)
    iPhoto 4.03
    I use my ipod to contain all my videos, photos and music manually and nothing stored on the iBook itself, as it only has a small hard drive. I have a large amount of photos that I have in iphoto (a total of 3254 photos and 60 folders!) which I am using whilst travelling the world. I have recently started syncing photos to the ipod as a backup, also adding a copy of full res photos. This syncs fine and I have all photos on my ipod, but when I add more photos to iphoto and then plug in the ipod it will start to sync though itunes, but then will come up with an error stating "The ipod "NAME OF IPOD" cannot be synced. The disk could not be read from or written to."
    The ipod still has all the photos it originally had, but not the new ones.
    I have tried deleting the file that is in the library that contains the information file, this forces the ipod to re sync and start all over again with adding the photos, which it will add the new photos, but the probelm will happen again as soon as more photos are added through iphoto!
    Can anyone give any advice, I really can't format the ipod and start over agaian as I will lose all my music etc and I don't have enough room to store them elsewhere!!!
    Please any help please! I really need to back these files up incase something goes wrong with the computer, then I will lose all my pictures!
    Help!
    Thanks
    Rob

    Hi Rob!
    First off, it might be worth upgrading to the latest iTunes version, which is 7.1(15) (or at least I think that's what it is on a Mac... for Windows, it's 7.1.1.5).
    Regardless, you can install the latest version of iTunes here:
    Download iTunes - 7.1.1.5
    Also, if that doesn't seem to help with anything, have you seen the suggestions in this article?:
    "Disk cannot be read from or written to" when syncing iPod
    -Kylene

Maybe you are looking for

  • Job opportunities with Flex

    We have an immediate need for a Sr. FLEX Developer with a passion for quality design. This is a CONTRACT POSITION for 6 months with our client in SAN JOSE, CA. In-Person interview is required after a phone interview. Job Description: Participate in t

  • Old Domain Name showing in User Profiles

    Sharepoint User Profile Sync is showing some users with our Old Domain name (from years ago).  This domain name is NOT  in our Active Directory.  I'm guessing that the profiles that show the old domain name must have been in our Sharepoint 2007 and g

  • Move entire iPhoto library from iMac 10.6.8 to new iMac 10.9.4

    I'm trying to move my iPhoto library from old iMac 10.6.8 to new iMac 10.9.4. I have connected the 2 Macs with Ethernet cable as suggested in post #23676031 but cannot find a way to have the connections show up on the screens so I can make the move (

  • Keynote's transitions and effect in Powerpoint

    Does anybody knows where I can find a list of Slide Transitions and Build effects of Keynote that really works in Powerpoint ?

  • Exported keynote to quicktime -- how to advance?

    Hi, I have a keynote file that is to be played on a windows platform. So it has been successfully exported as mov and got a nice advance forwarding slide control.. I would like to know what if I need to jump back to the previous slide in the mov file