Finding Free Space

I used Disk Utility and erased all my free space. It entered "zeros" into the free space so cannot save anything anymore. How do I get rid of these "zeros"?

When you elect to erase free space, Disk Utility creates a file that takes up all the free space, then writes zero's to it. If the process is interrupted or doesn't complete normally, that file is left on the system and all of a sudden there's no more space available on the disk.
To get rid of the file, if you have a program like Disk Inventory X or an older version of Whatsize, you can see all the files and easily identify and delete the file (as I recall it's a hidden file). If you can free some space up, you can download the old version of Whatsize from http://www.free-mac-software.com/whatsize/

Similar Messages

  • Can't find free space for Shared Memory (Size=83739 KB)

    Hello All,
              I have an issue. i am unable to bring up the server. It is ABAP system.
    dev_w0 log file show me memory error.
    I Fri May 01 10:11:55 2009
    I  *** ERROR => [MapOsShm] Can't find free space for Shared Memory (Size=83739 KB)
                   [shmnt.c      2174]
    I  *** ERROR => [AttachOsShm] MapViewOfFile(Key=62,Handle=0x000003FC) failed with Err=0
                   [shmnt.c      2174]
    I  *** ERROR => ShmCreate: Attach (62,85748608,2) failed [shmnt.c      422]
    Can some body help me with it.
    Thanks and regards
    Kiran

    I am running into the same issue. What exactly solved your problem?
    I will really appreciate any info., around this.
    i am trying to install CE 7.2 Developer Workplace on Windows 32 bit.
    Saurabh

  • Lion takes long time to find free space after emptying trash

    After emptying the trash, I've noticed that Lion does not see the additional free space until after doing a reboot, and even after that it takes a long time for it to find all the new free space.  Anybody know what's wrong with the trash system?

    Absolutely nothing is wrong with it.  See Missing disk space in Lion.

  • Solaris volume manager ; finding free space

    Hello
    Is there a way to find out the space available in a metadevice for creating new soft partions?
    I am looking for the equivalent of the following vxvm commands
    vxdg free
    vxassist maxsize
    Thanks in advance

    If it is indeed showing as free space have you tried just extending your existing volume instead of making a new one?
    You can right click your existing volume in disk manager and say extend partition and just next through the wizard. It should auto set all the values to consume is all the space.
    Option 2 is to use the command line utility called diskpart. Go to start, type cmd. After the command prompt is open you will type diskpart.
    First list the disks by typing "list disk" then select the disk you wish to work with. Example "select disk 1".
    Then list the volumes, similar to disk you do "list volume". You then select the desired volume you want to extend. Select the 58.8 GB volume similar to selecting the disk. After the volume is selected you will type "extend" and
    it will grow the volume into the free space.

  • How to find free space in a Tablespace?

    Hi,
    I have a limited access to objects in my database ( do not have access to many tables).
    I have been allocated 300GB of size in my tablespace which allows me to create my objects.
    Now, I want to find out how much of this tablespace size allocated to me have been used up. I do not have access to dba_data_files or dba_segments.
    Is there a way out for me? Could anyone show me a way please?

    This query will give you the required information but it makes use of DBA tables.
    SELECT B.TABLESPACE_NAME, TBS_SIZE SIZEGB, A.FREE_SPACE FREEGB
    from  (select tablespace_name, round(sum(bytes)/1024/1024/1024 ,2) as free_space
           from dba_free_space
           GROUP BY TABLESPACE_NAME) A,
          (select tablespace_name, sum(bytes)/1024/1024/1024 as tbs_size
           from dba_data_files
           group by tablespace_name) b
    where a.tablespace_name(+)=b.tablespace_name;
    However, you said that you are aware of your tablespace details so the above query can be modified to get the free space in your tablespace. Now I am using user_frees_space and not dba_free_space. Generally user* tables are and should be made accessible to the users.
    select  tablespace_name, round(sum(bytes)/1024/1024/1024 ,2) as free_space
    from    user_free_space
    where   tablespace_name = 'Your tablespace name'
    GROUP BY TABLESPACE_NAME;
    Ishan

  • HELP !!! - sql script to find free space in Oracle7,8,9 DB

    Hi All
    I got a PL/SQL script to find out free space in Oracle7,8,9 db. But because in Oracle 7 there is no maxbytes column in dba_data_files, so this script is not working. I am trying to use cursor and putting sql in a variable so that when program executes, it does not see maxbytes. But it still does not work.
    Please help. !!!
    Script
    set feedback off;
    set serveroutput on;
    set termout off;
    set verify off;
    spool /u01/app/oracle/admin/common/bck/log/ts.log
    declare
    v_tablespace_name varchar2(50);
    v_total_space number(12) := 0;
    v_free_space number(12);
    v_space number(12);
    v_space_used number(12);
    v_pct_free number(6,3);
    v_pct_threshold number(3) := 2;
    v_table_exist number(2) := 0;
    v_sql varchar2(300) := 'select sum(maxbytes) from dba_data_files where TABLESPACE_NAME = tablespace_rec.tablespace_name';
    TYPE t_tableref IS REF CURSOR;
    t_tablecur t_tableref;
    begin
    for tablespace_rec in (select tablespace_name from dba_tablespaces)
    loop     
    -- Get the total space for the current tablespace
    -- if this FILEXT$ view exists then some of the datafiles have autoextend on;
              select count(*) into v_table_exist from dba_tables where table_name = 'FILEXT$';
              dbms_output.put_line('table count: ' || v_table_exist);               
              if v_table_exist = 0 then
                        OPEN t_tablecur for v_sql;
                        fetch t_tablecur into v_total_space;                         
                        CLOSE t_tablecur;     
              --     select sum(maxbytes) into v_total_space from dba_data_files
              --     where TABLESPACE_NAME = tablespace_rec.tablespace_name;               
              --      v_total_space := getMaxBytes(tablespace_rec.tablespace_name);
              end if;
              select sum(bytes) into v_space from dba_data_files
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;          
         if (v_total_space = 0 or v_total_space < v_space) then
              select sum(bytes) into v_total_space from dba_data_files
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
              select sum(bytes) into v_free_space from dba_free_space
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
         else
              select sum(bytes) into v_free_space from dba_free_space
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
              v_space_used := v_space - v_free_space;
              v_free_space := v_total_space - v_space_used;          
         end if;
    -- calculate the percent free for the current tablespace
    v_pct_free := (v_free_space / v_total_space) * 100;
         if (v_pct_free < v_pct_threshold) then
         dbms_output.put_line(tablespace_rec.tablespace_name|| ' - Percent Free: ' || v_pct_free      
         ||'%');
         end if;
    end loop;
    end;
    spool off;

    Hi All
    I got a PL/SQL script to find out free space in Oracle7,8,9 db. But because in Oracle 7 there is no maxbytes column in dba_data_files, so this script is not working. I am trying to use cursor and putting sql in a variable so that when program executes, it does not see maxbytes. But it still does not work.
    Please help. !!!
    Script
    set feedback off;
    set serveroutput on;
    set termout off;
    set verify off;
    spool /u01/app/oracle/admin/common/bck/log/ts.log
    declare
    v_tablespace_name varchar2(50);
    v_total_space number(12) := 0;
    v_free_space number(12);
    v_space number(12);
    v_space_used number(12);
    v_pct_free number(6,3);
    v_pct_threshold number(3) := 2;
    v_table_exist number(2) := 0;
    v_sql varchar2(300) := 'select sum(maxbytes) from dba_data_files where TABLESPACE_NAME = tablespace_rec.tablespace_name';
    TYPE t_tableref IS REF CURSOR;
    t_tablecur t_tableref;
    begin
    for tablespace_rec in (select tablespace_name from dba_tablespaces)
    loop     
    -- Get the total space for the current tablespace
    -- if this FILEXT$ view exists then some of the datafiles have autoextend on;
              select count(*) into v_table_exist from dba_tables where table_name = 'FILEXT$';
              dbms_output.put_line('table count: ' || v_table_exist);               
              if v_table_exist = 0 then
                        OPEN t_tablecur for v_sql;
                        fetch t_tablecur into v_total_space;                         
                        CLOSE t_tablecur;     
              --     select sum(maxbytes) into v_total_space from dba_data_files
              --     where TABLESPACE_NAME = tablespace_rec.tablespace_name;               
              --      v_total_space := getMaxBytes(tablespace_rec.tablespace_name);
              end if;
              select sum(bytes) into v_space from dba_data_files
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;          
         if (v_total_space = 0 or v_total_space < v_space) then
              select sum(bytes) into v_total_space from dba_data_files
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
              select sum(bytes) into v_free_space from dba_free_space
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
         else
              select sum(bytes) into v_free_space from dba_free_space
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
              v_space_used := v_space - v_free_space;
              v_free_space := v_total_space - v_space_used;          
         end if;
    -- calculate the percent free for the current tablespace
    v_pct_free := (v_free_space / v_total_space) * 100;
         if (v_pct_free < v_pct_threshold) then
         dbms_output.put_line(tablespace_rec.tablespace_name|| ' - Percent Free: ' || v_pct_free      
         ||'%');
         end if;
    end loop;
    end;
    spool off;

  • How to find free space in an ArrayList...

    Hi,
    I have an ArrayList with data randomly assigned to different indexs of the ArrayList.
    I want to find out where the "gaps" are within the ArrayList... For Example There would be data in index 0,1,2,3,5 but not in index 4 . How would I go about finding this information.
    Thanks
    Chris

    jwenting wrote:
    kajbj wrote:
    Praveen_Forum wrote:
    I don't think we have to look into the free space's for ArrayList, as it is a dynamic growing arraylist you can just keep on adding the stuff in it takes care of filling all the empty spaces
    I am i right?No, it will not fill a gap.in fact it will, after a fashion.
    When you remove an item the remaining items are reshuffled to close the gaps.
    When you try to insert an item beyond the last position (so at list.size()+2 or greater) you will get an error, and the insert will fail.I was more thinking of a situation like this:
            strings.add("One");
            strings.add("Two");
            strings.add("Three");
            strings.set(1, null);
            System.out.println(strings);The element at index 1 will be null (a gap in my view), since remove won't cause a gap.
    Kaj

  • How to find free space in datafiles of perticular schema?

    hai,
    whats the query to find out free space in datafiles and index files related free space for perticular schmea?
    Regards
    dba

    There are lots of scripts available on Metalink which report free space in tablespaces/datafiles.
    Note: 1019999.6 - Script: To List Tablespace, Datafiles and Free Space
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1019999.6
    Note: 145531.1 - How to Determine Which Tablespaces Do Not Have Enough Free Space
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=145531.1

  • How to find free space in ASM

    Hi experts,
    we use oracle 11.1 rac and database with asm in redhat.
    I copied two query from online.
    query 1 as
    select name,total_mb,free_mb from v$asm_diskgroup;
    NAME TOTAL_MB FREE_MB
    DATA1 511993 132092
    FLSDISK1 1638394 712233
    but query 2 shows there are no space in ASM diskgroup
    QL> select d.name disk_name,g.name group_name,d.path,d.total_mb,d.free_mb
    2 from v$asm_disk d, v$asm_diskgroup g
    3 where d.group_number = g.group_number (+)
    4 ;
    DISK_NAME GROUP_NAME PATH TOTAL_MB FREE_MB
    FBDISK1 FLSDISK1 ORCL:FBDISK1 1638394 0
    DATADISK1 DATA1 ORCL:DATADISK1 511993 0
    which query do I need to use to check free space in asm diskgroup?
    Thanks
    JIm

    Hi,
    If you're looking freespace in diskgroup i believe you can use the first one
    second script is looking freespace per each disk
    Cheers
    FZheng

  • DBMS_SPACE.FREE SPACE

    Hi I want to find free space in table named asdf under sekar schema but when I execute this error is coming...help me
    DECLARE
    alc_bks NUMBER;
    alc_bts NUMBER;
    unsd_bks NUMBER;
    unsd_bts NUMBER;
    luefii NUMBER;
    luebi NUMBER;
    lub NUMBER;
    BEGIN
    DBMS_SPACE.UNUSED_SPACE (
    segment_owner => 'SEKAR',
    segment_name => 'ASDF',
    segment_type => 'TABLE',
    :alc_bks,
    :alc_bts,
    :unsd_bks,
    :unsd_bts,
    :luefii,
    :luebi,
    :lub
    print alc_bks;
    print alc_bts;
    print unsd_bks;
    print unsd_bts;
    print luefii;
    print luebi;
    print lub;
    END;
    /

    Sekar_BLUE4EVER wrote:
    >
    Alloc Blks = 51456
    ALLOC BYTES = 421527552
    UNUSED BLOCKS = 256
    UNUSED BYTES = 2097152
    last_used_extent_file_id = 4
    last_used_extent_block_id =51081
    last_used_block = 768
    SQL> select * from sekar.asdf;
    no rows selected
    SQL> select OWNER,SEGMENT_NAME ,bytes/1024/1024 from dba_segments where SEGMENT_NAME like '%ASDF';
    OWNER
    SEGMENT_NAME
    BYTES/1024/1024
    SEKAR
    ASDF
    402
    >Just deleting rows will not reduce table size you have to truncate and need move HWM.Also in additionaly you can use alter table deallocate unused space

  • Oracle Free Space Management

    Is Free Space Management a Initialization Parameters,
    if so which one,
    Where is Free Space Management keepth ?
    Eric

    Eric, Free space management is not a database parameter. You should read the Concepts manual. It explains Tablespace management and object management basics. Or you can see the chapters devoted to Tablespace and Object management in the DBA Administration Guide for a more detailed analysis.
    To find free space in the database see the dictionary view: dba_free_space.
    To how space management is handled for a tablespace see the dictionary view: dba_tablespaces.
    HTH -- Mark D Powell --

  • How to find out the used space and free space in the DB for attachments

    Hi,
    In CRM 5.2 web UI, we can save a transaction by saving attachments like work documents or text files.
    Could someone help me find out the used space, free space, maximum capacity on the CRM DB for these attachments.
    Thanks & Best Regards,
    Ramesh.

    Hi,
    check with  below table
    TNAPR   ---  Processing programs for output
    and NACE Transaction code
    NACE  --  out types
    Regards,
    Madhu

  • Finder showing incorrect amount of free space

    After the recent Mountain Lion update, my Finder now shows an incorrect amount of free space.
    I have a 500GB hard drive, and I have about 150GB free.
    After the update, finder says I have 478.4 GB free?
    That looks like the total capacity, after you account for system software. I've done a PRAM and SCM reset, disk verification and repair, but still no joy.
    Any thoughts? Is it a bug in the update?

    Here is the answer....
    zchrykng
    Re: Hard drive available space shown incorrectly in finder Jan 12, 2012 7:35 PM (in response to ilari Korte)
    This is probably like the issue that I was having on my MacBook Pro. If you are using Time Machine on a laptop it stores the diffs in a file on your hard drive. This action can be disabled with the terminal command
    sudo tmutil disablelocal
    This turns the local Time Machine off. It is up to you if you want to do this, but Finder shows this space as unused since it can be overwritten when needed. It saved me over a hundred GBs of space.
    MacBook Pro, Mac OS X (10.7.2) 

  • Finder showing wrong amount of free space on Macintosh HD

    Hi!
    Does anyone know why Finder tells me that the amount of free space on my Mac is 46.53 GB while Disk Utility says there are only 31.89 GB of free space left?

    Just found the solution in another thread: the "problem" seems to be the local Time Machine Snapshots. Finder ignores them, Disk Utility doesn't.

  • Finder reports wrong amount of free space

    Finder is reporting the wrong amount of free space on all my drives.  It's not from time machine local backups, because I've disabled those.  In fact, it's reporting MORE free space than there should be!  In all cases, Disk Utility shows the correct amount.  (So does the Terminal command df.)
    eg:
    external 120GB hard drive (USB) - finder says 137.83GB free (more than the drive can hold, nice) - disk util says 70 used 49.9 free... better
    external 1TB (firewire) - finder says 276.66GB free - disk util says 783.72 used 216.15 free
    internal 120GB SSD - finder says 108.32GB - disk util says 78.6GB used, 40.5 free
    Anyway to fix Finder?

    I noticed the same problem. I assumed it was from Time Machine's local backups (which exactly account for the space discrepancy between Finder and Disk Utility on my machine). But, as you say, you've disabled Time Machine local "snapshots." I can only assume you deleted the local backups (to free up the space they were using), emptied your Trash and are still showing the discrepancy.

Maybe you are looking for

  • How to deactivate the fields in a table control of a standard screen

    Hi,    I have an requirement to deactivate the fields in a table control of a standard screen in ME22n transaction.I am using a BADI "ME_PROCESS_PO" and in item mathod i am looping at screen for the screen field name in the table control.But it is no

  • Unable to upload photos to MobileMe

    Hi all, I've enabled the 'adding of photos via email or iphone' setting in my web gallery, yet when I take a photo and use the 'send to MobileMe' option on my iphone, I get 'Your MobileMe gallery has no shared albums'. But it does. Anyone have any id

  • Ipad 2 won't turn on after freezing and rebooting...

    So this is what happened. I was playing "Lili" and halfway when I got to the second area after the begining of the game, the game started to act weird, the controls skipped and I couldn't control it well, so I pressed the home button and it froze. I

  • IPhoto keeps crashing when Trying to create a calendar

    I'm trying to put together a 2011 calendar for family. Every time I click on Create, Calendar I get the "Loading" page and then it crashes. Have to force quit to get out and try again. Any ideas??

  • When to use abstract class compared to interface

    hi can some one plase advise me when to use abstract class compared to interface? Example will be appreciated...