XI Server Disk is full

Hi All
I need help in this:
Basis is telling that XI Server disk is full and we cant increase the size anymore, so what are the things we can do to free the space?
Regards
Dheeraj Kumar

Dear Dheeraj,
in your last reply you mention 2 tables. Let's keep things separate...
Per SXMSPHIST: this table does not belong to PI message tables as it does not hold any (part of a) message. Instead a fingerprint of each message is stored to this table for duplicate detection. For reorganization of this table report RSXMB_DELETE_HISTORY is used. This one usually is executed by standard PI house-keeping job SAP_BC_XMB_HIST_DELETE_<client>. See also SAP Note 872388, section 5 - a). Additionally you might want to check the list of [periodical tasks|http://help.sap.com/saphelp_nwpi71/helpdata/en/cd/20bc3ff6beeb0ce10000000a114084/frameset.htm].
Per SXMSPMAST: From your reply I understand that archiving works fine and you also use report RSXMB_DELETE_ARCHIVED_MESSAGES, however, there are several situations that might cause table SXMSPMAST to increase:
(a) growth is not due to messages flagged for archiving, but it is caused by messages flagged for deletion (without prior archiving)
(b) growth is due to messages flagged for archiving, but
(-b1) some of these messages are not archived
(-b2) RSXMB_DELETE_ARCHIVED_MESSAGES is not used correctly such that successfully archived messages are not deleted afterwards
(c) archiving & deletion is working perfectly fine, but messages remain in SXMSPMAST as the switch deletion procedure has been activated and the threshold for actually performing the switch over to the shadow container has not yet been exceeded
Per (a) and (-b1): walk through section 5 of SAP Note 872388 meticulously.
Per (-b2): check configuration of deletion phase (TCode AOBJ) and / or trigger deletion manually (TCode SARA).
Per (c): check configuration of switch procedure (TCodes SXMS_MONI_DB, SXMS_CONF_SWITCH, SXMS_IECONF).
Best regards,
Harald Keimer
XI Development Support
SAP AG, Walldorf

Similar Messages

  • Random disconnects from Windows 7 Clients - Disk is full error

    Recently upgrade my XServe from 10.5.8 -> 10.6.6 -> 10.7.3 Server.
    I have 6 Mac clients connecting to different sharepoints on the server with no issues at all after the upgrade.
    I have 2 Windows 7 Home clients running QuickBooks attempting to connecting to their Accounting sharepoint on the server.  10.5.8 / 10.6.6 there were no issues with disconnects.  After upgrading to 10.7.3 Server and fixing the login issue, the Windows 7 clients can connect to the sharepoint.  But once or twice a day they are getting an error of "The disc or drive Z: is full." (I have the sharepoint mapped to drive Z on Windows 7).
    The sharepoint is on a RAID and has over 1TB free storage.  The local hard drive in each Windows 7 client has 200-300 GB's free each.. so no drives are actually full.
    Is anybody else seeing this?
    Their connections are wired.. Gig Ethernet.  This was not an issue previous to Lion Server.  Only started occuring after the "upgrade" this past Saturday.

    Most likely your disk is full . If you go to Preferences/Performance you are able to change your active Scratch Disks.

  • I'm trying to up grade the os but I keep getting the startup disk is full I ordered more memory I was told this will not help. What do I do?

    I'm trying to up grade the os but I keep getting the startup disk is full I ordered more memory I was told this will not help. What do I do?

    I think as drive capacities increase, the old 10-15% becomes less accurate.  The amount of free space you need doesn't really have anything to do with the drive size.  So, increasing your drive size shouldn't mean that you need to have more free GB (which using a % of drive space would mean).  You need free space to accommodate page outs (the amount of which would depend on how much RAM you have installed and how memory intensive the applications are), sleep images (again, this would max out at your total amount of RAM), and a bit to minimize fragmentation.
    With desktop drives commonly in the 2TB range today, it is certainly not necessary to have 200GB+ free in order to maintain proper operation.  I generally find about 30GB to be the minimum I'm comfortable with.  Mind you, I pretty much always have way more than that available.  But, if I'm working on a system and the amount of free space is at least 30GB, I would generally not site drive space as the cause of any performance issues.  I'd say that 30GB is a minimum for a stable system (with 8GB or RAM installed).  Of course at that amount, you would still need to free up space if you were to want to install or download any significant amount of data.
    With servers being more likely to run into the 16GB of RAM range, more storage would be necessary.  Most servers should be well stocked with storage, but the actual needs would vary greatly depending on what's being "served".
    The 10-15% thing came about when we used to talk about drive capacities in hundreds of MBs and RAM in terms of KB (not MB and certainly not GB).  More drive space is always a good thing, but as drive capacities continue to sky rocket, we don't need to dedicate larger amounts of storage on systems with the same specifications.  A set amount of space is required for proper operation regardless of the capacity of the drive installed.

  • HT3680 how to free up space if startup disk is full

    How do I free up space when the startup disk is full?

    O Trejo, greetings;
    I am not the Wizard but a mere citizen of Oz who wears green tinted glasses as all others do.
    DaisyDisk appears to perform a similar function as OmniDiskSweeper which I still prefer due probably due to my familiarity with it.
    I am not familiar with OSX Server, so I am off the hook on this one.  If you go to the OSX Server forum, there will be forum members who will be able to address your query.  This is the link:
    https://discussions.apple.com/community/servers_enterprise_software/os_x_server
    If you are really nice to them, they may give you a Dog Yummy. 
    Ciao.

  • 431 4.3.1 STOREDRV mailbox disk is full

    I discovered that messages were stuck in the queues and clients were storming with complaints, checking further I discovered the error.. 431 4.3.1 STOREDRV; mailbox disk is full. Then checking on the exchange console, mailbox04 database, copy status showed
    failed and dismounted from MBX02. Since we are using hyper-v, increasing the hard disk space via hyper-v management console for MBX02 fixed the issue but I would like to know is there a way I can get alerts before hand or to monitor it daily in case of similar
    issue in future so it can be discovered on time because this happened during working hours and it came unexpected so clients were so pissed.

    We have a daily process that pulls the database size, the number of logs, and the free space on the log and database drives.  We use that for determining our database growth.  You can implement the same sort of thing simply by running the following
    as a scheduled process:
    $MbxDbs = Get-MailboxDatabase -Status
    $MbxSrvrDrvs = Get-MailboxServer | Sort Name | % { Get-WmiObject -Class win32_volume -ComputerName $_.Name }
    $AllData = $MbxDbs + $MbxSrvrDrvs | ConvertTo-Html
    SendMailMessage -From <an email address> -To <your email address> -BodyAsHtml -Body $AllData -SmtpServer <your hub server> -Subject "Daily Database Status Report"
    This will give you the raw data - you will need to clean it up for review.  You can also modify the data returned by the above commands so you get more user friendly data, but it would take me too long to throw something together for that here. 
    The script we use gives us a view at the high level, as well as the deep dive data necessary for determining why an anomaly might have happened.

  • Word and Excel 2013 error: Disk is full

    I have several Windows Server Standard 2012 RDS with Office 2013 Standard 32-bit.
    Servers are fully updated with Windows Update.
    On all of them we get errors in Word and Excel.
    Word:
    Microsoft Word
    The disk is full or too many files are open.
    P1: 200890
    P2: 15.0.4535.1000
    P3: ajeusP4:
    Excel:
    Microsoft Excel
    The disk is full.
    P1: 100105
    P2: 15.0.4535.1003
    P3: ajeusP4:
    The disk is not full :)
    Anybody else seen this?

    Hi
    If the document contains corrupt or invalid links, follow the methods below to solve the issue:
     Method 1: Save Your Word Document as Rich Text Format
     Method 2: Save Your Word Document as a Web Archive
     Method 3: Test for Invalid Object Links
     Method 4: Paste the Problem Object as a Picture
     Method 5: Recreate the Microsoft Equation Object
    If you are running the Bgmail utility, edit the Winstart.bat file or the Autoexec.bat file, and place a semicolon (;) at the beginning of the Bgmail.exe line to temporarily turn it off. Save and close the file, and then restart Windows and run ScanDisk.
    For more information about how to resolve the issue, refer the link below:
    http://support.microsoft.com/kb/224041#appliesto
    (Although it is for Word 2000, we can apply to it)
    Regards
    Tylor Wang
    TechNet Community Support
    Thanks for your reply.
    We will try this on Word. But what about Excel?

  • HT1176 if start up disk if full

    My start up disk is full, I need to free up some space - what should I do?
    I bought time capsula for data storage - to free some space on my mac, but it also don't works properlly
    Are those two things conected? How can I solve this???

    The TC is not designed as a file store.. if you do so think very carefully how you will backup the TC.. it has no inbuilt backup except a manual archive to a USB disk plugged in which is very slow.. TM cannot backup a network drive.. overall the TC is unsuitable.. and Apple has nothing else on the market to help you.
    A server or NAS is really what you need.
    But you can try your luck.. are you feeling lucky.. !!
    As for a fault description .. it doesn't work properly.. sadly very little I can do with that.
    I strongly recommend you buy the usb to ethernet adapter apple sell for the air.
    It is cheap and whilst not as good as real ethernet will allow you to do wireless setup without using wireless.
    Plug in and press and hold reset.. once it flashes rapidly go to the airport utility and setup the TC.
    If your existing router is ok.. set the TC to bridge. If you have a cable modem.. plug in the TC as router, and reboot both with a 15min wait for the cable modem to reset.

  • Queue viewer: mailbox disk is full

    Hi
    I have a Mailbox server Exchange 2010 sp1, and i configured a disk as mounted volume where i created a database. The problem is that users in this database dont receive mails. because all emails sent to the users in this database is queued in the cas server...
    with the error:
    Mailbox disk is full 431 4.3.1 STOREDRV.Deliver.Exception:StorageTransientException.MapiExceptionLowdatabaseLogDiskSpace....
    But the disk have space for the database and logs. I suspect of the Mounted Volume because the database mounted in local drives can receive emails. Help please.
    Thanks

    Hi Edison,
    Mailbox disk is full 431 4.3.1 STOREDRV.Deliver.Exception:StorageTransientException.MapiExceptionLowdatabaseLogDiskSpace....
    This error indicate that the mailbox disk is full, with low disk space. But you said the disk have space for the database and logs.
    For this issue, I suggest you follow these steps to troubleshoot the problem:
    1.      
    Use Exbpa to do a health check for your Exchange Server.
    2.      
    If you have another big disk, move the database to another disk and then check for the issue.
    Move the Database Path
    http://technet.microsoft.com/en-us/library/dd351168.aspx
    Thanks,
    Evan
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Imovie won't let me save my movie as a file, and it says ''startup disk'' is full!

    I made a movie on Imovie and it won't let me download or convert, I don't know what else I can do, and also it says my disk is full, and my macbook is 64 and its impossible, i dont have that much. please help me. I want to save my movie and fix disk because is making my computer slower and doesn't let me save anything because is ''full''. I need to find a way to save the movie complete and as a file and make my computer faster and with it's original memory.
    HELP!.

    I have the same problem and then some. I movie won't share this particular project, but it also won't save any changes made to it or any other project. At least that's what it started doing, now when I go to even try to make any changes it wigs out and things get scrambled in the Project window and it plays video from another project.
    When I create a new project, the Share menu is available, but it won't save changes to that project either. And by that I mean I can put stuff in the project and do whatever, but as soon as I quit and relaunch the application, the project is empty. I did figure out that if I make changes in a new project and immediately share it to the media browser that it will save the changes, but then it messes up my other project even more somehow!
    Tried archive and install, deleting plists, reinstalling iMovie and iLife support stuff (twice), repairing permissions, and changing permissions in the project package. Any other ideas?

  • I have an iMac 5.1 with Mac OSX 10.6.8 and 2 GB memory and an L2 cache of 4 GB.   lately I have been receiving error messages of " start up disk almost full; please delete files." is the start up disk the same thing as the hard drive?

    I have an iMac 5.1 with Mac OSX 10.6.8 and 2 GB memory and an L2 cache of 4 GB.   lately I have been receiving error messages of " start up disk almost full; please delete files." is the start up disk the same thing as the hard drive?  I opened the hard drive and from the column on the left of the menu I've selected "search for" and under that " all images" then "all documents"  I've deleted a few files from each. Are documents and images that I have deleted from here also deleted from the folders on my desktop?

    You should never, EVER let a conputer hard drive get completely full, EVER!
    With Macs and OS X, you shouldn't let the hard drive get below 15 GBs or less of free data space.
    If it does, it's time for some hard drive housecleaning.
    Follow some of my tips for cleaning out, deleting and archiving data from your Mac's internal hard drive.
    Have you emptied your iMac's Trash icon in the Dock?
    If you use iPhoto, iPhoto has its own trash that needs to be emptied, also.
    If you store images in other locations other than iPhoto, then you will have to weed through these to determine what to archive and what to delete.
    If you use Apple Mail app, Apple Mail also has its own trash area that needs to be emptied, too!
    Delete any old or no longer needed emails and/or archive to disc, flash drives or external hard drive, older emails you want to save.
    Delete any other mail in your Junk folders. Also, look through your Sent Mail to see if there is anything that can be deleted.
    Other things you can do to gain space.
    Once you have around 15 GBs regained, do a search, download and install OmniDisk Sweeper.
    This app will help you locate files that you can move/archive and/or delete from your system.
    STAY AWAY FROM DELETING ANY FILES FROM OS X SYSTEM FOLDER!
    Look through your Documents folder and delete any type of old useless type files like "Read Me" type files.
    Again, archive to disc, flash drives, ext. hard drives or delete any old documents you no longer use or immediately need.
    Look in your Applications folder, if you have applications you haven't used in a long time, if the app doesn't have a dedicated uninstaller, then you can simply drag it into the OS X Trash icon. IF the application has an uninstaller app, then use it to completely delete the app from your Mac.
    Download an app called OnyX for your version of OS X.
    When you install and launch it, let it do its initial automatic tests, then go to the cleaning and maintenance tabs and run the maintenance tabs that let OnyX clean out all web browser cache files, web browser histories, system cache files, delete old error log files.
    Typically, iTunes and iPhoto libraries are the biggest users of HD space.
    move these files/data off of your internal drive to the external hard drive and deleted off of the internal hard drive.
    If you have any other large folders of personal data or projects, these should be archived or moved, also, to the optical discs, flash drives or external hard drive and then either archived to disc and/or deleted off your internal hard drive.
    Good Luck!

  • HT1349 my mac book disk is full but i cant delete anything because the finder dont load, the trash wont open or anything wont open. i tried to take all my pics and videos off but i cant because nothing opens up, its in dashboard mode. what can i do to fix

    My mac book's finder. trash and other things don't work. how can i save all my data even though i cant transfer it all because my disk is full and isn't allowing me to delete stuff? and my midi isn't working

    Start with this comprehensive troubleshooting article:
    https://discussions.apple.com/docs/DOC-3521
    Look at this one for possible solutions:
    https://discussions.apple.com/docs/DOC-3353
    Ciao.

  • I can't download anything as it keeps telling me my start up disk is full.  I have deleted loads of files and it still keeps popping up with the same messge??

    Please help - I am not too computer savvi and my computer keeps telling me my start up disk is full.  I have purchased a passport and transferred loads of images and files onto that and then deleted them from my computer but the message is still the same and I can't download anything.

    How big is your hard drive, and how much space is used/free?
    To find out, click once on the hard drive icon on your desktop to highlight it (it will be called Macintosh HD unless you renamed it). Click the command and I keys on your keyboard to open the information window. In "General", you will see Capacity and Available. What are those figures?
    If you have a little bit of space left, I recommend that you install Omnidisksweeper (it's free) to tell you what folders are using up the most room.
    Be careful when you transfer files - only move files that you know are yours. Don't move or delete any system files unless you're specifically recommended to do so (some files are safe to delete; some are not).
    Matt

  • I am having problems gettting my mail to work ... Mac telling me that my start up disk id full and to delete some files to free up space ... have done this but when i open mail from the dock it just brings up the colour wheel and nothing happening

    I am having problems gettting my mail to work ... Mac telling me that my start up disk id full and to delete some files to free up space ... have done this but when i open mail from the dock it just brings up the colour wheel and nothing happening ... it shows when you right click on the mail icon that " application not responding"

    If your hard drive is getting full, you need to free up, at least, 20 GBs of space on your iMac's hard drive.
    If your Mac is running a fairly recent version of OS X, here are some general guidelines.
    Follow some of my tips for cleaning out, deleting and archiving data from your Mac's internal hard drive.
    Have you emptied your iMac's Trash icon in the Dock?
    If you use iPhoto, iPhoto has its own trash that needs to be emptied, also.
    If you use Apple Mail app, Apple Mail also has its own trash area that needs to be emptied, too!
    Other things you can do to gain space.
    Delete any old or no longer needed emails and/or archive to disc, flash drives or external hard drive, older emails you want to save.
    Look through your Documents folder and delete any type of old useless type files like "Read Me" type files.
    Again, archive to disc, flash drives, ext. hard drives or delete any old documents you no longer use or immediately need.
    Download an app called OnyX for your version of OS X.
    When you install and launch it, let it run the automatic ans S.M,A.R.T. tests,  then go to the cleaning and maintenance tabs and run the tabs that have the ability to clean out all web browser cache files, web browser histories, system cache files, delete old error log files.
    Typically, iTunes and iPhoto libraries are the biggest users of HD space.
    move these files/data off of your internal drive to the external hard drive and deleted off of the internal hard drive.
    If you have any other large folders of personal data or projects, these should be archived or moved, also, to the optical discs, flash drives or external hard drive and then either archived to disc and/or deleted off your internal hard drive.
    Good Luck!

  • Finder says Home Disk  is full, utilities say I've only used 93Gb of 232Gb

    Earlier this evening I all of a sudden got an alert that my disk was full, 232Gb. 0Gb remaining.
    It said I needed to renove some files. I tried. I removed about 10 Gb, but it didn't give me any more space.
    I booted from my Clone to to see if I could run dik utility repair. It came up saying the disk was fine.
    Repaired Permissions. Everything came up OK there too.
    I ran Disk Warrior from it;s disk and it came up stating that I was only using 93Gb of 232Gb. (Which is what I remembered and was about how much my recent Carbon Copy Clone added up to)
    I tried WhatSize and it said the same. I'm currently waiting for a license for Tager Cache Cleaner to see if it will help. None of the utilities is finding any hidden large files.
    I've also tried backing up the mail folder and removing Envelope Index, but, of course, that made Mail crash since it's being told there's no room on the hard drive. I'm totally stumped.
    I imagine there's some corrupt file somewhere, but I'm not getting a fix on it.
    Recent changes to the drive - I upgraded to 10.4.9 a few ays ago. Had to install a third party driver for my HP PSC 2175 - hpijs-foomatic-2.0.2.
    Printer stopped working earlier today and I had to reinstall CUPS and then the driver again before printer would work. Sortly thereafter that I got the error message about disk full.
    System info:
    Machine Name: Power Mac G5
    Number Of CPUs: 1
    CPU Speed: 1.6 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 2 GB
    Bus Speed: 800 MHz
    Boot ROM Version: 5.1.5f2
    I have several different firewire drives attached as well as a USB "jump" drive.
    Any advice would be most appreciated.
    G5 1.6Gz   Mac OS X (10.4.8)  

    I just found this discussion at the MacFixIt forums. You might read it carefully, and also take a look at the MacOSXHints article mentioned:
    http://www.macosxhints.com/article.php?story=20070319143243249
    I have a batch of those job history files as well so thought I would try removing them and see what happened. I first got myself a root shell:
    NoobiX:~ francine$ sudo -s
    Hit return and entered my password, hit return again, then changed directory:
    NoobiX:~ root# cd /private/var/spool/cups
    Hit return and ran a list command:
    NoobiX:/private/var/spool/cups root# ls -al
    total 304
    drwx--x--- 41 root lp 1394 Mar 26 21:59 .
    drwxr-xr-x 7 root wheel 238 Aug 3 2006 ..
    -rw------- 1 root lp 3571 Aug 24 2006 c00001
    -rw------- 1 root lp 3574 Aug 24 2006 c00002
    -rw------- 1 root lp 3505 Dec 8 00:24 c00003
    ....and so on.... down to
    -rw------- 1 root lp 3531 Mar 26 21:59 c00038
    drwxrwx--T 2 root lp 68 Dec 21 22:37 tmp
    Which verified I was in the right place. I tried removing just one of the files:
    NoobiX:/private/var/spool/cups root# rm c00001
    which worked fine. I then decided doing this would be tedious, so tried this:
    NoobiX:/private/var/spool/cups root# rm -r *
    There is a space between the rm and -r and after -r before the * (a wildcard). That was probably a mistake since it not only nuked the history files but also the tmp directory. I should have probably used something like rm -r "c*" (since all the history files begin with c that should have got them and spared the tmp folder). I tried recreating the tmp folder with this:
    NoobiX:/private/var/spool/cups root# mkdir tmp
    Which seemed to work:
    NoobiX:/private/var/spool/cups root# ls -al
    total 0
    drwx--x--- 3 root lp 102 Jun 7 12:00 .
    drwxr-xr-x 7 root wheel 238 Aug 3 2006 ..
    drwxr-xr-x 2 root lp 68 Jun 7 12:00 tmp
    But being a suspicious sort I ran Disk Utility to Repair Permissions and it did indeed report an error on the /private/var/spool/cups/tmp folder, but it did repair the permissions on the folder successfully, so I'm assuming all is now OK. Of course, I haven't actually tried printing anything yet...
    If you choose to try this after you finish type exit and hit return to kill the root shell, then quit Terminal.
    Francine
    Francine
    Schwieder

  • I have a MacBook Pro. I was gone for 30 days and when I got back it tells me that my startup disk is full. I have a 500 GB drive and it shows that I have about 500 MB available. It constantly changes.  How do I fix this?

    I have a MacBook Pro that is telling me my startup disk is full. I left for 30 days and when I came back to use it, it tells me that the disk was full out of 500 GB. I don't have that much on it and it was perfectly fine when I left.  I Verified the disk through disk utility and it told me it had issues so then I repaired it and it said everything is fine. It still says the hard drive is full. How do I fix this problem. Any help is greatly appreciated.

    Have a read here Where did my Disk Space go?
    Stefan

Maybe you are looking for

  • Data/Value from a function - passing it on to Crystal Report

    Post Author: helpwithcr CA Forum: General Could any of you give me an insight to this I have these functions with the values/data is residing in my Oracle package. How do I retrieve those to show the result on Crystal Report.? example----- function m

  • Report to display purchase orders

    Hi I am Venkat can any one send me report to display a list of Purchase orders open for period more than one year. I need the following output fields to be dispayed are Vendor, Period, Purchasing organization, PO number, Document date, GR status, che

  • How do you sync two iPhones to the same ical?

    Hi there, I am trying to sync my iphone and my husband's iphone to the same ical and I don't know how to? But we want to be able to to see eachothers calenders on our phones! Thanks!

  • Purchase Ledger Chile - S_ALR_87099947

    Hi, I'am having a problem when i´m generating the reporting (Purchase Ledger - Chile), because it appears the reference transaction CAJO when is associated as a funds constitution/reposition in FBCJ. I think that is not suppose to appear. It should o

  • Tween text, publish as image sequence

      I'm trying to tween one font into another, which I am able to do by breaking apart the text into objects and using a simple shape tween.  The preview and exported movies look as they should, but I would like to be able to export the frames of the a