Ics50deletelog.db size getting too large

I 've been watching this file (ics50deletelog.db) on our Sun calendar. It is currently over 1,200,000 KB - way too big for my taste. What is this file storing? Is there any way to reduce the size?
Please help

navvith wrote:
I can see that entries are being removed, but at a painfully slow pace. Is there any way to completely clear this log database? If your users are making use of the Outlook Connector I wouldn't recommend completely clearing the database.
I have a clean install of calendar server on other system with an empty delete log database. Could I simply replace the oversized one with this and restart the calendar server?If the objective is to shrink the size of the database, you could first try dumping/reloading the database e.g.
1. Stop the calendar instance
cd /opt/SUNWics5/cal/sbin
./stop-cal
2. Verify the current database, keep a record of the output for comparison
./csdb check
3. Dump the database to a txt file.
cd /opt/SUNWics5/cal/tools/unsupported/bin
export DB_HOME=/var/opt/SUNWics5/csdb/
./db_checkpoint -1
./db_archive
./db_dump -r /var/opt/SUNWics5/csdb/ics50deletelog.db > /var/tmp/ics50deletelog.db.txt
4. Reload the database to a temporary db file.
./cs_dbload /var/tmp/ics50deletelog.db < /var/tmp/ics50deletelog.db.txt
5. Keep a backup of the the old deletelog database and move the new db into place
cp -p /var/opt/SUNWics5/csdb/ics50deletelog.db /var/tmp/ics50deletelog.db.orig
cp /var/tmp/ics50deletelog.db /var/opt/SUNWics5/csdb/
6. Verify the database, compare the output with the previous ./csdb check to ensure they are the same
./csdb check
7. Restart the calendar serverI would recommend running through these steps in your test-environment first to ensure you are comfortable with this prior to trying them in production.
Regards,
Shane.

Similar Messages

  • How do I split a pdf file when the file size is too large?

    How do I split a pdf file when the file size is too large?  Thanks!

    With Adobe Acrobat.  It can also optimize your document to make the size smaller.

  • HT3142 Display size is too large on yahoo mail

    My display size is too large on yahoo mail page only (page I need and use most). How do I correct it, please?
    Changing the display selections from system preferences is not working.

    There may be a control within the application you are running Yahoo.
    Which browser are you using online to access Yahoo?
    In the View menu bar of the open application, there may be a choice
    to change the size of the display content in the window itself, check.
    Some of these use a keyboard command, should the setting go to
    Full Screen, you'd need to know the default or escape combination
    of keys to restore the application's window to a standard size. This
    kind of inside-application setting is not reflected System Wide.
    Since I don't know the browser, (as I have five, each is different)
    I can't recommend a keyboard combination to re-size the open
    application's view or window setting. They can be non-standard.
    But that likely is where you'd have to change it back to normal.
    PS: Snow Leopard is Mac OS X 10.6.8.
    (Tiger is OS X 10.4.x)
    Good luck!

  • "File size is too large"

    When I imported the only 4 files in a particular folder (scans of photos) into the Organiser, the message "File size is too large" came up for two of them instead of preview images, although do appear to have been added to the Catalog as their MB size, pixel dimensions and creation date show in the Properies General tab.
    I take it this must relate to pixel count and not the file size per se as the two tifs (13.2 and 13.3 MB but 1792 x 2508 and 2518 x 1798 pixels) are fine, while the two JPGs (12.9 and 30.8 MB and 9616 x 6480 and 7048 x 10376) are the ones without preview images?
    I wasn't aware of this as a problem, so can anybody tell me please, have I just set too low a limit somewhere or is there a real restriction?
    And is this new to PSE6 or something that's been around for a while?
    Thanks, Peter

    I have a 212mb psd file (a panorama).   I have Elements 6.0 and 4 meg RAM, Vista.
    I went through the regedit process as outlined in Adobe Technote kb402760 and upped it to 1,000,000,000.  I would think that would have given enough headroom for my file size.  But it didn't.  I still have the generic "file size too large" on my thumbnails.
    I did note that the tech note had a different location for the Software/Adobe/Elements 6.0/Organizer (HKEY_LOCAL_MACHINE\ ) from the location in my file structure.  In fact, this string was listed in at least three places OTHER THAN the one indicated in the Technote.  How likely is it that adding "MaxImageSize" to the Elements 6.0 register locations other than specifically indicated is the reason why the file size capacity was not increased.  Why doesn't Elements show up in the location indicated by the Tech Note?
    NOTE FOR ADOBE:  Why isn't this a more easily accessible option in the user interface?  If I have a large file that slows things down a bit on my thumbnails, that could be my choice.  This artificial constraint built into the regedits that no one goes to is too much like parental controls for 5 year olds.

  • My audit database getting too large

    Post Author: amr_foci
    CA Forum: Administration
    my audit database getting too large, how i reset it?

    Post Author: jsanzone
    CA Forum: Administration
    Amr,
    The best that I can determine, there is no official documentation from BusinessObjects regarding a method to "trim" the Auditor database.  Based on previous disucssions, I seem to remember that you are on XI R2, but if I'm wrong, then these notes will not apply to you.  Here is the scoop:
    There are six tables used by Auditor: 1) APPLICATION_TYPE (initialized w/ 13 rows, does not "grow") 2) AUDIT_DETAIL (tracks activity at a granular level, grows) 3) AUDIT_EVENT (tracks activity at a granular level, grows) 4) DETAIL_TYPE (initialized w/ 28 rows, does not "grow") 5) EVENT_TYPE (initialized w/ 41 rows, does not "grow") 6) SERVER_PROCESS ( (initialized w/ 11 rows, does not "grow")
    If you simply want to remove all audit data and start over, then truncate AUDIT_EVENT and AUDIT_DETAIL.
    If you want to only remove rows based on a period, then consider that the two tables, AUDIT_DETAIL and AUDIT_EVENT, are transactional in nature, however, AUDIT_DETAIL is a child to the parent table AUDIT_EVENT, thus you will want to remove rows from AUDIT_DETAIL based on its link to AUDIT_EVENT before removing rows from AUDIT_EVENT first.  Otherwise, rows in AUDIT_DETAIL will get "orphaned" and never be of any use to you, and worse, you will not readily know how to ever delete these rows again.
    Here is the SQL statements:delete from AUDIT_DETAILwhere event_id =(select Event_ID from AUDIT_EVENT                  where Start_Timestamp between '1/1/2006' and '12/31/2006')godelete from AUDIT_EVENT                  where Start_Timestamp between '1/1/2006' and '12/31/2006'go
    One word of caution is to down you BOE application before doing this maintenance work, otherwise there is a possibility that Auditor will be busy trying to bring new rows to your database while you're busy delete rows and you might encounter an unwanted table lock, either on the work you're doing or the work that BOE is trying to perform.
    Good luck!

  • Warning: Cache size set too large?

    I've recently installed a SSD to work as a dedicated cache drive, and I've directed the 3 cache settings in AE (CS6) to it.
    The drive is 240GB, but I can't put the cache size over 150GB without getting a warning that it's set too high. Is this true? Am I wasting almost 100GB?

    Use your drive for something else. 150GB is a huge huge cache. The CS6 disk cache is glitchy anyway. I have mine turned off most of the time.

  • Font size getting incrementally larger or smaller

    I'm not sure what I'm doing, as it happens only intermittently, (MBP 2008, btw), but as I'm viewing a webpage, scrolling with right hand, left hand resting lightly on the body, fingers gently on the keys, not depressing them, the font will suddenly start getting smaller OR larger. I can't figure out for the life of me what I'm doing, and what determines whether it will go up in size or down.
    I close Safari, re-open it, and all is right with the universe, so it's no biggie....but it's got me perplexed.
    Thanks.

    That's a trackpad function. You can zoom in or out by touching and spreading or pinching together two fingers at the same time. It often happens to me accidentally. You can disable it in the system preference.

  • Form Size becoming Too large

    Hello,
    I have a very strange problem.
    I designed a fillable form using Designer7.0. I reader enabled the form using Adobe Reader Extensions Server 7.0, so that users use their Adobe reader(7.0.5) to fill in the form. The empty PDF form is around 700KB in size.
    Now, When the user filled the form manually typing the data(25KB data) in the form and saved it. It saved as 60 MB file. I cannot justify this increase of the size anyways to my authorities. I am looking forward to hearing from you so that I can tell then what can be the possible reasons for this.
    Also One more observation. When I imported the 25KB XML file into the empty form and save it, it is just 1.1MB in size.
    Please help me understand whats going behind the scenes?
    Thank you for your attention
    Sam

    Hi,
    I had a similar problem with a pdf created in LCD. If you ever open a pdf form in LCD and see a message about it being Reader Enabled and that you have to overwrite it, you likely have the same problem I had... My file went from less than 300 kb to more than 16 Mb... and back to around 300 kb with the following solution...
    For a reason not very clear, once a file has been applied the Reader Enabled  feature inside Acrobat, if we open it again inside LCD it kind of keeps a memory  and every time we save it adds to it.
    What I had to do is  open the pdf file in Acrobat, reapply the Reader Enabled feature (LCD asked me  to remove it when I opened it inside of it) and then do a File --> Save a copy. It  removes the right and all the “memory” of the file and brings it back to a small  file (about 300kb in my case, instead of the more than 15Mo it was  then)!
    So, now, every time  that I need to edit a file, I first do a Save a copy in Acrobat (only available  if the pdf has been Reader Enabled) and open it in LCD. No more  problems…

  • App size not (too large within window) correct can...

    When the app loads for me the contents inside are bigger than the window itself. This means I can't see the IM bit at the bottom of conversations and options page and things like that. 
    Anyone know how to reset the setting on the app i have tried uninstalling and re-installing. Basically as soon as it loads you can see the central loading icon jump to what it must think is center of my display but its not resulting in large portions of the app not being visible. 
    Thanks!

    Can you click on the 'Restore Window' button and manually resize the LR window.
    If that doesn't work try resetting your LR Preference file:
    http://members.lightroomqueen.com/index.php/Knowledgebase/Article/View/1148/198/how-do-i-d elete-the-lightroom-preferences-file

  • How do I create a new mailbox file, not folder. My primary mailbox file is getting too large and I want to split it into multiple physical files.

    I have done this multiple times in the past (I have several files - not folders - that contain mail). However due to the fact that II was somewhat brain damaged several years ago I can no longer remember (or figure out) how to do it. For instance, I have a "MoreJunque" mailbox file that is (from the "Properties" dialog) at mailbox:///C:/Users/Daniel Mathews/AppData/Roaming/Thunderbird/Profiles/bxk6ngnt.default/Mail/pop.att.yahoo.com/MoreJunque. However, my inbox is in mailbox:///C:/Users/Daniel Mathews/AppData/Roaming/Thunderbird/Profiles/bxk6ngnt.default/Mail/pop.att.yahoo.com/Inbox. These are unique files that contain folders.

    right click on your account on the left and select new folder.

  • Font size too large on itunes summary page . Half the words are cut off.

    How to change font size on the itunes summary page? Currently font size is too large resulting in sentences being cut off.

    Did you increase the minimum font size?
    If you increased the minimum font size then try a lower setting (default is ''none'') as a too high value can cause issues like you described.
    Tools > Options > Content : Fonts & Colors: Advanced > Minimum Font Size
    Tools > Options > Content : Fonts & Colors: Advanced > "Allow pages to choose their own fonts, instead of my selections above"

  • Help! VerifyError: stack size too large??

    I seem to have a class file with which the class file verifier has a complaint:
    D:\test\out>java Probe
    Exception in thread "main" java.lang.VerifyError: (class: Probe, method: main signature: ([Ljava/lang/String;)V) Stack size too large
    Can anybody point me towards documentation about what the algorithm is or should be to calculate the correct stack size. Or documentation on the message?
    I assume the meaning of the message is that the operand stack size is larger than used by the code for the static method main.  However, I haven't a clue as to the algorithm I should verify the size against. 
    Thanks for any help suggestions                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Thanks for the suggestion. I am running a modified Class file and have read the jvm spec. I was hoping somebody would have a suggestion as to what the error message actually means...
    For example does this mean that the declared size of the operand stack is greater than that required by the code? Or perhaps that the declared size is too large for the code?
    The actual method is quite small (on the order of 500 instructions).
    I know that the jvm has a requirment that the operand stack have the same size along all control paths (loops, gotos, etc) to a specific instruction. I don't know what error the verifyer would give if this was the problem.
    Is there any documentation anywhere the verifier's error messages?
    Thanks for any help you can give.

  • Display unaccountably gets too big for the screen

    This has happened maybe a dozen times, and I don't know what I did to make it happen. Suddenly, the desktop display gets too large for the screen, and I have to scroll around to find the dock or the menu bar. Whatever else I'm working on, e-mail, etc., gets outsized, too. Does anyone know how to correct this? So far, restarting has worked, but that's a pretty time-consuming way to do it.

    Cindy,
    Hold down the CNTL key and scroll down with the mouse or trackpad. That should change it back to size. This is called screen zoom.
    Cheers
    You can also deactivate it in System Preferences for the Mouse and/or trackpad.
    Message was edited by: captfred

  • Texts are too large on the screen (which appers wi...

    the font size is too large in the screen i get for texting (the fonts appear on the screen when i open the key board)
    all the other font sizes can be changed but this font size couldnt change..
     i have used 5800 and it had a nice font size there..
    please help..

    mgwaltney,
    The most likely reason for this would be that the display resolution has been changed. You should first make sure that it is set correctly (at the maximum, "native" resolution if an LCD) in System Preferences>Displays.
    If the resolution has not been changed or set below the native resolution, then there's not much you can do beyond re-sizing windows as they appear. It shouldn't take too long to get everything back to normal.
    Scott

  • CFX_Image seems to resize ok but the file size is too big??

    my host uses CFX_IMAGE v1.6.6.11 (
    http://80.79.138.227/cfximage/index.cfm
    which does a perfectly good job of resizing images except for
    the fact that the resultant file size is too large. i found that
    compared to resizing images locally, resizing using this tag
    resulted in file sizes of double the size.
    i have tried tweaking the "quality" paramater but without
    success, i could get the file size down but then the quality was
    poor.
    so i am forced to resize images locally using macromedia
    fireworks or MS paint before uploading them.
    ideally i need to be able to resize images server side but
    without inordinate file sizes.
    does anyone else use a cfx_image tag that's more efficient?
    or does anyone else know how to get this tag to perform better?
    any help would be very gratefully received.
    thank you

    Hi,
    You may want to take a look a this script:
    Link
    image resize
    Don't forget to read the comments there they contain some
    useful information.
    Kind regards,
    Nebu

Maybe you are looking for

  • Can't install sound blaster wow headset driver for tap chat use

    ?I get an error I-00 when installing. I google it, this is the install.log file:? <div class="message-format"><div class="rplol">Sound Blaster World of Warcraft Headset] GUID={0429B343-D023-4524-89BC-0478E0D9E3C3}? Error=I-00 Bitmaps not found. So wt

  • NoPlayerException in a RTP session

    hi, I'm learning jmf and follow the jmf2_0-guide. However, when I run the following code, it always says "Error:javax.media.NoPlayerException: Cannot find a Player for :rtp://192.168.1.22:8080/jmfstudy/testMedia.avi". 192.168.1.22:8080 is my ip and p

  • I want to listen to BBC4 shows on my

    I have a Zen 20gb (not video) I have tried downloading BBC radio 4 programmes today, which they play through REAL player. I would like to transfer them to my Zen, but they are .ram files, and my creative media source player can't play them. I have re

  • EJB3 Design Patterns (Session Beans)

    I've been learning about EJB3 and JSF as a potential technology for a new web app. As part of my learning about EJB3 and JSF, I came across this tutorial on the NetBeans site: http://www.netbeans.org/kb/55/ejb30.html In the tutorial there is one enti

  • Need help to write code for 'Print" button......!

    Hi all, I am working in oracle forms 6i.I am creating forms for ordering product/quantity(Entering quantity/product details). In my form i have "Print button" to print the quantity details which is in multi-record block(database item).Please help me