Fragmentation. Inserts not using free space

Hi,
We are running Oracle version 10.2.04, and we have a tablespace with locally managed, uniform, extents with ASSM set to manual. As part of our ETL process, we delete rows one at a time in a loop and then commit every 10,000 rows. We then insert using the same method.
Can anyone think of reasons why the inserts would not use the free space from the deletion statements?
I'm going to try and run a few tests, so any recommendations for this would be appreciated.
Thanks,
Rob

Thank you both for your comments. I have now performed some testing and concluded that it was due to the PCTUSED parameter being set to 40 which has caused the lack of space re-use. I did some testing and here are the results:
The reason for using the MOD function is because I wanted to delete from different blocks and not just the same one because they are ordered by the sequence numner (PK_COL in my example).
Test 1
Manual SSM
Default PCTFREE and PCTUSED
Look at the NUM_ROWS and BLOCKS values
dba@TEST> create table dba.rj_del_ins_test
  2  tablespace Tbs_tables_x128K
  3  as
  4  select *
  5  from table
  6  where PK_COL > 1135268669
  7  and PK_COL is not null
  8  order by PK_COL ;
Table created.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                         1      84217        849            0          0         141           0
dba@TEST> delete from dba.rj_del_ins_test
  2  where PK_COL > 1135268669
  3  and mod(PK_COL ,20) = 10;
4143 rows deleted.
dba@TEST> commit;
Commit complete.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                         1      80074        849            0          0         141           0
dba@TEST>
dba@TEST> insert into dba.rj_del_ins_test
  2  select *
  3  from table
  4  where PK_COL > 1135268669
  5  and PK_COL is not null
  6  and mod(PK_COL ,20) = 6;
4277 rows created.
dba@TEST> commit;
Commit complete.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                         1      84351        892            0          0         141           0TEST 2
New tablespace created with same extent size as previous tablespace being used for TEST1
One change: Automatic Segment Space Management (ASSM) is set to AUTO instead of manual, as in TEST1
As you can see from the results below, we have the same problem here where the deleted space is not being reused when the new inserts come along
dba@TEST> create table dba.rj_del_ins_test
  2  tablespace rj_test_X128K
  3  as
  4  select *
  5  from table
  6  where PK_COL > 1135268669
  7  and PK_COL is not null;
Table created.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                                84217        868            0          0         141           0
dba@TEST> delete from dba.rj_del_ins_test
  2  where PK_COL > 1135268669
  3  and mod(PK_COL ,20) = 10;
4143 rows deleted.
dba@TEST> commit;
Commit complete.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                                80074        868            0          0         141           0
dba@TEST> insert into dba.rj_del_ins_test
  2  select *
  3  from table
  4  where PK_COL > 1135268669
  5  and PK_COL is not null
  6  and mod(PK_COL ,20) = 6;
4277 rows created.
dba@TEST> commit;
Commit complete.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                                84351        911            0          0         141           0TEST 3
Manual segment space management
Specifying the PCTFREE and PCTUSED parameters for the table being created
The first sign that something has changed is the number of blocks for the same number of rows is reduced; we are only using 764 instead of 868
Secondly, upon re-inserting the rows we are only using 3 additional blocks which shows that we are in fact re-using the space we freed up
dba@TEST> create table dba.rj_del_ins_test PCTFREE 0 PCTUSED 99
  2  tablespace Tbs_tables_X128K
  3  as
  4  select *
  5  from table
  6  where PK_COL > 1135268669
  7  and PK_COL is not null;
Table created.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                         1      84217        764            0          0         141           0
dba@TEST> delete from dba.rj_del_ins_test
  2  where PK_COL > 1135268669
  3  and mod(PK_COL ,20) = 10;
4143 rows deleted.
dba@TEST> commit;
Commit complete.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                         1      80074        764            0          0         141           0
dba@TEST> insert into dba.rj_del_ins_test
  2  select *
  3  from table
  4  where PK_COL > 1135268669
  5  and PK_COL is not null
  6  and mod(PK_COL ,20) = 6;
4277 rows created.
dba@TEST> commit;
Commit complete.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                         1      84351        767            0          0         141           0TEST 4
Automatic segment space management, using same tablespace as in TEST2
PCTFREE and PCTUSED has been changed to be the same as in TEST2
The result of this shows that the space is not re-used when using manual segment space management
dba@TEST> create table dba.rj_del_ins_test PCTFREE 0 PCTUSED 99
  2  tablespace rj_test_X128K
  3  as
  4  select *
  5  from table
  6  where PK_COL > 1135268669
  7  and PK_COL is not null;
Table created.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                                84217        782            0          0         141           0
dba@TEST> delete from dba.rj_del_ins_test
  2  where PK_COL > 1135268669
  3  and mod(PK_COL ,20) = 10;
4143 rows deleted.
dba@TEST> commit;
Commit complete.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                                80074        782            0          0         141           0
dba@TEST> insert into dba.rj_del_ins_test
  2  select *
  3  from table
  4  where PK_COL > 1135268669
  5  and PK_COL is not null
  6  and mod(PK_COL ,20) = 6;
4277 rows created.
dba@TEST> commit;
Commit complete.
dba@TEST> exec dbms_stats.gather_table_stats('DBA', tabname=>'RJ_DEL_INS_TEST',estimate_percent => 100, method_opt => 'FOR ALL COLUMNS SIZE 1', cascade=>TRUE);
PL/SQL procedure successfully completed.
dba@TEST> select TABLE_NAME, FREELISTS, NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_SPACE, AVG_ROW_LEN, NUM_FREELIST_BLOCKS
  2  from dba_tables
  3  where table_name = 'RJ_DEL_INS_TEST';
TABLE_NAME                      FREELISTS   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE AVG_ROW_LEN NUM_FREELIST_BLOCKS
RJ_DEL_INS_TEST                                84351        823            0          0         141           0So, that does prove one point that you are right, Robert. However, can you think of why when using AUTO segment space management we don't utilitize the space as efficiently as with manual SSM?
Thanks,
Rob

Similar Messages

  • TS1503 After an update on my iPhone 4, (I updated using my MacBook Pro) I first received the message, iTunes was not able to load all of iTunes library back on your phone, not enough free space on your phone. (not an exact quote, essentially the same mean

    The complete iTunes library was already on my iPhone 4. Why would it all not go back on? It left out around 4 or 5 songs from my play list. How do I get them back on my iPhone?
    Note: All software on both devices is up to date.
    Then, I tried to sync my iPhone to my MacBook Pro. I got the message, cannot sync your iPhone because there is not enough free space in the iTunes library (not exact quote, but same meaning).
    I researched how to get more free space on my phone which might 'supposedly' alleviate the above issues. I removed some less used apps, and some photos and videos from my phone. Then, I tried backing up again. I still got the message there wasn't enough free space on my phone, and the missing songs from the iTunes library were not returned to my phone. I gave another try at syncing my iPhone. I still got the same message that the phone couldn't be synced because  there wasn't enough free space in the iTunes library.
    Any suggestions on how to remedy these problems will be appreciated!
    BTW... I read a suggestion on the internet to restore my phone (I did  this recently when something went wrong during a phone update and the whole process went 'hey-wire', shutting down before the update was complete. However, at that time, all of my songs and apps were still on my phone and stored in the iTunes library.) If I restore my iPhone now, will the apps and songs no longer on my phone be lost?
    Sorry there are so many questions within the same 'New Discussion' thread I'm starting! But, I think all of these issues are somehow related.
    Thanks!

    I Have fumbled all day to this resolved, I'll run the battery down and see what happens afterwards. This is not good !

  • HT1766 I backed up to my PC and attempted restore but I keep getting an error message that "iTunes could not restore the iPhone because not enough free space is available." I have a 32GB iPhone; only 13GB used!!!  HELP!  iCloud backup/restore did not work

    I backed up to my PC and attempted restore but I keep getting an error message that "iTunes could not restore the iPhone because not enough free space is available." I have a 32GB iPhone; only 13GB used!!!  HELP!  iCloud backup/restore did not work either! How can I resolve this problem to restore from back up.

    If you're not a developer then you really should not have upgraded.
    I'm unsure how you can fix this as you have already done a back-up on iOS 7 and apple don't support firmware downgrades.

  • "iPhone cannot be synced because there is not enough free space

    I recently purchased a new computer and I used home sharing to get all of my media onto my new computer.
    Every time I try to sync I get the message "The iPhone "(Insert iPhone name here)" cannot be synced because there is not enough free space to hold all of the items in the iTunes library (additional [amount of space needed] required)"
    I have a 32GB iPhone and I have it set to sync my entire music library (9.3GB), selected movies (not all my movies)(9.6GB), and I also have it set to sync my apps (2.5GB).  there is 3GB of photos and 1.32GB of other, I know there is enough room on my iPhone to house all of the content I have selected to be synced but for some reason I keep getting the same message which tells me I need an addition 15.30GB.
    Also I have tried to re-sync my iPhone with the old computer I used to sync it to and now I'm getting the same message I get on my new computer on the old one.  My old computer was windows as well.
    I have the latest iTunes and iOS for my iPhone.  I don't know what is wrong or how to fix it.  I have tried to refer to the web and have had no results so far.  Help would be greatly appreciated.

    In case anyone is interested, I found a solution.
    My interpretation of the problem is that somehow the iPhone lost track of free space and this process will clear that while not losing any data or settings on the iPhone.
    This will also solve the problem where iTunes has lost the app/folder layout on the iPhone.
    Please note I am not a technician and make no claim that this will work for anyone else, but it did for me. The steps below are as I remember them and may not be exactly the same for everyone.
    1) Backup the iPhone - I used iTunes to backup although this may also work with iCloud but I've not tried
    2) Reset the iPhone - from settings on the iPhone (settings/general/reset (etc))
    3) Carefully follow all the steps and choose to restore when you get to that step
    4) Keep you eye on iTunes as you will have to respond there when it askes which backup set to use for the restore - it is likely that the most recent will be the one you want.
    Good luck.

  • Not enough free space on Aperture Library volume to import iPhoto library into Aperture?

    I purchased Aperture 3 from the App Store after using the free trial version for a few weeks.  I downloaded the program and do not have any images imorted into Aperture yet.  I tried to import my iPhoto library using File>Import>iPhoto Library and received this message: There is not enough free space on your Aperture Library volume to import the selected items. It is estimated that you need at least 10GB of free space.  I have iPhoto 11 and 25,000 images on iPhoto.  I did review the Aperture owners manual and did not find an answer to this.

    Well obviously you don't have enough space to import an iPhoto Library that is more than 10 gigs.
    But that's not importat right now.
    You have the makings of a major problem and you need to address it now.
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD. Nothing else can be done until you do. Purchase an external HD and move your Photos and Music to it. Aperture,  iPhoto an iTunes can run perfectly well with the Library on an external disk.
    If you don't you will suffer data loss. I can't stress this enough.
    Regards
    TD

  • "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 "ipod" cannot be updated because there is not enough free space...

    I am unable to update my ipod nano and get the message "The ipod "ipod" cannot be updated because there is not enough free space to hold all of the songs in the selected playlists." Huh? I have the 4GB nano and currently have 3.55GB used and 181MB free. There are 982 songs (3.8GB) in my "ipod selection." I have no idea why the nano will not update - I recently downloaded the latest update for ipod/itunes on 3/1/06. Can anyone help with this? I have no other playlists checked to update in preferences and cannot figure this out. Very frustrating.
    Jeff
    Washington state, USA

    Is it
    true that a 4GB nano will only hold 3.7GB ?
    Yes...
    Macintosh: Is my hard disk missing space?
    Also, see this...
    How much stuff will my iPod hold?
    btabz

  • Cant sync iPod touch.  comes up with "cannot be synced because there is not enough free space to hold all of the items in the iTunes library (21.6MB required, 304.8MB available)."  I am so confused.  I have more than enough space even on PC.

    cant sync iPod touch.  comes up with "cannot be synced because there is not enough free space to hold all of the items in the iTunes library (21.6MB required, 304.8MB available)."  I am so confused.  I have more than enough space even on PC.

    That message is telling you that you do not have enough stgorage on the iPod to accomodate all the media you are trying to sync to the iPod.
    Sync less
    iTunes: Syncing media content to iOS devices and iPod       
    Try syncing using the manual method                
    Managing content manually on iPhone, iPad, and iPod

  • ITunes bug - Sync not working, not recognising free space on iPhone

    After doing the latest iTunes update, I went to sync my iPhone 5 and got this error message, "The iPhone "X" cannot be synced because there is not enough free space to hold all of the items in the iTunes library (additional 3.24 GB required)."
    However, I have 23GB left of free space, and there is nowhere near that amount of content to sync. It appears as though its not recognising the free space. I think it could be a bug in the latest iTunes update. Anyone had the same issue? Know of any fixes?

    I'm not sure I understand what you mean. You said that you have 23 gigs left of space, but that you're trying to sync over 38 GB? Can you give me a separate number of how much space is currently being used on the phone and how much information it says will be on the phone once you've synced? that's the number that it gives you in the capacity bar before you hit 'apply'

  • "Not enough free space" with multiple internal hard drives

    I have a Power Mac G4, dual 1.25 Ghz, 2mb Ram running 10.5.8. I have four 500gb internal drives. I've had a number of issues with my internal drives lately. Hopefully someone here can help.
    When I "get info" none of the drives display capacity or availability.
    When I attempt to copy files from one drive to another I will consistently receive this error:
    "The item "filename" cannot be copied because there is not enough free space.
    My startup drive should have over 400GB of freespace, so there is plenty of space. This problem also occurs when I connect my Macbook Pro in target mode and attempt to transfer over files.
    I was able to boot the G4 into target mode and backup my data. I then installed a fresh copy of OS X 10.5, then did the 10.5.8 combo update (not through software update).
    This seems to have fixed the problem as I was copying and organizing my files back and forth between drives quite easily. However, the problem has returned from out of nowhere.
    Anybody have ideas what this could possibly be?

    Hi iliveontrantor, and a warm welcome to the forums!
    Have you emptied the Trash on those drives?
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    How much free space is on the HD, where has all the space gone?
    OmniDiskSweeper is likely the easiest/best, and is now free...
    http://www.omnigroup.com/applications/omnidisksweeper/download/

  • I try to sync my nano and get:  the ipod cant be synced because there is not enough free space to hold all of the items in the items library (need 100MB) - I have a new computer?? can you help me understand this message: what to do?

    I try to sync my nano and get:  the ipod cant be synced because there is not enough free space to hold all of the items in the items library (need 100MB) - I have a new computer?? can you help me understand this message: what to do?

    Hello pryan1012,
    What this message means is that you have more music in your itunes library than there is free space in your ipod.
    I had this same issue at one time. This is what helped me put my music on the ipod. I used manually manage.
    Learn how to sync muisc here.
    Hope this helps.
    ~Julian

  • WBAdmin BMR backup says "There is not enough free space on the backup storage location to back up the data."

    We're doing nightly BMR backups of a small 2012 R2 Hyper-V host via wbadmin to 2TB USB disks, via
      wbadmin start backup -backupTarget:z: -quiet -noverify -vssFull -include:e:,c: -allCritical
    (where E: contains the sole VM).
    We are using the same backup system on other similar Hyper-V hosts running 2008 R2 and 2012, with no problems. However, with this 2012 R2 host, after a few months of no problems the backups started failing with:
      There is not enough free space on the backup storage location to back up the data.
    This made no sense, and continues to make no sense:
    The 2TB backup disks are only half full (>1TB free), with 600GB of unallocated shadowstorage.
    There should be room for many more backups on these disks. Each currently contains 11 to 13 backups, with the initial full backup having required about 600GB and each subsequent backup only requiring another 20GB to 40GB.
    There is over 40GB free on the C: drive and 300GB free on the E: drive; free space on the host volumes is not an issue.
    Increasing the shadowstorage limit on the backup disks to unbounded doesn't resolve the issue.
    This is not a problem of a RECOVERY partition that's too small, and SystemState backups always complete successfully.
    The first workaround we found was to temporarily reduce (not increase) the shadowstorage allocation on the E: drive (containing the VM) and then increase it back (with the end result of deleting old shadow copies).
    This worked reliably, but looking for a root cause led us to uninstall the Windows Updates installed mid-September (in particular the Aug 2014 and Sep 2014 roll-ups), which preceded the start of this problem. But instead of resolving the problem the uninstalls
    made it worse, in that our workaround stopped working.
    We reinstalled the Windows Updates, and then tried setting backup performance to normal, in case the problem was related to VSS on the host volumes, but the errors continued.
    At this point the only way we've found to work around the error is to delete 1 or 2 of the oldest backups on the destination disk, via
      wbadmin delete backup -backupTarget:z: -deleteOldest
    after which the new backup will succeed.
    But, again, this makes no sense, as the destination disks are only half full, and even if space was an issue wbadmin should delete old backups as required. And this same system is working fine on 2008 R2 and 2012.
    Any suggestions?
    Thanks,
    John

    Hi John,
    Please check run the command below to check if the space required to complete the backup causes the snapshot storage space to become less than 1/8 of the target size.
    vssadmin list shadows /for=x: will list the shadow copies on x: and creation time.
    WSB will not shrink the diff area to less than 1/8 of Target volume size as we do not want to lose all past backups just to accommodate this one.
    For more detailed information, please refer to the article below:
    Windows Server Backup automatic disk usage management
    http://blogs.technet.com/b/filecab/archive/2011/03/14/windows-server-backup-automatic-disk-usage-management.aspx
    V. Backup, Restore and Disaster Recovery
    http://social.technet.microsoft.com/wiki/contents/articles/1846.v-backup-restore-and-disaster-recovery.aspx?Sort=MostUseful&PageIndex=1
    Best Regards,
    Mandy 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • ITunes syncing error reports not enough free space

    Having an issue with syncing the iPad where iTunes reports that there is not enough free space to transfer the selected data. In this case it was an app(The Elements) which is 1.78 GB. The iPad has 3.8 GB free space, yet the app cannot be transfered because there is "Insufficient space". I used to see the same problem with my iPhone when attempting to sync back the photos i just copied off the camera app. There is definately free space, but iTunes seems to see something different than what is reported.
    BTW. I could not sync the app to the iPad using iTunes, but there was enough free space to directly download the app on the iPad. Seems like a problem with iTunes to me.
    Is iTunes and the iPad reporting an incorrect amount of free space? Can iTunes be forced to transfer apps without checking for the amount of free space? Any other ideas?

    It seems like double the size of the app is needed to install it on the device.

  • Time Machine Restore "Not enough free space"

    My Problem:
    1) I backed up my iphoto library to a 1TB external HD
    2) Deleted my iphoto library from internal SSD
    3) iMovie cannot locate any of my movie files anymore therefore;
    4) I am required to use time machine to restore my iphoto library
    5) I have an abundance of free space on my internal SSD to do what time machine is built to do
    6) 130 GB free space on internal SSD. iPhoto requires 60 GB to restore
    7) NOT ENOUGH FREE SPACE TO RESTORE??
    What i need from YOU (the expert out there):
    1) Either inform me how to relocate lost movie files for iMovie or
    2) Educate me on how to restore large files back to my internal SSD
    What I have TRIED and DONE to NO avail:
    1) Emptied the "Trash" (apparently that was supposed to help)
    2) Create 2x the space required for the restore of iPhoto on my internal SSD (apparently sometimes it needs twice the memory, which by the way is bogus)
    3) Used my second backup of iPhoto, with a copy and paste function

    Brilliant.
    Now if I could solve my iMovie video relocation problem I would be back in business. Definitly won't be able to always have my iPhoto complete library on my internal SSD.
    Thanks!

  • Not enough free space? I've scoured the forum to no avail....

    so my 30g 5th USED to fill up with a random selection of songs .... now when I plug it in to sync it it tells me "not enough free space ...." (my library is in excess of 250g's of music). I checked all the settings in iTunes and the best I can manage so far is to cut and paste a new playlist from the iTunes dj (gasp) to mix it up, any suggestions or am I missing something? Thanks in advance all ....

    hello, such clean-up/tuning tools often do more harm than good. by default firefox will create a daily backup of your bookmarks for the 10 last days, which you can restore from within the bookmarks library. for more information about that, please see [[Restore bookmarks from backup or move them to another computer]].

Maybe you are looking for

  • Why doesn't the file stay open in the Organizer?

    In all my years of using Photoshop Elements, I've never used the Organizer.  I just created files in My Pictures and put them there.  After downloading the latest version of Photoshop Elements, I thought I'd give it a try.  First I was told I had so

  • Iomega external hard drive problem

    I'm not sure if this is the correct forum to post this but I purchased an iomega external HD off the apple.com site to use during travel (I was assuming it could be used as a larger capacity flash drive of sorts, and intended to transfer my files fro

  • Sender jdbc adapter - no update query

    hi , i am using pi 731 single stack. the scenario is - PI has to pick data from view of a hana database. i am using jdbc sender for it. pi will not have access to update the table,only pi can read the view of database.So,PI can't use UPDATE query. If

  • Want to add one more table in Inner join

    Hi all, my code is show below. SELECT a~budat a~mblnr b~matnr b~menge b~bwart          INTO CORRESPONDING FIELDS OF TABLE it_rawmat          FROM mkpf as a inner join mseg as b on a~mblnr = b~mblnr          where b~bwart = '261' and b~werks in werks

  • Using Powerbook as an external DVD drive

    Hello, I was just given Sims 2 which requires a DVD drive to play, but my ol' G4 only has a CD-rom drive. I also have access to a Powerbook which has a DVD drive but I'd rather play it on my desktop. I've connected to two before, booting up one as an