Syncing: Free Space discrepancy

Hope there is a solution for this other than, "wipe it and load everything all over again."
Somewhere in 4.2 I think, a Free Space discrepancy has developed in my iPad. When performing a sync, the Free Space decreases by about .50 GB while in the middle of the sync, but then increases back to normal when the sync is complete.
This did not happen before with the iPad.
The problem is still there in 4.3 version. My iPhone does not have this problem and it has also been upgraded through 4.2 and now 4.3 version.
Thanks

Hi,
If you store photos on the iPad, try deleting the cache.
iTunes: Understanding the iPod Photo Cache folder
Carolyn

Similar Messages

  • Ipad and itunes free space discrepancy

    Hi,
    I'm trying to sync new itunes purchases onto my ipad. My ipad tells me there is 12 GB left but itunes is convinced there is only 1GB free space. The former must be right because it has automatically removed a whole bunch of watched TV shows.
    How can I correct it so it will let me sync?
    Ta
    C

    HI,
    To see exactly how much free storage space is available... connect your iPad to your computer. In the iTunes window select the Summary tab. At the bottom of that window you'll see Capacity and Free.
    Try resetting your iPad. Press and hold both the Sleep/Wake button and the Home button for at least ten seconds, until the Apple logo appears.
    Restart both your G5 and your iPad. Try syncing again.
    Carolyn

  • Hard drive free space discrepancy

    I have an 11 inch Macbook Air with a 120GB SSD and I am running OS X Lion 10.7.5.
    Every so often I get messages indicating my hard drive is nearly full. Since it is a small hard drive I never thought much of it and just deleted a movie or two I put on it for when I travel. But lately I realized that I keep all my music, photos, and bulk of my movie files on an external drive, so there really isn’t much on my computer.
    When I add up all the files listed under My Mac HD in the finder, I get 62 GB. Add in the operating system and I come up with 75 GB of the SSD used. When I look at the storage summary on “About this Mac”, it says I am using 94 GB. There is about a 19 GB discrepancy. Does anyone know what could cause this and where 19 GB of data can be hiding?
    Hard drive free space discrepancy

    Use a tool like OmniDiskSweeper 1.8 to find what's on the disk, where, and how large.
    Freeing Up Space on The Hard Drive
      1. See Lion's Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.

  • Free space discrepancy

    Hi,
    For a particular tablespace I am querying dba_segments view to calculate the utilized space size of that tablespace:
    SQL> select tablespace_name,sum(bytes)/1024/1024/1024 gb
    from dba_segments
    where tablespace_name='TBS1'
    group by tablespace_name;
    The output is: *74.48*
    To find out the total allocated size of this tablespace I have used this:
    SQL>select tablespace_name, sum(bytes)/1024/1024/1024 gb
    from dba_data_files
    where tablespace_name='TBS1'
    group by tablespace_name;
    The output is: *77.43*
    Then I queried dba_free_space to find out the free space of that tablespace using this:
    SQL> select tablespace_name,sum(bytes)/1024/1024/1024 gb
    from dba_free_space
    where tablespace_name='TBS1'
    group by tablespace_name;
    The output is: *21.8*
    Now here I am not able to understand that, why dba_free_space returned 21.8 GB as free space instead of 2.95 GB (calculated by subtracting the value returned by dba_segments from dba_data_files).
    DB Version: 10.2.0.1, 64 bit
    OS Platform: Linux
    Thanks for your time.
    Regards,
    Joy

    Hi,
    Here i will give the approach how to troubleshoot this kind of issue.
    find the dba_segments definination:
    ======================
    SQL> set long 100000
    SQL> select dbms_metadata.get_ddl('VIEW','DBA_SEGMENTS','SYS') FROM DUAL;
    CREATE OR REPLACE FORCE VIEW "SYS"."DBA_SEGMENTS" ("OWNER", "SEGMENT_NAME", "P
    ARTITION_NAME", "SEGMENT_TYPE", "TABLESPACE_NAME", "HEADER_FILE", "HEADER_BLOCK"
    , "BYTES", "BLOCKS", "EXTENTS", "INITIAL_EXTENT", "NEXT_EXTENT", "MIN_EXTENTS",
    "MAX_EXTENTS", "PCT_INCREASE", "FREELISTS", "FREELIST_GROUPS", "RELATIVE_FNO", "
    BUFFER_POOL") AS
    select owner, segment_name, partition_name, segment_type, tablespace_name,
    header_file, header_block,
    decode(bitand(segment_flags, 131072), 131072, blocks,
    (decode(bitand(segment_flags,1),1,
    dbms_space_admin.segment_number_blocks(tablespace_id, relative_fno,
    header_block, segment_type_id, buffer_pool_id, segment_flags,
    segment_objd, blocks), blocks)))*blocksize,
    decode(bitand(segment_flags, 131072), 131072, blocks,
    (decode(bitand(segment_flags,1),1,
    dbms_space_admin.segment_number_blocks(tablespace_id, relative_fno,
    header_block, segment_type_id, buffer_pool_id, segment_flags,
    segment_objd, blocks), blocks))),
    decode(bitand(segment_flags, 131072), 131072, extents,
    (decode(bitand(segment_flags,1),1,
    dbms_space_admin.segment_number_extents(tablespace_id, relative_fno,
    header_block, segment_type_id, buffer_pool_id, segment_flags,
    segment_objd, extents) , extents))),
    initial_extent, next_extent, min_extents, max_extents, pct_increase,
    freelists, freelist_groups, relative_fno,
    decode(buffer_pool_id, 0, 'DEFAULT', 1, 'KEEP', 2, 'RECYCLE', NULL)
    from sys_dba_segs
    find the dba_free-space definination:
    ======================
    SQL>
    SQL> select dbms_metadata.get_ddl('VIEW','DBA_FREE_SPACE','SYS') FROM DUAL;
    CREATE OR REPLACE FORCE VIEW "SYS"."DBA_FREE_SPACE" ("TABLESPACE_NAME", "FILE_
    ID", "BLOCK_ID", "BYTES", "BLOCKS", "RELATIVE_FNO") AS
    select ts.name, fi.file#, f.block#,
    f.length * ts.blocksize, f.length, f.file#
    from sys.ts$ ts, sys.fet$ f, sys.file$ fi
    where ts.ts# = f.ts#
    and f.ts# = fi.ts#
    and f.file# = fi.relfile#
    and ts.bitmapped = 0
    union all
    select /*+ ordered use_nl(f) use_nl(fi) */
    ts.name, fi.file#, f.ktfbfebno,
    f.ktfbfeblks * ts.blocksize, f.ktfbfeblks, f.ktfbfefno
    from sys.ts$ ts, sys.x$ktfbfe f, sys.file$ fi
    where ts.ts# = f.ktfbfetsn
    and f.ktfbfetsn = fi.ts#
    and f.ktfbfefno = fi.relfile#
    and ts.bitmapped <> 0 and ts.online$ in (1,4) and ts.contents$ = 0
    union all
    select /*+ ordered use_nl(u) use_nl(fi) */
    ts.name, fi.file#, u.ktfbuebno,
    u.ktfbueblks * ts.blocksize, u.ktfbueblks, u.ktfbuefno
    from sys.recyclebin$ rb, sys.ts$ ts, sys.x$ktfbue u, sys.file$ fi
    where ts.ts# = rb.ts#
    and rb.ts# = fi.ts#
    and u.ktfbuefno = fi.relfile#
    and u.ktfbuesegtsn = rb.ts#
    and u.ktfbuesegfno = rb.file#
    and u.ktfbuesegbno = rb.block#
    and ts.bitmapped <> 0 and ts.online$ in (1,4) and ts.contents$ = 0
    union all
    select ts.name, fi.file#, u.block#,
    u.length * ts.blocksize, u.length, u.file#
    from sys.ts$ ts, sys.uet$ u, sys.file$ fi, sys.recyclebin$ rb
    where ts.ts# = u.ts#
    and u.ts# = fi.ts#
    and u.segfile# = fi.relfile#
    and u.ts# = rb.ts#
    and u.segfile# = rb.file#
    and u.segblock# = rb.block#
    and ts.bitmapped = 0
    DBA_FREE_SPACE is taking value from sys.recyclebin$ rb, sys.ts$ ts, sys.x$ktfbue u, sys.file$ fi
    DBA_SGEMNETS taking value from sys_dba_segs
    Solution:
    =====
    1) How the value will be populated to these view ?
    When you collect the stats then the value will be populated to those table.
    2) From where these view DBS_SEGMENTS derived ?
    From base tables
    So, Please collect the stats on fixed table then let me know the result
    Kind Regards,
    Rakesh jayappa

  • Difference between free space reported by my iPod Touch and iTunes

    Why is so different the free space reported by my iPod Touch and iTunes?, which of both devices is reporting the correct free space?
    also, I restored my iPod two days ago because "other" space was too big (almost a gig),
    three days later, is over 500Mb, why is this happening?, thanks.
    On the pic you can see the difference between the free space reported by my iPod (403 MB) and iTunes (0.29Gb)

    I took the pic when I finished syncing, so that shouldn't be an issue, no matter how many times I sync, free space is never equal (iPod always reports more space).
    I'm running iOS 5.0.1 and I restored three days ago because iTunes said I was out of space to sync (and my iPod reported over 100Mb free).
    As you can see from the pic, I only have 9 apps, I mainly use this iPod for music. I'm using the AAC option to fit more songs.
    I really like this iPod, but as a music player. I had a first generation iPod Touch and "other" space never was an issue, I still have warranty, but I don't know if I should take this iPod to the store because of this, because it seems to be a software issue.
    Just deleted my emails from the iPod and gained 10 Mb, I don't know what else can I do.

  • Ipod touch won't sync all of the music even though there is enough free space

    my ipod touch won't sync all of the music even though there is enough free space. what can i do to make sure all of the music syncs?

    Seen this tech note?
    Syncing music to iPod or iPhone - Apple Support

  • IPod touch cannot be synced because there is not enough free space to hold all of the items in the iTunes Library

    Hi, I have just transferred my whole iTunes library from my old computer to my new one and am trying to sync my iPod to the new one. However I get an error message saying "iPod touch cannot be synced because there is not enough free space to hold all of the items in the iTunes Library (additional 5.38GB required). I currently have 8.5GB free on my iPod so I don't understand why it cannot sync.

    Hey Georgiarose94, If what's going on, is what I think it is, when you sync the information it's over written, it can take 2 to 3 times more space the get the info on your iPod, once it's there the info only occupies the space it needs. Kind if of like moving, when you first step in the room with boxes of stuff there's no room. But after you get everything put away all is well. If you haven't already, connect your iPod to your computer, from your iPod Summary page, go down to Options and check reduce bit rate to (select 128 kbps). (Wording maybe a little different). Will greatly reduce memory space needed on your iPod, and you really do not hear the difference in sound quality. Other option, go to music and select manual so you can pick which music you place on the iPod. You need to reduce by 5.38GB of information to finish your download. Hope this helps. Cheers.

  • Question I have a dilemma . I added a lot of songs in my iTunes now when I synced my ipod this message appear "Elma's ipod cannot be synced because there is not enough free space to hold all the items in the iTunes library (additiona

    I addesd a lot of songs in my itunes, now when I synced my ipod this message appear "elma's ipod cannot be synced because there is not enough free space to hold all the items in the itunes library (additional 382m is required). Then I uncheck a lot of song and synced my ipod again same message appeared. Do I need to buy a new ipod with more memories? Somebody told me to check apply after I unchecked some of the songs but I cannot find the word APPLY. please help I'm not a very technical person.

    The Sync button becomes the Apply button, if you change the iPod's settings in iTunes.  If you are only unchecking songs in the iTunes music library, you click on the Sync button.
    When you select the iPod in iTunes, you see the iPod's Summary screen on the main part of the iTunes window.  There is a checkbox there for Sync only checked songs.  Did you check that checkbox?  If you want iTunes to ignore the songs you unchecked when syncing your iPod, that setting needs to be enabled.  If you change that setting, you'll see the the Sync botton has changed to Apply.  Click Apply.
    That method of unchecking songs works, but it may become annoying over time, as you need to uncheck more and more songs.  If you want advice on some other more convenient ways to make it work, you can post back.

  • My ipod cannot be synced because there is not enough free space to hold all the items in the itunes library(additional 2.35GB required) but it shows 5.85GB free space,  there was no problem until i got a new laptop.

    "The ipod **** cannot be synced becaue there is not enough free space to hold all the items in the itunes library (additional 2.35 GB required)"  but it shows 5.89 GB free. I recently bought a new laptop, and gave away my old one after deleting everything off it, including itunes, the problem started then,

    Hi Terri 4514,
    If you are having a "free space" alert when you try to sync, you may find the following article helpful:
    iOS: "Not enough free space" alert when trying to sync
    http://support.apple.com/kb/ts1503
    Regards,
    - Brenden

  • "The iPod ... cannot be synced because there is not enough free space.."

    Error Message:
    "The iPod... cannot be synced because there is not enough free space to hold all of the items in the iTunes library (additional 21.62 GB required)."
    I moved my iTunes library FROM a Win 7 32bit HD to a new Win 7 32bit HD.
    On the old HD  iTunes  uses 145GB of HD space. 
    On the new HD iTunes uses  145GB of HD space.
    On both instances of iTunes I have selected "Convert higher bit rate songs to 128 kbps AAC"
    My iTouch is a 3rd gen. 64GB unit.
    In the past I would only take 75% of the available space. Now I am short 22GB.
         What am I missing?
    TIA,

    Appears to be fixed.
    Moved all music recorded at 128bit or less to different location.
    Moved video files to different location.
    Synced sections of iTunes collection individually: Only Music, then Podcasts, etc.
    Seems to be working fine.  Apps also came over without changes.
    ????  Only thing missing is my PLAYLISTS.
    ????    Someone know where they reside on my old HD list and why they did not come over?

  • The iPod "TAMI DUGARD's iPod" cannot be synced because there is not enough free space to hold all of the selected items (additional 146.5 MB required). this was from my ipod mini trying to sync and it wont let me sync so... could u help me i really needit

    I really need help because my ipod mini isnt working correctly my mom just gave it to me and The iPod “TAMI DUGARD’s iPod” cannot be synced because there is not enough free space to hold all of the selected items (additional 146.5 MB required). it says this. Over and over when i try to sync it too my itunes what does this mean and its a 4gb

    It means you try to sync an amount of content to your iPod Mini that exceeds for 4 GB, or the amount of space that is available on the iPod.  See this article for more details.
    How to sync music to your iPod when your library is bigger than your iPod storage space
    B-rock

  • Bought drakes new album and connected my ipod to my computer. When the ipod was trying to sync a box popped up that read Ipod cannot be synced because there is not enough free space to hold all of the items in the itunes library (additional 142.2 mb)

    bought drakes new album and connected my ipod to my computer. When the ipod was trying to sync, a box popped up that read Ipod cannot be synced because there is not enough free space to hold all of the items in the itunes library (additional 142.2 mb required)

    Hi Terri 4514,
    If you are having a "free space" alert when you try to sync, you may find the following article helpful:
    iOS: "Not enough free space" alert when trying to sync
    http://support.apple.com/kb/ts1503
    Regards,
    - Brenden

  • My iPhone wont sync my music from iTunes, all updated software and plenty of GB free space.. what's going on? It says error (13019).

    Just recently I bought a bunch of new albums on iTunes, and when I plugged my iPhone 4 in to sync the music over, it went through all 5 steps in the viewer box, but at the end it said, "The iPhone "andrea's iPhone" could not be synced. An unknown error has occured (13019)."
    I have no idea what this means, all my software is up to date and my phone still has 8.6GB of free space left (it's a 32GB) and I'm only trying to add 20ish songs.
    Anyone have this sort of issue or error warning before? I figured I'll have to go into an Apple store to really sort this all out, but thought someone on here might have dealt with something like this before.
    Please help!

    http://support.apple.com/kb/TS2830

  • IPod can't be synced  because there is not enough free space?

    At first, my iPod couldn't be synced because 'playlists doesn't exist'(there's another forum about this and apparently this comment helped a lot of people...
    "Click on your 'DEVICE' on the left in ITUNES,
    click the music tab and where it says Sync Music, hit the all songs and playlist radio button.... worked for me, hope that helps...."
    So I did just that, but then songs still won't go in my iPod because...
    When I click device and go to the music tab, I clicked 'all songs and playlists' then clicked apply. This message shows up:'...cannot be synced because there is not enough free space to hold all of the items in the iTunes library (2.99 GB required, 51.2 MB available)'
    By the way, my iPod's supposed to store 1,000 songs/4 GB, and at this moment, my iTunes has about 700-800 something songs, that only takes up about 2-3GB.
    At the bottom part in device, it says this...
    Capacity - 3.77 GB
    Audio - 851 KB
    Other - 3.71 GB
    Free Space - 51.2 MB
    I basically don't get it. Isn't it supposed to store 4 GB and more than 2-3 GB? I feel so stupid, but anyway...
    Should I delete more songs or is there really something wrong? Before my songs disappeared in my iPod, all the songs could fit into it, even more than what I have in my iTunes now. What's wrong?
    Message was edited by: 8uh7yg

    When you say restore it, do you mean restore the one in iTunes or restore my iPod itself? The press the circle button then press menu for a long time in my iPod? I already did that.
    It says 174.32. I only have about 700 something songs because I tried deleting some to see if deleting some songs would help fix the problem but no. It's strange because before all my songs and playlists disappeared in my iPod, I even had more songs in my iPod than what I have in iTunes now.
    About 15-30 minutes ago, I was able to put only about 9-10 songs in my iPod because it says it doesn't have enough free space. It's so strange, it really frustrates me.

  • My ipod touch say cannot be synced because there is not enough free space to hold all of the items in the library but I have 10 gb of space left

    My ipod touch shows 10.1 gb of memory, but when I try to transfer a movie from my computer to ipod touch I get a error message that says "Cannot be synced because there is not enough free space to hold all of the items in the itunes library, additional 5.81 gb required. 
    I have had as many as 3-4 movies on here plus my music and had no problem, there are no other movies on my ipod.  Wasssup???  I am 66 years old, can build a house or a car engine, but for the life of me I don't understand this stuff....Help!!

    Unless the move is about 16 GB, you are trying to sync more that the movie to your iPod. I would look carefull at awhat is checked to sync to the iPod.
    Also how big is the "other" category as shown in the colored bargraph in iTunes?

Maybe you are looking for

  • When I try to go to certain websites, I get redirected to a different website. How can I force Firefox to go to the exact website I type in?

    Example: I type in: http://www.match.com/ It redirects me to: http://jp.match.com/index.aspx?tcid=1097 This is most irritating. Everything turns up in Japanese, and I don't speak or write Japanese.

  • Ipad deleted all the music on it's own.

    Listening to iPad and the music stopped playing. Tried to play anther song and there was no music on the iPad. It says "no items" when you go to a song list. The songs on the PC it was synced to disappeared as well. When you click any songs to play t

  • Elements and Tablets

    Does anyone know if you can upload your current Elements (vs 9) to a tablet as long as the tablet has suffient processor?  Does anyone know a specific tablet that will work? 

  • Excessive Heat from 23" Displays

    Has anyone heard of excessive heat coming from the 23" display when you have 2 attached to a new G5? The heat comes directly from the screens. This is not for me but a friend has this problem and has asked if I knew of anyone that could help.

  • Easier way to check day of the week

    Hi, I was wondering if there's a easier way where I can check the day of the week on my MacBook Pro (AKA, 1/30/13 is a  Wednesday).It takes time to open up the calender app so I was wondering if there's a easier way to check like Windows system where