Space increase on updates

I updated my Itunes. The space it used before the update was 146.6MB. The size of the update was 86.4MB. After it was finished the total size of Itunes was 146.9. Can someone help me figure out the math on this.

com·pres·sion
3. Computer Science The process by which data is compressed into a form that minimizes the space required to store or transmit it.
http://en.wikipedia.org/wiki/Losslessdatacompression
http://en.wikipedia.org/wiki/Data_compression
An example of lossless compression:
25.888888888
This string can be compressed as:
25.[9]8

Similar Messages

  • I bought 3 iPhone 4s and each should have 5gb of cloud. I want to only use my one iTunes ID. How can I get this storage space increased to the 15 GB?

    I bought 3 iPhone 4s and each should have 5gb of cloud. I want to only use my one iTunes ID. How can I get this storage space increased to the 15 GB?

    iCloud storage is not allocated by device. iCloud storage is allocated to your iCloud AppleID. You get 5GB of iCloud storage.

  • HT1222 My update won't verify. What do I need to do? I have enough space for the update.

    My update won't verify. What do I need to do? I have enough space for the update.

    Authetication servers are being hammered.  Wait.

  • Question Re: Disk Space Utilization after Updates

    After updating to 10.5.3 this weekend I began to wonder about something. The download was a bit over 500 MB... during the actual install a prompt appears stating this would occupy approximately 1.6 GB ( not MB ) of disk space.
    Do updates actually take up ( in this instance ) an ADDITIONAL 1.6 GB of disk space on top of whatever amount of space the original program/application occupies on the hard drive?
    Thanks !
    Chuck :- )

    Do updates actually take up ( in this instance ) an ADDITIONAL 1.6 GB of disk space on top of whatever amount of space the original program/application occupies on the hard drive?
    No. You need 1.6GB available for temporary and duplicate files which are deleted after the installation is complete.
    (32620)

  • How much space gb for updating iOS 8.1.1

    How much space gb for updating iOS 8.1.1

    Depends on what iOS version you are coming from.   If you are at iOS 8 it should be less than 100MB.
    Otherwise it will vary depending on where you start from.
    Also, I will request this post be relocated to the Using iPad area, as it has nothing to to with iBooks Author (The section it was posted in).

  • TS2755 How to I delete messages(Saved) so that I can create enough space for my update?

    How to I delete messages(Saved) so that I can create enough space for my update?

    If by "update" you mean you are trying to update iOS, then the way to do this is to use iTunes on your computer to perform the update.
    Plug your iPhone into (the current version of) iTunes on your computer.  Let it sync.  Then do "Check for Updates" from the iPhone's summary page in iTunes.

  • I have purchased additional iCloud space.  It shows I still have space, however my iPad mini shows I don't have enough space for the update for ios7.  My photos are in the cloud, I guess,  so why don't I have enough space?

    If I delete photos on my iPad mini, can I still see them in iCloud storage?  How do I free up more space on my iPad  without removing photos?

    If you delete photos from your iPad, they will also be deleted from iCloud and you'll lose them.  Also, having additional iCloud space won't give you any more space on your device.   You can't move any data to iCloud and delete it from your device.  All you iCloud data is also on you device, and if you delete it from your device, it is also deleted from iCloud.
    One option to free up space for the update is to delete the music from your iPad, then sync it back using iTunes after you update.   (You can delete it all by going to Settings>General>Usage, wait for the apps list to open, then tap Music>Edit, then tap next to All Music.)
    Also, if you purchsed the iCloud storage upgrade in the last 15 days thinking you chould use it to free up space on your iPad, you can call the Apple online store for your country and get a refund (1-800-MY-APPLE in the U.S. and Canada.)

  • After Update 1.4 GB of space increase

    Hi,
    Last week we updated 23233865 number of records on single column on two tables and we were table to see 1.4GB of growth on DB.
    Total tables size=18GB data +10GB of indexes on this tables.
    So Kindly guide me do i need to rebuild the indexes or any way to tell how space can be reclaimed.
    select del_lf_rows * 100 / decode(lf_rows,0,1,lf_rows) from index_stats where name = 'TIBEX_ORDER_IDX_OLT';
    declare
           segment_owner              VARCHAR2(30) default 'TRD_SRV_OWNER';
           segment_name               VARCHAR2(30) default 'TIBEX_ORDER_ID_ORD_INS';
           segment_type               VARCHAR2(30) default 'INDEX';
           total_blocks               NUMBER;
           total_bytes                NUMBER;
           unused_blocks              NUMBER;
           unused_bytes               NUMBER;
           last_used_extent_file_id   NUMBER;
          last_used_extent_block_id  NUMBER;
          last_used_block            NUMBER;
          partition_name             VARCHAR2(30) DEFAULT NULL;
       begin
          DBMS_SPACE.UNUSED_SPACE (
          segment_owner              ,
          segment_name               ,
          segment_type               ,
          total_blocks               ,
          total_bytes                ,
          unused_blocks              ,
          unused_bytes               ,
          last_used_extent_file_id   ,
          last_used_extent_block_id  ,
          last_used_block            ,
          partition_name             );
          dbms_output.put_line('total blk : ' || total_blocks               );
          dbms_output.put_line('Unused blk : ' || unused_blocks              );
          dbms_output.put_line('last unused blk : ' || last_used_block            );
      end ;
    total blk : 560640
    Unused blk : 0
    last unused blk : 8192
      1  declare
      2         segment_owner              VARCHAR2(30) default 'TRD_SRV_OWNER';
      3         segment_name               VARCHAR2(30) default 'TIBEX_ORDER_IDX_OLT';
      4         segment_type               VARCHAR2(30) default 'INDEX';
      5         total_blocks               NUMBER;
      6         total_bytes                NUMBER;
      7         unused_blocks              NUMBER;
      8         unused_bytes               NUMBER;
      9         last_used_extent_file_id   NUMBER;
    10        last_used_extent_block_id  NUMBER;
    11        last_used_block            NUMBER;
    12        partition_name             VARCHAR2(30) DEFAULT NULL;
    13     begin
    14        DBMS_SPACE.UNUSED_SPACE (
    15        segment_owner              ,
    16        segment_name               ,
    17        segment_type               ,
    18        total_blocks               ,
    19        total_bytes                ,
    20        unused_blocks              ,
    21        unused_bytes               ,
    22        last_used_extent_file_id   ,
    23        last_used_extent_block_id  ,
    24        last_used_block            ,
    25        partition_name             );
    26        dbms_output.put_line('total blk : ' || total_blocks               );
    27        dbms_output.put_line('Unused blk : ' || unused_blocks              );
    28        dbms_output.put_line('last unused blk : ' || last_used_block            );
    29*   end ;
    sys@SURV1> /
    total blk : 296192
    Unused blk : 0
    last unused blk : 8192
      1  declare
      2         segment_owner              VARCHAR2(30) default 'TRD_SRV_OWNER';
      3         segment_name               VARCHAR2(30) default 'IX_ORDER_TIMESTAMP';
      4         segment_type               VARCHAR2(30) default 'INDEX';
      5         total_blocks               NUMBER;
      6         total_bytes                NUMBER;
      7         unused_blocks              NUMBER;
      8         unused_bytes               NUMBER;
      9         last_used_extent_file_id   NUMBER;
    10        last_used_extent_block_id  NUMBER;
    11        last_used_block            NUMBER;
    12        partition_name             VARCHAR2(30) DEFAULT NULL;
    13     begin
    14        DBMS_SPACE.UNUSED_SPACE (
    15        segment_owner              ,
    16        segment_name               ,
    17        segment_type               ,
    18        total_blocks               ,
    19        total_bytes                ,
    20        unused_blocks              ,
    21        unused_bytes               ,
    22        last_used_extent_file_id   ,
    23        last_used_extent_block_id  ,
    24        last_used_block            ,
    25        partition_name             );
    26        dbms_output.put_line('total blk : ' || total_blocks               );
    27        dbms_output.put_line('Unused blk : ' || unused_blocks              );
    28        dbms_output.put_line('last unused blk : ' || last_used_block            );
    29*   end ;
    sys@SURV1> /
    total blk : 197504
    Unused blk : 0
    last unused blk : 8192
      1  declare
      2         segment_owner              VARCHAR2(30) default 'TRD_SRV_OWNER';
      3         segment_name               VARCHAR2(30) default 'TIBEX_QUOTE_IDX_QLT';
      4         segment_type               VARCHAR2(30) default 'INDEX';
      5         total_blocks               NUMBER;
      6         total_bytes                NUMBER;
      7         unused_blocks              NUMBER;
      8         unused_bytes               NUMBER;
      9         last_used_extent_file_id   NUMBER;
    10        last_used_extent_block_id  NUMBER;
    11        last_used_block            NUMBER;
    12        partition_name             VARCHAR2(30) DEFAULT NULL;
    13     begin
    14        DBMS_SPACE.UNUSED_SPACE (
    15        segment_owner              ,
    16        segment_name               ,
    17        segment_type               ,
    18        total_blocks               ,
    19        total_bytes                ,
    20        unused_blocks              ,
    21        unused_bytes               ,
    22        last_used_extent_file_id   ,
    23        last_used_extent_block_id  ,
    24        last_used_block            ,
    25        partition_name             );
    26        dbms_output.put_line('total blk : ' || total_blocks               );
    27        dbms_output.put_line('Unused blk : ' || unused_blocks              );
    28        dbms_output.put_line('last unused blk : ' || last_used_block            );
    29*   end ;
    sys@SURV1> /
    total blk : 229760
    Unused blk : 0
    last unused blk : 8192
      1  declare
      2         segment_owner              VARCHAR2(30) default 'TRD_SRV_OWNER';
      3         segment_name               VARCHAR2(30) default 'IX_QUOTE_TIMESTAMP';
      4         segment_type               VARCHAR2(30) default 'INDEX';
      5         total_blocks               NUMBER;
      6         total_bytes                NUMBER;
      7         unused_blocks              NUMBER;
      8         unused_bytes               NUMBER;
      9         last_used_extent_file_id   NUMBER;
    10        last_used_extent_block_id  NUMBER;
    11        last_used_block            NUMBER;
    12        partition_name             VARCHAR2(30) DEFAULT NULL;
    13     begin
    14        DBMS_SPACE.UNUSED_SPACE (
    15        segment_owner              ,
    16        segment_name               ,
    17        segment_type               ,
    18        total_blocks               ,
    19        total_bytes                ,
    20        unused_blocks              ,
    21        unused_bytes               ,
    22        last_used_extent_file_id   ,
    23        last_used_extent_block_id  ,
    24        last_used_block            ,
    25        partition_name             );
    26        dbms_output.put_line('total blk : ' || total_blocks               );
    27        dbms_output.put_line('Unused blk : ' || unused_blocks              );
    28        dbms_output.put_line('last unused blk : ' || last_used_block            );
    29*   end ;
    sys@SURV1> /
    total blk : 147712
    Unused blk : 0
    last unused blk : 8192Current DB version 10.2.0.4 version on Solaris.
    Question is:
    Why did it used 1.4 GB of space only update.
    Regards
    Narasimha
    Edited by: NarasimhaMurthy on 23-May-2010 13:20

    Hi Ramesh,
    Thanks for your reply.
    trd_srv_owner@SURV1> declare
      2     l_fs1_bytes number;
      3     l_fs2_bytes number;
      4     l_fs3_bytes number;
      5     l_fs4_bytes number;
      6     l_fs1_blocks number;
      7     l_fs2_blocks number;
      8     l_fs3_blocks number;
      9     l_fs4_blocks number;
       l_full_bytes number;
    10   11     l_full_blocks number;
    12     l_unformatted_bytes number;
    13     l_unformatted_blocks number;
    14  begin
       dbms_space.space_usage(
    15   16        segment_owner      => user,
          segment_name       => 'TIBEX_ORDER',
          segment_type       => 'TABLE',
    17   18   19        fs1_bytes          => l_fs1_bytes,
    20        fs1_blocks         => l_fs1_blocks,
    21        fs2_bytes          => l_fs2_bytes,
    22        fs2_blocks         => l_fs2_blocks,
    23        fs3_bytes          => l_fs3_bytes,
    24        fs3_blocks         => l_fs3_blocks,
    25        fs4_bytes          => l_fs4_bytes,
    26        fs4_blocks         => l_fs4_blocks,
    27        full_bytes         => l_full_bytes,
    28        full_blocks        => l_full_blocks,
    29        unformatted_blocks => l_unformatted_blocks,
    30        unformatted_bytes  => l_unformatted_bytes
    31     );
    32     dbms_output.put_line(' FS1 Blocks = '||l_fs1_blocks||' Bytes = '||l_fs1_bytes);
    33     dbms_output.put_line(' FS2 Blocks = '||l_fs2_blocks||' Bytes = '||l_fs2_bytes);
    34     dbms_output.put_line(' FS3 Blocks = '||l_fs3_blocks||' Bytes = '||l_fs3_bytes);
    35     dbms_output.put_line(' FS4 Blocks = '||l_fs4_blocks||' Bytes = '||l_fs4_bytes);
       dbms_output.put_line('Full Blocks = '||l_full_blocks||' Bytes = '||l_full_bytes);
    36   37  end;
    38  /
    FS1 Blocks = 6409 Bytes = 52502528
    FS2 Blocks = 7 Bytes = 57344
    FS3 Blocks = 7 Bytes = 57344
    FS4 Blocks = 3612 Bytes = 29589504
    Full Blocks = 1264078 Bytes = 10355326976
    PL/SQL procedure successfully completed.
    trd_srv_owner@SURV1> declare
      2     l_fs1_bytes number;
      3     l_fs2_bytes number;
      4     l_fs3_bytes number;
      5     l_fs4_bytes number;
      6     l_fs1_blocks number;
      7     l_fs2_blocks number;
      8     l_fs3_blocks number;
      9     l_fs4_blocks number;
    10     l_full_bytes number;
    11     l_full_blocks number;
       l_unformatted_bytes number;
    12   13     l_unformatted_blocks number;
    14  begin
    15     dbms_space.space_usage(
    16        segment_owner      => user,
    17        segment_name       => 'TIBEX_QUOTE',
    18        segment_type       => 'TABLE',
    19        fs1_bytes          => l_fs1_bytes,
    20        fs1_blocks         => l_fs1_blocks,
    21        fs2_bytes          => l_fs2_bytes,
    22        fs2_blocks         => l_fs2_blocks,
    23        fs3_bytes          => l_fs3_bytes,
    24        fs3_blocks         => l_fs3_blocks,
    25        fs4_bytes          => l_fs4_bytes,
    26        fs4_blocks         => l_fs4_blocks,
    27        full_bytes         => l_full_bytes,
    28        full_blocks        => l_full_blocks,
    29        unformatted_blocks => l_unformatted_blocks,
    30        unformatted_bytes  => l_unformatted_bytes
    31     );
    32     dbms_output.put_line(' FS1 Blocks = '||l_fs1_blocks||' Bytes = '||l_fs1_bytes);
    33     dbms_output.put_line(' FS2 Blocks = '||l_fs2_blocks||' Bytes = '||l_fs2_bytes);
    34     dbms_output.put_line(' FS3 Blocks = '||l_fs3_blocks||' Bytes = '||l_fs3_bytes);
    35     dbms_output.put_line(' FS4 Blocks = '||l_fs4_blocks||' Bytes = '||l_fs4_bytes);
    36     dbms_output.put_line('Full Blocks = '||l_full_blocks||' Bytes = '||l_full_bytes);
    37  end;
    38  /
    FS1 Blocks = 7 Bytes = 57344
    FS2 Blocks = 4 Bytes = 32768
    FS3 Blocks = 2 Bytes = 16384
    FS4 Blocks = 3367 Bytes = 27582464
    Full Blocks = 1100447 Bytes = 9014861824
    trd_srv_owner@SURV1> declare
      2     l_fs1_bytes number;
      3     l_fs2_bytes number;
      4     l_fs3_bytes number;
      5     l_fs4_bytes number;
      6     l_fs1_blocks number;
      7     l_fs2_blocks number;
      8     l_fs3_blocks number;
      9     l_fs4_blocks number;
    10     l_full_bytes number;
    11     l_full_blocks number;
    12     l_unformatted_bytes number;
    13     l_unformatted_blocks number;
    14  begin
    15     dbms_space.space_usage(
    16        segment_owner      => user,
    17        segment_name       => 'TIBEX_EDPMARKETSTATE',
          segment_type       => 'TABLE',
    18   19        fs1_bytes          => l_fs1_bytes,
    20        fs1_blocks         => l_fs1_blocks,
    21        fs2_bytes          => l_fs2_bytes,
    22        fs2_blocks         => l_fs2_blocks,
    23        fs3_bytes          => l_fs3_bytes,
    24        fs3_blocks         => l_fs3_blocks,
    25        fs4_bytes          => l_fs4_bytes,
    26        fs4_blocks         => l_fs4_blocks,
    27        full_bytes         => l_full_bytes,
    28        full_blocks        => l_full_blocks,
    29        unformatted_blocks => l_unformatted_blocks,
    30        unformatted_bytes  => l_unformatted_bytes
    31     );
    32     dbms_output.put_line(' FS1 Blocks = '||l_fs1_blocks||' Bytes = '||l_fs1_bytes);
    33     dbms_output.put_line(' FS2 Blocks = '||l_fs2_blocks||' Bytes = '||l_fs2_bytes);
    34     dbms_output.put_line(' FS3 Blocks = '||l_fs3_blocks||' Bytes = '||l_fs3_bytes);
    35     dbms_output.put_line(' FS4 Blocks = '||l_fs4_blocks||' Bytes = '||l_fs4_bytes);
    36     dbms_output.put_line('Full Blocks = '||l_full_blocks||' Bytes = '||l_full_bytes);
    37  end;
    38  /
    FS1 Blocks = 6 Bytes = 49152
    FS2 Blocks = 8 Bytes = 65536
    FS3 Blocks = 4 Bytes = 32768
    FS4 Blocks = 3803 Bytes = 31154176
    Full Blocks = 163827 Bytes = 1342070784
    PL/SQL procedure successfully completed.
    trd_srv_owner@SURV1> declare
      2     l_fs1_bytes number;
      3     l_fs2_bytes number;
      4     l_fs3_bytes number;
      5     l_fs4_bytes number;
      6     l_fs1_blocks number;
      7     l_fs2_blocks number;
      8     l_fs3_blocks number;
      9     l_fs4_blocks number;
    10     l_full_bytes number;
    11     l_full_blocks number;
    12     l_unformatted_bytes number;
    13     l_unformatted_blocks number;
    14  begin
    15     dbms_space.space_usage(
    16        segment_owner      => user,
    17        segment_name       => 'TIBEX_INSTRUMENTADMIN',
    18        segment_type       => 'TABLE',
    19        fs1_bytes          => l_fs1_bytes,
    20        fs1_blocks         => l_fs1_blocks,
    21        fs2_bytes          => l_fs2_bytes,
    22        fs2_blocks         => l_fs2_blocks,
    23        fs3_bytes          => l_fs3_bytes,
    24        fs3_blocks         => l_fs3_blocks,
    25        fs4_bytes          => l_fs4_bytes,
    26        fs4_blocks         => l_fs4_blocks,
    27        full_bytes         => l_full_bytes,
    28        full_blocks        => l_full_blocks,
    29        unformatted_blocks => l_unformatted_blocks,
    30        unformatted_bytes  => l_unformatted_bytes
    31     );
    32     dbms_output.put_line(' FS1 Blocks = '||l_fs1_blocks||' Bytes = '||l_fs1_bytes);
    33     dbms_output.put_line(' FS2 Blocks = '||l_fs2_blocks||' Bytes = '||l_fs2_bytes);
    34     dbms_output.put_line(' FS3 Blocks = '||l_fs3_blocks||' Bytes = '||l_fs3_bytes);
    35     dbms_output.put_line(' FS4 Blocks = '||l_fs4_blocks||' Bytes = '||l_fs4_bytes);
    36     dbms_output.put_line('Full Blocks = '||l_full_blocks||' Bytes = '||l_full_bytes);
    37  end;
    38  /
    FS1 Blocks = 0 Bytes = 0
    FS2 Blocks = 1 Bytes = 8192
    FS3 Blocks = 2 Bytes = 16384
    FS4 Blocks = 252 Bytes = 2064384
    Full Blocks = 76779 Bytes = 628973568
    PL/SQL procedure successfully completed.
    I used one more procedure to find actual space
    set verify off
    set serverout on size 1000000
    declare
       sql_stmt varchar2(1024);
       block_count number;
    cursor tab is
        select owner, table_name,blocks   
        from dba_tables
        where owner=upper('TRD_SRV_OWNER') and table_name like UPPER('TIBEX_QUOTE');
    l_db_block_size NUMBER;
    begin
    dbms_output.put_line('Displaying Actual Space Used for schema TRD_SRV_OWNER ');
    dbms_output.put_line('Log file to Check_counts2.lst ....');
    dbms_output.put_line('....');
    SELECT value INTO l_db_block_size 
    FROM v$parameter WHERE name='db_block_size';
    FOR tab_rec IN tab LOOP
    BEGIN
    sql_stmt:='select count(distinct( dbms_rowid.rowid_block_number(rowid) )) from '
       ||tab_rec.owner||'.' ||tab_rec.table_name;
    EXECUTE IMMEDIATE sql_stmt INTO block_count;
       dbms_output.put_line(rpad(tab_rec.table_name,30)
           ||' '||TO_CHAR(block_count*l_db_block_size)/1024/1024||' Mb'
           ||' ('||TO_CHAR(block_count*l_db_block_size)/1024||' Kb)'    
           ||' Analyze:'
               ||TO_CHAR(tab_rec.blocks*l_db_block_size)/1024/1024||' Mb'
           ||' ('||TO_CHAR(tab_rec.blocks*l_db_block_size)/1024||' Kb)'    
    exception when others then
       dbms_output.put_line('Error counting rows for table '||tab_rec.table_name||' '||SQLERRM);
    END;
    end loop;
    end;
    Displaying Actual Space Used for schema TRD_SRV_OWNER
    Log file to Check_counts2.lst ....
    TIBEX_ORDER                    8585.90625 Mb (8791968 Kb) Analyze:9984.3203125 Mb (10223944 Kb)
    PL/SQL procedure successfully completed.
    Displaying Actual Space Used for schema TRD_SRV_OWNER
    Log file to Check_counts2.lst ....
    TIBEX_QUOTE                    7713.2265625 Mb (7898344 Kb) Analyze:8685.6484375 Mb (8894104 Kb)Regards
    Narasimha
    Edited by: NarasimhaMurthy on 24-May-2010 01:50

  • Issue on space . Disk space increases and decreases automatically

    Hi All,
    In our QA environment for past 2 days we are facing issue on space . some unusual behaviour. Taken threaddumps at that time and found the issue
    "172.30.104.53 [1373723166026] <closed>" daemon prio=3 tid=0x0000000101dca800 nid=0x135f in Object.wait() [0xfffffffd8a9ff000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0xfffffffdf9743658> (a com.day.j2ee.servletengine.HttpListener$Worker)
            at java.lang.Object.wait(Object.java:485)
            at com.day.j2ee.servletengine.HttpListener$Worker.await(HttpListener.java:587)
            - locked <0xfffffffdf9743658> (a com.day.j2ee.servletengine.HttpListener$Worker)
            at com.day.j2ee.servletengine.HttpListener$Worker.run(HttpListener.java:612)
            at java.lang.Thread.run(Thread.java:662)
    Please let me know where exact issue on thread.

    If you are seeing daily increases and decrease in your disk utilization (for example it increases during the day/overnaight but in the morning the disk space has recovered what you are seeing is the impact of Tar optimization.
    The Tar Persistence manager is the underlying storage mechanism for CRX. Data is stored in append only tar files. This means the when you update a node or property the new values are written to the Tar files, the indexes are updated to point to the new location, but the old data is also still left in the file. This mechanism allows for a much faster write mechanism. So the more you frequently you update existing content in your repository the larger you Tar files becomes.
    There is a process called Tar File Optimization that by default is scheduled to run from 2 AM to 5 AM server time. This process identifies all the orphaned data in the Tar files and deletes, there by reducing the size of the tar files on disk.
    So if you are in heavy content migration mode, or moving large amounts of content between instances you can see large swings in your disk space utilization as the Tar file balloons up during the day and then shrinks back down over night. In some cases depending on how large your repository is the 3 hours allotted by default is not sufficent to complete the optimizaiton so you may not be recovering all your disk space. During normal production operations this will normally average out over time and the 3 hour window is enough. However during periods of heavy usage, especially during QA or content migration you may find that your tar files are ever increasing in size. If that happens you need pick a period of time over say a weekend and trigger the Tar File optimization to run until complete to recover as much of your disk space as possible.
    See http://helpx.adobe.com/crx/kb/TarPMOptimization.html for details on Tar File Optimization.
    As someone else pointed out you may also have an issue with your data store which requires a different clean up method.
    Another possible culprit is your Lucene index files. Depending on your data model and repository size you can swings in your Lucene indexes because like the Tar File it periodically cleans itself up and large amounts of content change can cause this cycle to become more pronounced.
    This blog post dicusses in more deapth both Tar File Optimization and Data Store garbage collection. http://blog.aemarchitect.com/2013/06/17/importance-of-aem-maintenance-procedures-for-non-p roduction-boxes/

  • OBIEE Dashboard prompt space Increase

    Hello,
    I have requirement, where management doesn't like the crowded prompts in dashboard (Oracle Business Intelligence 10.1.3.4.1), is there any way i can increase the space between two prompts ? Seems like something to do with js pages but not exactly sure from where to start ??
    Your help will be greatly appreciated.
    Cheers!

    If I understood you correctly you want the Prompt to show the BU Name but the SQL should filter on its corresponding ID ... BU ID ... as we all know that SQL works better when filtering on IDs rather than TEXT such as a name.
    Well ... 2 weeks ago I put a SR as I think I have found some interresting bugs on this feature.
    First of all you have to set this up in your RPD. Go to the BU Names Properties in the Business modell. In the General Tab you'll find something called Descriptor ID Column. Here you can set what this column should really use when filtering ... so here you set BU ID. that's it. Easy right?
    Now to the bugs.
    Bug #1 - If you do this and now try out a very simple analysis, drag and drop this BU Name on the report, drag a fact next to it, now go to Results and everything should look as it should. Now ... drag the BU Name upwards so it becomes a Table Prompt ... and now comes the bug, try to chose another item on the BU NAme ... ERROR!!!
    Bug #2 - Try to make a Union of the previous Analysis. Make the other dataset exactly the same jsut for the ease of it. Now ... right cklick on the upper dataset and its BU Name, create a filter and set it to be prompted. Create a Dashboard prompt to filter on BU Name, Create a Dashbord with these two items ... and run it ... good luck ;)
    As I said ... I've created a SR of this 2 weeks ago and still no answer but the generic one ... "Your update has been received" hahaha
    So to answer your question, YES you can filter on BU Name using BU ID, as long as you don't filter on it with a Table Prompt. But funny enough it DOES work if I use it on a Dashboard prompt hahaha

  • DB space history not updating in DB02 after upgrading to NW7 patch level 11

    We upgraded our NW04 system to NW7 patch level 11 and now when I go into DB02 and click on DB space history there is no new data since the upgrade.  SAP_Collector_For_PerfMonitor runs every hour without error.  I've checked st22 and there are no shortdumps and I can't find any timeout issues.  Ideas?

    You may need to a newer release of saposcol.  Saposcol comes with your kernel, if you haven't updated your kernel recently that could be a conflict with your saposcol.
    Lee

  • Disappearing Hard Drive Space After Yosemite Update

    After installing OS X Yosemite my hard drive space has dwindled to basically nothing, rendering my computer useless.  I had at least 50 gb (maybe more) of hard drive space before updating from mavericks to yosemite.  Now, after using my computer for 30 mins or less I get an error message saying that my storage space is low. After a restart I will get about 600 mb of storage but then the cycle repeats.  Since I have upgraded to Yosemite I have not saved or downloaded any large files but there is a significant amount of storage space (104 gb) used in the other category.  It is not consistent with my usage. I initially had file vault encryption turned on but I thought maybe that was the cause of my disappearing hard drive space so I turned file encryption off and still no luck.
    Please Help!
    Problem description:
    Hard drive space disappearing after installing OS X Yosemite.
    EtreCheck version: 2.1.8 (121)
    Report generated February 11, 2015 at 2:44:51 AM CST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (Retina, 13-inch, Late 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro10,2
        1 2.5 GHz Intel Core i5 CPU: 2-core
        8 GB RAM Not upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en0: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 427
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD spdisplays_2560x1600Retina
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Time since boot: 0:34:43
    Disk Information: ℹ️
        APPLE SSD SM256E disk0 : (251 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) /  [Startup]: 249.77 GB (645 MB free) (Low!)
                Core Storage: disk0s2 250.14 GB Online
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hidhook (8.0 18354.823166) [Click for support]
        [not loaded]    com.parallels.kext.hypervisor (8.0 18354.823166) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (8.0 18354.823166) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (8.0 18354.823166) [Click for support]
        [not loaded]    com.parallels.kext.vnic (8.0 18354.823166) [Click for support]
            /Library/Application Support/Roxio
        [not loaded]    com.roxio.TDIXController (1.7) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.deepseasoftware.driver.CDSDAudioCaptureSupport (1.3) [Click for support]
    Launch Agents: ℹ️
        [loaded]    com.coupons.coupond.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [loaded]    com.leapfrog.connect.shell.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.synium.cleanappdaemon.plist [Click for support]
        [loaded]    jp.co.canon.MasterInstaller.plist [Click for support]
    User Launch Agents: ℹ️
        [failed]    com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist [Click for details]
        [loaded]    com.yahoo.YahooContactSyncAgent.plist [Click for support]
    User Login Items: ℹ️
        Dropbox    Application  (/Applications/Dropbox.app)
        CitrixFMDPrefPlugin    UNKNOWN  (missing value)
        Canon IJ Network Scanner Selector EX    UNKNOWN Hidden (missing value)
        Canon IJ Network Scanner Selector EX    Application Hidden (/Applications/Canon Utilities/IJ Network Scanner Selector EX/Canon IJ Network Scanner Selector EX.app)
    Internet Plug-ins: ℹ️
        LogitechHarmony: Version: 2.0 - SDK 10.7 [Click for support]
        DirectorShockwave: Version: 12.0.2r122 - SDK 10.6 [Click for support]
        MeetingJoinPlugin: Version: Unknown - SDK 10.6 [Click for support]
        o1dbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.0.11 [Click for support]
        Silverlight: Version: 5.1.20513.0 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0
        CitrixICAClientPlugIn: Version: 11.2.0 [Click for support]
        googletalkbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        CANONiMAGEGATEWAYDL: Version: 3.1.0.2 [Click for support]
        CouponPrinter-FireFox_v2: Version: 5.0.3 - SDK 10.6 [Click for support]
        SharePointBrowserPlugin: Version: 14.3.1 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: Java 7 Update 71 Check version
    User internet Plug-ins: ℹ️
        WebEx64: Version: 1.0 - SDK 10.6 [Click for support]
        WebEx: Version: 1.0 [Click for support]
        npBcsMcTcIO: Version: Unknown [Click for support]
        SlingPlayer: Version: Unknown [Click for support]
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        Citrix Online Plug-in  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Java  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 249.77 GB Disk used: 249.12 GB
        Destinations:
            Seagate Backup Plus Drive [Local]
            Total size: 2.00 TB
            Total number of backups: 4
            Oldest backup: 2014-11-30 04:17:38 +0000
            Last backup: 2015-02-11 07:50:52 +0000
            Size of backup disk: Excellent
                Backup size 2.00 TB > (Disk size 249.77 GB X 3)
    Top Processes by CPU: ℹ️
            13%    WindowServer
            12%    com.apple.WebKit.Networking
             6%    Safari
             4%    hidd
             2%    com.apple.preference.security.remoteservice
    Top Processes by Memory: ℹ️
        215 MB    Safari
        103 MB    WindowServer
        77 MB    Dropbox
        69 MB    mds_stores
        69 MB    com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
        2.53 GB    Free RAM
        4.06 GB    Active RAM
        988 MB    Inactive RAM
        1.02 GB    Wired RAM
        1.63 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 11, 2015, 02:09:09 AM    Self test - passed
        Feb 11, 2015, 01:12:53 AM    /Library/Logs/DiagnosticReports/CleanApp Daemon_2015-02-11-011253_[redacted].crash
        Feb 9, 2015, 06:34:50 PM    /Library/Logs/DiagnosticReports/CleanApp Daemon_2015-02-09-183450_[redacted].crash
        Feb 8, 2015, 11:50:38 PM    /Library/Logs/DiagnosticReports/firefox_2015-02-08-235038_[redacted].cpu_resour ce.diag [Click for details]
        Feb 8, 2015, 05:46:48 AM    /Library/Logs/DiagnosticReports/firefox_2015-02-08-054648_[redacted].cpu_resour ce.diag [Click for details]
        Feb 11, 2015, 01:22:51 AM    /Library/Logs/DiagnosticReports/backupd_2015-02-11-012251_[redacted].cpu_resour ce.diag [Click for details]

    You are too low on drive space for iDVD to run properly. It is recommended that you try to have about 15-20 GB free for the application to run. See if you can delete anything to free up more space. Or, move more of your files to your external drive. iDVD needs to be on your computer's drive, so don't move it, or any of the iLife applications to your external drive.
    You can create iMovies on an external drive, move your entire iPhoto and iTunes libraries to external drives, but I find iDVD works better if I create its projects on my main drive. I save all of my iDVD projects as disk image files and then move those files to my external drive for saving my projects. This allows me to delete the original iDVD project and the original iMovie project used in it, which gives more free space on my drives.

  • Not enough free space in / for updates. How do I free up?

    Hi guys, recently I had a lot of work to do and I didn't updated my arch because of the risk of some instability. Now when I'm done and have free time to cope with issues if there are any I saw that I have lots of lots of updates totalling in 1857.10 megs after installation. Problem is that I have only 1.5G in my / partition. How do I free up some space? What have eaten 11 gig partition? I've done pacman -Scc (I know its not recommended) and deleted unused apps. now after I have downloaded the updates I have 1.5 gig and they total in 1857 megs. What do I do? One thing I haven't payed attention is the way new updates are installed. Are the new files just replacing the old ones or the old ones still exist and the new ones are coppied too? If the files are being replaced maybe my space will be enough, but who knows This is from df -h if it is in any help http://pastebin.com/4TRZZyPS Thanks to everyone who share an idea

    A opportunity to re-think your toolchains.
    use only light-weight, powerful softwares.
    Here is my tool chain.
    gqview 2892.00 K
    elfutils 2932.00 K
    libxslt 3024.00 K
    gcc-libs 3052.00 K
    libsamplerate 3092.00 K
    libtiff 3176.00 K
    shared-mime-info 3219.00 K
    recode 3380.00 K
    postgresql-libs 3504.00 K
    poppler 3508.00 K
    krb5 3552.00 K
    bash 3644.00 K
    libxcb 3688.00 K
    aspell 3692.00 K
    libgl 3704.00 K
    gdk-pixbuf2 3760.00 K
    fontconfig 3764.00 K
    xorg-server 3832.00 K
    libmp4v2 3844.00 K
    pam 3988.00 K
    pango 3996.00 K
    guile 4063.00 K
    shadow 4068.00 K
    kbd 4308.00 K
    linux-api-headers 4356.00 K
    slime-cvs 4472.00 K
    gsfonts 4560.00 K
    gnupg 4585.00 K
    fortune-mod 4800.00 K
    gnutls 5125.00 K
    xkeyboard-config 5252.00 K
    tk 5328.00 K
    tzdata 5627.00 K
    mpd 5815.00 K
    nss 5824.00 K
    tcl 5924.00 K
    mutt 6400.00 K
    fbreader 6464.00 K
    fltk 6620.00 K
    gnupg2 6932.00 K
    gobject-introspection 7036.00 K
    util-linux 7040.00 K
    js 8060.00 K
    xorg-fonts-misc 8188.00 K
    p7zip 8352.00 K
    xfe 9057.00 K
    gdb 9172.00 K
    imagemagick 9223.00 K
    firefox 9428.00 K
    ncurses 9432.00 K
    openssl 9864.00 K
    glib2 10000.00 K
    gstreamer0.10-base 10396.00 K
    libxml2 10704.00 K
    libx11 10707.00 K
    poppler-data 12152.00 K
    gstreamer0.10 12780.00 K
    db 13312.00 K
    mplayer 13816.00 K
    git 13864.00 K
    coreutils 13956.00 K
    docbook-xsl 14512.00 K
    binutils 15092.00 K
    fox 15108.00 K
    xorg-fonts-75dpi 15968.00 K
    ttf-dejavu 16938.00 K
    xorg-fonts-100dpi 17260.00 K
    pygtk 17524.00 K
    ppl 17916.00 K
    tango-icon-theme 18364.00 K
    wxgtk 18668.00 K
    ruby 18860.00 K
    groff 19424.00 K
    ffmpeg 19632.00 K
    gettext 21672.00 K
    postgresql 24197.00 K
    subversion 25801.00 K
    vim-runtime 25928.00 K
    cmake 26236.00 K
    fcitx 27056.00 K
    amsn 31744.00 K
    glibc 32304.00 K
    linux-firmware 32908.00 K
    gtk2 34609.00 K
    perl 43339.00 K
    linux-headers 44260.00 K
    linux 58860.00 K
    gimp 62116.00 K
    gcc 64348.00 K
    smbclient 64772.00 K
    python2 69420.00 K
    xulrunner 78090.00 K
    chromium 86972.00 K
    emacs-nox 92992.00 K

  • Invalid Color Space error after update Reader to 9.3.3

    After updating Adobe Reader to 9.3.3 I run into the Invalid Color Space error when trying to open a PDF file created with CorelDraw 12 in the format PDF/X-1A.  This format needed by a printing office to print the file. The strange thing is that Reader opens older PDF files exported from CorelDraw in thsi format normally without the error message.
    It happens only with PDF exports made after the Reader update. CorelDraw settings are as previously used.
    Exports in other formats, other than  PDF/x-1, X-1A and X-3 open normally.  How to solve this??

    any suggestions?

  • Why doesn't free space increase when I delete songs?

    I have a 3rd gen iPod Nano that I have had for 4+ years. I had a problem with it last week - I was no longer able to copy songs to it, so I did a restore and then reloaded a bunch of songs. This worked fine. Now what I find, though, is that when I delete songs, the amount of free space available does not increase (no matter how many I delete). Does anyone have any idea what's causing this? Thanks.

    So you manually manage the iPod's contents then?  Are you deleting the tracks from the iPod itself or from your actual iTunes library?
    What happens if you do a hard reset the iPod after removing the content?  Do the free space reappear then?
    B-rock

Maybe you are looking for

  • How to get the day value from the current time?

    Hi, I like to write a program that prints out the current time in the formate as "Thu May 3 07:57:02 PDT 2002". Then I want to get the day, time, year and month value out and do some manipulation. I know to format the current time, I can use SimpleDa

  • Rounded corners

    Hi there, I'm developing a report in BI Publisher 11g's Layout Editor. I need to have a text box with rounded corners. I would also like to have the same functionality in tables. Is this possible in the layout editor? Thanks, Tiago

  • List View always opens folders at the BOTTOM of the list... Help!

    This is a very annoying little problem I've encountered. I have 2 folders in my dock - Applications and Downloads. I like to have my Downloads folder open as a List when I click on it, however it always opens the folder at the very bottom of the list

  • Trying to install Photoshop Cs6

    I have been trying to install Photoshop for the last 7 hours with no luck I've tried the support chat but they refused to help with it. I have downloaded the .exe file and the 7z file and every time I try to open the exe file I get the same message o

  • Numbers moving column & row headings

    I have a large document which has lots row and column headings (in the grey area) but they keep moving. Is there any way I can freeze these so they stay static but the information below moves. ? Just starting to use numbers so all your help is absolu