E72 Log files eating disk space FW81

Hi, after upgrade to FW81 I can see excess of log files. After a few weeks it was massive number of files that took several minutes to deleta. It also released about ~6MB of memory.
I need to stop generating this log files, advice how.
Path:
c:\data\logs\Eng\Ods\
Files are:
{17digits_possibly_date_time}_GALRequest.xlm
Content:
<AccountSetup><Request OP="GetEmailAccts"/></AccountSetup>
{17digits_possibly_date_time}_GALResponse.xlm
<AccountSetup><Response OP="GetEmailAccts"><EmailAccountType="POP3 UserDisplayName=... etc.
Looks it's EMAIL application who's generating that mess. BTW, the same isse is on my colleague's E72.
Thanks,
Jan
Solved!
Go to Solution.

I have the same problem. My E72 becomes full (memoria) and slow! (I have the latest software and this problem started when I updated the E72).
How can I stop the creation of these file time?! Please, tell me step-by-step.
---------------Phone memory / logs / Eng / ods / FILES xml request-response
Every day (before I go to bed), I have to delete these XML/s and the E72 is about 20 minutes to delete them. 
I have also formatted the mobile+card and nothing!.  This problem starts again, when I start creating Email account configuration (why?!).
Please, I want to stop these XML/s files forever!
BR
Moderator's note: Personal email address and phone number removed. It is unwise to share personal information on a public forum.

Similar Messages

  • RMAN9I HOW TO RESTORE ARCHIVE LOGS WITH LIMITED DISK SPACE

    제품 : RMAN
    작성날짜 : 2002-12-09
    RMAN9I HOW TO RESTORE ARCHIVE LOGS WITH LIMITED DISK SPACE
    ==========================================================
    PURPOSE
    이 자료는 Oracle 9.2 이상의 RMAN에서 사용 가능한 MAXSIZE 기능에 대하여
    설명할 것이다.
    How to restore archive logs with limited disk space
    Old Backup을 사용하여 RMAN으로 database를 recvoery할때, 모든 archived
    redo logfile들을 Restore할 destination의 disk space가 모자란 경우를 종종 만난다.
    이러한 경우 여러 개의 restore and recovery job으로 나누어 수행한다.
    즉, 첫 번째 restore and recovery job이 끝나면 archived redo logfile들을 지우고
    다음 적용될 것들을 restore한다. 그리고 다시 Recovery를 수행한다. 이러한 작업을
    원하는 시점까지 recovery를 하기위해 반복적으로 수행한다.
    Oracle 9iR2(9.2.0.x)부터 RMAN은 MAXSIZE option을 제공하는데 이것은 archive log
    file이 restore될 disk의 space를 control할 수 있게 해 준다.
    만약 disk space가 매우 제한적이라면, 즉 예를 들어 모든 archive log의 size 합보다
    disk free space가 적다면 MAXSIZE option을 사용하는 것은 매우 유용하다.
    이 OPTION이 기술되면 RMAN은 Media Manager에게 disk space 크기에 부합하는 만큼만
    archive log들을 restore하도록 한다. 부가적인 restore operation들은 restore된
    마지막 archive log가 적용될 때마다 발생한다.
    MAXSIZE option은 이러한 작업들을 하나의 rman job으로 처리하게 해 주고
    실수를 하지 않게 해 준다.
    아래는 MAXSIZE를 설명하기 위한 예제이며 총 6 단계로 구성되어 있다.
    STEP 1: Add data to the database to enforce log switches
    STEP 2: Backup the database and archive logs and delete the logs
    STEP 3: Add additional data to enforce new log switches
    STEP 4: Remove the data file and simulate a database crash
    STEP 5: Restore the data file from the backup
    STEP 6: Recover the database using MAXSIZE
    위 예제는 Unix와 Windows 모두에 적용될 수 있다.
    STEP 6 는 다음과 같은 조건으로 두 번 수행될 것이다.
    1) MAXSIZE가 archive log size보다 작은 경우:
    이 경우 RMAN-6558 Error message를 만나게 된다.
    그러므로 MAXSIZE를 archive log보다는 크게 설정해야한다.
    2) MAXSIZE가 archive log size보다 큰 경우:
    예를 들어 여러 개의 archive log를 포함할 수 있을 정도로 크게 설정하면
    restore/recovery는 user에게 transparent하게 수행되어진다.
    즉 archive log들은 restore된 후 applied되고 deleted되어 진다. 다시 새로운
    archive log들이 restore되어지고 applied된 후 deleted 되어 진다. 이러한 작업은
    recovery가 끝날 때까지 반복되어진다. 이러한 작업들이 진행되는 동안 RMAN은
    아무런 Message도 발생시키지 않는다.
    # Step 1: INSERT enough new data to generate log switches
    create table rman_tst (col1 varchar2 (10));
    begin
    for i in 1..30000 loop
    insert into rman_tst values(i,'test');
    commit;
    end loop;
    end;
    # Step 2: BACKUP the database and the archive logs automatically
    # and then delete the input
    run {
    backup database format='/web01/usupport/krosenme/admin/backups/db_%d%s%t'
    plus archivelog format='/web01/usupport/krosenme/admin/backups/arch_%d%s%t'
    delete input;
    # Step 3: INSERT enough new data to generate new log switches
    begin
    for i in 1..30000 loop
    insert into rman_tst values(i,'test');
    commit;
    end loop;
    end;
    # Step 4: REMOVE users01.dbf file and crash the database
    mv users01.dbf users01.org
    shutdown abort
    # Restore is now needed as the data file is deleted. The backup was
    # taken before the new data was added to it, thus archive logs are
    # needed to bring the database up to date
    # Step 5: RESTORE the data file from the full backup
    run {
    restore datafile '/web01/usupport/krosenme/oradata/kro_920/users01.dbf';
    # Step 6: RECOVER
    run {
    recover database delete archivelog maxsize 10 K;
    # This will fail with RMAN-6558 as the archived log has a size of 16 KB,
    # which is bigger than MAXSIZE limit of 10 KB. So the error is expected
    # and MAXSIZE works as designed.
    # Now rerunning STEP 6: but with MAXSIZE 50 K
    run {
    recover database delete archivelog maxsize 50 K;
    RELATED DOCUMENTS
    Recovery Manager Reference, Release 2 (9.2)

    cold backup means offline backup, you shut database normally and copy datafiles to another location.
    i think operating system does not matter that much but it is RedHat Linux Enterprise Server.
    backing up archivelogs whith rman script which is:
    run {
    allocate channel c1 type disk format '$BKUPLOC/arch_%d_%u_%s_%p.bkp';
    change archivelog all validate;
    sql 'ALTER SYSTEM ARCHIVE LOG CURRENT';
    backup archivelog time between 'SYSDATE - (30*60/(60*60*24))' and 'sysdate';
    release channel c1;
    so here is the details.
    1. because everything is lost, we restored all files(datafiles, controlfiles, redologs etc) from offline backup meaning copied all files from another location to corresponding location.
    2. want to apply archive logs which were created after cold backup till disk failure and we have these archive logs with backups which were taken by rman.
    So
    first of all, we want to register these archive log rman backups(because these backup information does not exist in restored controlfile)
    and then restore them and then apply them.
    we need rman commands to register these backups and restore them.
    Regards,
    Kamil

  • Spotlight eating disk space os x snow leopard

    Hello,
    I have 2 major problems. The first is that Spotlight, for at least 1 or 2 years, has continually eat disk space on a half-hour basis. It would go from gigabytes and drain down to zero and then back up again and then down. This slows down my Mac Pro because the disk is continually writing. Sometimes it would stop if I restarted the computer but it would only be for a couple hours.
    I know that it is Spotlight because when I took my whole hard drive and dragged it to the "excluded" side in System Settings>Spotlight and it stopped doing what I mentioned above. I'm trying to find solutions that do not have to do with reinstalling Snow Leopard as I have so many things that I need to download of the internet and I have to keep doing so over and over everytime I re-install.
    Could it be something with the Spotlight plist? I've checked all my caches and they aren't large at all.
    2nd Major Problem:
    Spotlight is taking up over 20 gigabytes to index. Why?
    Thanks,
    spiral

    Erase the drive and reinstall Snow Leopard.
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, set the format type to Mac
             OS Extended (Journaled, if supported), then click on the Partition button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. Be sure you configure your initial admin account with the exact same
             username and password that you used on your old drive. After you finish Setup
             Assistant will complete the installation after which you will be running a fresh
             install of OS X.  You can now begin the update process by opening Software
             Update and installing all recommended updates to bring your installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

  • SQL Logs filling up disk space

    Hi there,
    On my DEV SQL Server - suddenly the logs have been filling up space so quickly - this morning I increased 10 GIGs and now it is full again just in a few hours.
    What action should I take?
    - Is it okay to switch Recovery Model from Full to Simple? (It is DEV server)
    - Anything else?
    Thanks.

    Hi frob,
    For development databases, if you don’t care that if recent data changes are lost, you can change the recovery model from full to simple. Then shrink the transaction log file to a reasonable size, below is a example for you, please note that you can't shrink
    it below its original size.
    USE AdventureWorks2012;
    GO
    -- Truncate the log by changing the database recovery model to SIMPLE.
    ALTER DATABASE AdventureWorks2012
    SET RECOVERY SIMPLE;
    GO
    -- Shrink the truncated log file to 1024 MB.
    DBCC SHRINKFILE (AdventureWorks2012_Log, 1024);
    GO
    Additionally, there are other options resolving the issue that SQL Server  log file grows out of control as follows.
    • Backing up transaction logs frequently.
    • Adding a log file on a different disk.
    • Completing or killing a long-running transaction.
    Reference:
    Troubleshoot a Full Transaction Log
    SQL Server Runaway Transaction Logs
    Managing the SQL Server Transaction Log: Dealing with Explosive Log Growth
    Thanks,
    Lydia Zhang

  • Time machine files and disk space warning.

    hello, i have ran into some unknown issues with my os x and even though there have been similar topics discussed i would like to address mine and i hoe someone can help me out.
    1. I am not sure if I accidentally turned on time machine or not , but at some point when i restarted a computer i noticed different folders and files that i have not created myself on my HD such as
    .com.apple.timemachine.supported
    .fseventsd
    .hotfiles.btree
    .Spotlight-V100
    .Trash
    .vol
    var
    etc
    tmp
    I do not know if this folders are safe to delete, since i am not using time machine.
    2. Trying to download rather big file 34gb i received numerous warnings that my disk isfull, and it is not. i have 105GB used and 126GB free, also I am using 4gb RAM. so there should not be a problem. I saw a few topics regarding disk space warning, that were suggestinng that the user runs an application which shows where most of HD is used.
    I cleaned a few stuff, but still, how can I prevent from this warning to appear.
    Thank you for any suggestions

    can i hide them?
    Update: found terminal command to hide the successfully.
    i ran verify disk and verify disk permissions and everything is OK.
    following reports were made:
    Verifying volume “Macintosh HD”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Macintosh HD appears to be OK.
    Verify permissions for “Macintosh HD”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "private/var/log/secure.log", should be -rw------- , they are -rw-r----- .
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions differ on "Library/Preferences", should be drwxrwxr-x , they are drwxrwxr-- .
    Permissions differ on "Library/Application Support", should be drwxrwxr-x , they are drwxrwxr-- .
    Permissions differ on "Developer/Examples/JavaWebObjects/DataBaseSetUp/dbdump.sh", should be -rw-rw-r-- , they are -rwxrwxr-x .
    Permissions verification complete
    Repairing permissions for “Macintosh HD”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "private/var/log/secure.log", should be -rw------- , they are -rw-r----- .
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions differ on "Library/Preferences", should be drwxrwxr-x , they are drwxrwxr-- .
    Permissions differ on "Library/Application Support", should be drwxrwxr-x , they are drwxrwxr-- .
    Permissions differ on "Developer/Examples/JavaWebObjects/DataBaseSetUp/dbdump.sh", should be -rw-rw-r-- , they are -rwxrwxr-x .
    Permissions differ on "Developer/Examples/JavaWebObjects/DatabaseSetup/dbdump.sh", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions repair complete
    still bugs me why i am getting this warnings, nothing today but you never know when next one will pop...
    Message was edited by: g3m1nn1
    Message was edited by: g3m1nn1

  • Mail logs filling up disk space: why? ok to delete?

    Computer spec’s: 2GHz Mac Mini with 4GB of RAM and a 250GB flash storage. I am running OS 10.9.5 and Mail 7.3.
    Problem: My storage has been mysteriously filling up, with about 200 GB in “other” in “about this Mac.” I would delete files and then it would fill up again. Using WhatSize, I determined that Mail logs took up 107GB, with two files accounting for most of this (details below).
    Questions: Is it safe to delete Mail logs? Why are some so big? Why are dates so random? Can I prevent large mail logs in the future?
    In Library/Containers/com.apple.mail/Data/Library/Logs, here are the dates and size of the largest files named in format: [long stream of numbers and letters]=imap.gmail.com.txt
    July 15: 55.8 GB
    Sept 3: 47.17 GB
    Aug 6: 5.43 GB
    Aug 6 3.64 GB
    Then there are six files between 312GB and 867.2 GB and many others named in the above format and multiple files named in this format: [date]_GmailDelete.log dating back to May 21.
    Thank you for your help.

    Hi, I'm having a very similar trouble but I do not use Gmail. I have several mail accounts, essentially from 2 mail server providers (hosting and registrar companies), most accounts in IMAP but some still in POP.
    I'm on a PowerBook pro, retina 15 mid 2012, 2.7 Ghz Intel Core i7, with 750 Gb SSD disk", running OS X Yosemite 10.10.2
    Since one week I experience the same problem, disk space filling up without appearant reasons. In the Data/Library/Logs/Mail I have 541 files (!!), some of them very huge. I have deleted a 75 Gb file and another of 13Gb, but I still have files from more than 9Gb (ten file obver 1Gb).
    I have changed passwords in my accounts and even to access my hosting proividers. But no changes.
    Deleting the huge files in the Logs doesn't seem to affect Mails except the fact that I have to enter all POP / IMAP and SMTP passwords :-(
    In the logs, the hugest files are "2015-03-18_IMAPMailboxSyncEngine.log", 2mail.mydomainname-d44f367b-6650-4ddf-9cc6-4fe08822ab6c.txt", "2015-03-21_SocketStreamEvents.log", "137778C8-7690-48F3-877E-48D400322117-mail.mydomainename.txt", and I have plenty like that.
    The question is, where the problemn comes from ??
    When deleting the log files ... the problem is not solved because it continues to filling it with new logs, again ..
    Thank you for your assistance and help.

  • Flip4Mac eats disk space Even if i save to External

    I'm using Veoh. a program to download movies from veoh.com
    so i downloaded some and after they get downloaded. since they are WMV files, Flip4mac( a program to view wmv in quicktime)says "importing...." and as that happens it eats up diskspace from my Computter HD.
    But usually when Flip4mac says "Importing" it doesn't create copies of movies. it just loads the wmv into quicktime. SO why is it eating disk space

    Hmmm, let's try this for a start.
    Oh, are you using FileVault?
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, 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. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot.
    The usual reason why updates fail or mess things up, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates again, or even do an A&I if you have enough free disk space.

  • Save Log file from Disk Utility App running from Recovery HD?

    Background:
    I had an issue with QT and screen recording; it was coming out solid green. I read on Apple Support that I should restart holding down Command-R. I did that, booted into Recovery HD, then opened Disk Utility. I repaired permissions, then decided to repair my HDD for good measure. I noticed that Disk Utility did make a repair to my HDD. Something like "found 57" instead of "56" files in the directory on the HDD; directory needs to be updated. Not sure, I just remember those numbers… "56" is what the system knew of but there were really "57" on the HDD. I sound ignorant… I know.
    After I rebooted QuickTime worked correctly (maybe merely repairing permissions was the solution) however another issue, I have been struggling with for years, was also resovlved!
    I have been having an issue for years with an Icy Dock external enclosure in RAID 1 mode with my older 2009 iMac. The issue remained after upgrading from Snow Leopard to Tiger to Mountain Lion and resetting PRAM and repairing permissions and repairing it's HDD etc. many times over. After powering up the enclosure a message would appear: "The Disk you insterted was not readable by this computer." "Initialize…" "Ignore" "Eject". Then the volume would mount on the Desktop behind the warning and work perfectly. I would then click "Ignore". I had modified the old iMac with an internal SSD in place of the optical drive… at one point.
    I recently sold that iMac and bought a 2012 iMac
    Regardless I continued to have the same issue with the enclosure and my new iMac. However, after repairing the internal HDD today, the external Icy Dock RAID now mounts without giving me a warning to, "Initialize…" "Ignore" "Eject". This warning was appearing just before I repaired permissions and repaired the internal HDD on the iMac using the Recovery HD. In fact the reason I was tyring to use QT screen capture was to make a screen capture of the terminal window process while runing a "diskutil activity" command during powering-on my external enclosure to send to Icy Dock to troubleshoot this cross computer and cross OS incompatibility with their enclosure.
    My external RAID enclosure wasn't even powered on during repair of the internal HDD?! So how could a brand new iMac's HDD directory be effected in such a way by an external RAID enclosure as to make changes to it's directory. And now how could an issue with mounting an external RAID enclosure be corrected by repairing the directory structure on the internal HDD on the iMac? Could it be a conflict with USB IDs? Are those written to the directory? The internal and external sharing the same ID and the external having to be unmounted and remounted using a new ID each time? How could it have been repaired? Lots of questions…
    Main Question:
    Anyway,,, I want to copy the Disk Utility Log from my Recovery HD so I could see exactly what was repaired and report it to Icy Dock. But I am not sure if the log files are saved or not when rebooting from Recovery HD. Not sure how I could find the log file at this point. Are logfiles saved when running DiskUtility from the Recovery HD???
    Sorry for the length.

    Oh crap. The enclosure was working properly, now it's exhibiting the same problem as before and I haven't even rebooted the computer yet. So, what's up?

  • Song tracks are not downloaded properly from iTunes Store: they are not added to the playlists, and eat disk space

    Hi,
    Yesterday I wanted to upgrade my wife's iPhone (5, 16 GB) from iOS 7.0.6 to iOS 7.1.
    She had only 500 MB of free space, and 1.9 GB was needed, so I decided to temporarily remove a number of songs from her music library.
    After this operation there was 2 GB free, and the upgrade went successfully.  After the upgrade there was still 2 GB free.
    Then I wanted to download the songs again, and here something went wrong:
    I went to iTunes Store > More > Purchased > Music, and clicked on "Download all".
    When the download process was completed, there was about 500 MB free space, but I noticed that some of the tracks, and even a complete album, were actually not in the playlists; in another album only one of the 30 tracks or so was downloaded.  So I went again into iTunes Store > More > Purchased > Music, and indeed some of the tracks were still marked as "to download", with a little cloud in front of them.
    When I tried to click on one of these little clouds to download a given track, the track seemed to be downloaded, but as soon as the download was finished the little cloud reappeared again, and the track wasn't added to the playlists.
    I tried to repeat that process a few times, until I noticed that there was now only 90 MB of free space.
    I then tried to download one more track that was 10 MB large, and after this there was only 80 MB of free space.
    So it seems that the tracks are indeed downloaded (and downloaded again if I click again on the little cloud) in a place where they use disk space without being otherwise accessible.
    What can I do to:
    1. download the tracks correctly so that they appear in the playlists?
    2. clean up the space that was wasted?
    Many thanks in advance!

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting the incomplete tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those tracks and use the 'Report a Problem' link and fill in details about the problem (iTunes support should reply within, I think, 24 to 48 hours).
    Some people have had a problem with the 'report a problem' link (it's been taking people to this site on a browser instead of showing a form in iTunes) - if it does that to you then try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page.

  • My C drive is 19.5 GB. xp sp3 took 5.05 GB.Firefox also installed here . There's no room for new downloaded files.So I changed the save to option in another drive. Still when downloading large files 'low disk space' message shown.

    suppose I want to download a 4 or 5 GB file,in C:/ there is usually 2 or 3 GB left.So I changed the directory of saved files to E:/.Still low space problem occurs and the newly downloaded file is not saved.A low disk space message is shown.Why is this showing?How to resolve this?

    in options under the "general" tab change the download folder,if that does not help change the option to "ask every time".I recommended to use DAP to download your files its great and accelerates your speed quite a lot.
    link: www.speedbit.com

  • Jdeveloper 11.1.1.5 - how to change path for log file for Disk quoto exceed

    I am trying to deploy to my jdev integrated webserver and am getting Disk quoto exceeded error.
    How do I change the path so it goes to /scratch/<user>/ ... or something other than /home/<user>
    <Jul 7, 2011 1:53:01 PM PDT> <Notice> <Log Management> <BEA-170019> <The server log file /home/<user>/.jdeveloper/system11.1.1.5.37.60.13/DefaultDomain/servers/DefaultServer/logs/DefaultServer.log is opened. All server side log events will be written to this file.>
    Handler: '/home/<user>/.jdeveloper/system11.1.1.5.37.60.13/DefaultDomain/servers/DefaultServer/logs/DefaultServer.log' raised exception when flushing.
    Caused By: weblogic.store.PersistentStoreFatalException: java.io.IOException: Error syncing file, Disk quota exceeded, errno=122
    #### Cannot run application TravelRequestApplication due to error deploying to IntegratedWebLogicServer.

    Set the USER Home directory as explained here:
    http://download.oracle.com/docs/cd/E21764_01/install.1111/e13666/ojdig.htm#BDCJCHDF

  • IBooks Author versions eating disk space

    Hello
    running iBooks Author Version 2.2 on Yosemite 10.10.3
    It seems that the automatic saving does not save only the changes to the project, but the whole project every time.
    On a big project that consumes GBs of disk space.
    In earlier versions of iBooks Author you were able to delete non used versions from within the App:
    Why is iBooks Author using up my scratch disk space?
    I found out where the versions are saved (in a hidden folder where you have no privilegies).
    I gave myself the privilegies needed and deleted 1 of the earlier versions...
    Not a good idea...
    If i go to File -> Revert (maybe bad translation from German) the App hangs an blocks the whole system...
    Has anybody found a solution to recover disk space used by iBooks Author versioning?

    Your computer but....are  you working on a network at the school or in your home with  your own  net connection?
    Networks have exclusions set  by the IT department to prevent misuse.
    A book exported to PDF , should  show teh  book content , albeit, slighty different to what your see in iBA or iBooks when previewed.  Again, it  if you are on a network, there may be issues.
    Run a text with a default template saved from iBA and see what the result  is.

  • How to split a large file when disk space is limited

    I have a long (200 minutes) DV clip which uses up most [40 GB] of my external hard drive. The last 90 minutes of the clip is blank, and I need to delete the corresponding [18 GB] filespace to free-up space on my hard drive for editing.
    How do I delete a portion of the file without having the 22 GB of free space Quicktime seems to need to temporarily store the new (smaller file).
    Thanks,
    David

    I modified the program as follow:
    ZipEntry entry = new ZipEntry(file.getName());
    entry.setTime(file.lastModified());
    zip.putNextEntry(entry);
    byte[] bytes=new byte[1024];
    int len;
    while ((len=in.read(bytes))>0) {
    zip.write(bytes,0,len);
    And now it is working. I can zip a file with 125MB size.
    Thank you for your help.
    Michelle

  • ReportQueue folder with SAP Crash logs extremely eats HDD space

    We are experiencing the low HDD space issue, and we found that the reason is crash reports created by SAP even that we don't have crashes.
    The path and the size of each folder (there are from 1 to 5 new folders created each working day for each user) are shown on the screen shot: http://screencast.com/t/TPAn5s3b7n
    Here is the content of one of the files:
    Version=1
    EventType=APPCRASH
    EventTime=128939431784959200
    ReportType=2
    Consent=1
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=SAP Business One.exe
    Sig[1].Name=Application Version
    Sig[1].Value=8.0.230.0
    Sig[2].Name=Application Timestamp
    Sig[2].Value=4a27a173
    Sig[3].Name=Fault Module Name
    Sig[3].Value=ole32.dll
    Sig[4].Name=Fault Module Version
    Sig[4].Value=6.0.6002.18005
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=49e037d7
    Sig[6].Name=Exception Code
    Sig[6].Value=c0000005
    Sig[7].Name=Exception Offset
    Sig[7].Value=000472da
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.0.6002.2.2.0.272.7
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=9033
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=d6dea6b9f796a35047e555b98ca62a68
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=1b40
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=f6eb204318c3d6469d940c0e9e090cfe
    UI[2]=C:\Program Files (x86)\SAP\SAP Business One\SAP Business One.exe
    File[0].CabName=Version.txt
    File[0].Path=WER39E3.tmp.version.txt
    File[0].Flags=65538
    File[0].Type=5
    File[1].CabName=AppCompat.txt
    File[1].Path=WER39F4.tmp.appcompat.txt
    File[1].Flags=65538
    File[1].Type=5
    File[2].CabName=memory.hdmp
    File[2].Path=WER42DE.tmp.hdmp
    File[2].Flags=2097152
    File[2].Type=3
    File[3].CabName=minidump.mdmp
    File[3].Path=WER7326.tmp.mdmp
    File[3].Flags=2162690
    File[3].Type=2
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=SAP Business One
    AppPath=C:\Program Files (x86)\SAP\SAP Business One\SAP Business One.exe
    It looks like new folder of 100Mb size is created every time SAP Client is closed, even this is closed perfect with no issues.
    As per http://technet.microsoft.com/en-us/library/cc709644%28WS.10%29.aspx error reporting could be disabled, but that's not the solution since it affects all the other programs and not only SAP.
    Users work on 2 Terminal Servers with Win Server 2008 Standard SP2 64bit.
    SAP Business One version: 2007 A (8.00.230)  SP: 01  PL: 05
    We'd like to know the reason of creating these folders/files and is this possible to disable pseudo-crash reports for SBO?
    Thank you in advance,
    Alexey

    well... let me try to post a reply with a formatted message by myself:
    =======================================================
    We are experiencing the low HDD space issue, and we found that the reason is crash reports created by SAP even that we don't have crashes.
    The path and the size of each folder (there are from 1 to 5 new folders created each working day for each user) are shown on the screen shot: http://screencast.com/t/TPAn5s3b7n
    It looks like new folder of 100Mb size is created every time SAP Client is closed, even this is closed perfect with no issues.
    As per http://technet.microsoft.com/en-us/library/cc709644%28WS.10%29.aspx error reporting could be disabled, but that's not the solution since it affects all the other programs and not only SAP.
    Users work on 2 Terminal Servers with Win Server 2008 Standard SP2 64bit.
    SAP Business One version: 2007 A (8.00.230) SP: 01 PL: 05
    We'd like to know the reason of creating these folders/files and is this possible to disable pseudo-crash reports for SBO?
    Thank you in advance,
    Alexey

  • Why Oracle Linux 5 cannot recover disk space after delete files ?

    Folks,
    Hello. When I create a Virtual Machine for Oracle Linux 5 to install EBS R12, I allocate 300GB to the VM. I download EBS R12 Source Files (45.7GB) and unzip the files (46GB). Total size of stage area directory(EBS_R12) is 91.7GB.
    Because some files are corrupted and cannot install, I move the folder EBS_R12 into trash but cannot empty trash. I move EBS_R12 from trash back to the directory. Then at root user, use command "rm -rf " to delete EBS_R12 completely.
    I shut down Oracle Linux 5 and restart it, 91.7GB disk space cannot recover.
    I download some other files into Oracle Linux files and then delete those files, but disk space cannot be recovered either.
    It seems that OEL5 virtual disk only can expand but cannot be reduced. The VM disk space is less than 200GB now and not enough to install EBS R12.
    Can any folks tell me how to make 91.7GB disk space and some more disk space come up ?

    Folks,
    Hello. Thanks a lot for replying.
    Host OS is Windows 7, Guest OS is Oracle Linux 5 on the top of VMPlayer 3. The VM of Oracle Linux 5 is created on the external USB drive and not on the local hard disk.
    There is a directory /tmp/VMwareDnd/376c7cae/EBS_R12 in Oracle Linux 5 file system. I copy/Paste the folder of EBS_R12 from Windows 7 into Oracle Linux 5. All of zip files and unzipped files are placed in the folder of EBS_R12.
    After EBS_R12 is deleted, the external USB drive(F:) doesn't come up 91.7GB disk space.
    My question is:
    Where to run "boot>linux rescue" command ?
    Does this command work correctly in the external USB drive ?

Maybe you are looking for