Is it possible to configure the size of MVCC freezer files?

Sometimes we run a large update transaction and 1000's of freezer files are created. I realize increasing the cache size will reduce the need for the freezer files, but I'm just wondering if it is possible configure the freezer files to be larger than the apparent 8KB (is that what the .8K suffix stands for?) file size... to reduce the number of freezer files that are created?

Matt (right?),
The freezer files represent pages. The default page size in BDB XML is 8k for node storage containers, and 16k for wholedoc containers. Being able to put multiple pages in a single file when this happens seems (to me) to be a good idea for file systems that don't handle lots of files in a single directory very well. I don't know if that will ever be implemented, but it's a good thought. I think the assumption for the implementation is that this is a rare event rather than the norm.
Regards,
George

Similar Messages

  • Is it possible to personalize the size or the Path to your cache, history, temporary files and others?

    Is it possible to personalize the size or the Path to your cache, history, temporary files and others? If it is, how can I do it?
    I explain why. I am willing to create a RamDisk partition where I would place that kind of files with support to a bigger size, that way increasing my speed in Internet, and avoiding permanent writes in the SSD drive.
    I am in i7 920 CPU, with system and programs working in a SSD drive and have 24 GB of RAM memory.

    Hi cor-el
    In my Desktop I have the 9.0.1 version of Firefox.
    I don’t know if it is or not the portable one, but I presume not.
    I couldn’t follow your first link, because page is not found.
    The second link takes me to somewhere where I have already been and that gives no solution to my question.
    I don’t want to disable cache in Firefox. By the contrary, I want it enabled and I’m trying to make it more efficient, making it bigger and placed in a very fast driver (A RamDisk driver, which is a driver made from RAM memory).
    '''''What I want is to configure by myself the place where the cache and other temporary files are placed in my computer, and their size.'''''
    So, I repeat my first question. Is this possible?
    Although I am Portuguese you don´t need to redirect me to Portuguese pages, cause I’m perfectly familiar with English.

  • Is it possible to adjust the size of an inputText to the column size ..?

    Is it possible to adjust the size of an inputText that it correspond to the column size in a af:table.
    Thanks

    I don't need 30% ... i just need that me tree as a mininal width
    Here is my page :
    <af:panelBorder>
    <f:facet name="top">
    <af:panelHeader text="#{res['classification.repository.entryList.panelHeader.title']}"/>
    </f:facet>
    <f:facet name="left">
    <af:panelGroup layout="vertical">
    <af:panelHeader text="#{res['classification.repository.entryList.list.panelHeader.title']}">
    <af:tree value="#{bindings.ClassificationEntryListclassificationEntry.treeModel}"
    var="node">
    <f:facet name="nodeStamp">
    <h:panelGroup>
    <af:commandLink text="#{node.classificationEntryCategoryCode} #{node.classificationEntryCode}"
    shortDesc="#{res['classification.repository.entryList.tree.commandLink.shortDesc.textPart1']} #{node.classificationEntryStatus} #{res['classification.repository.entryList.tree.commandLink.shortDesc.textPart2']}#{node.classificationEntryCodeFullPath}">
    <f:param name="selectedIdentification"
    value="#{node.classificationEntryIdentification}"/>
    </af:commandLink>
    </h:panelGroup>
    </f:facet>
    </af:tree>
    </af:panelHeader>
    </af:panelGroup>
    </f:facet>
    <af:panelGroup layout="vertical">
    <af:panelHeader text="#{res['classification.repository.entryList.node.panelHeader.title']}"
    binding="#{backingRepositoryEntryList.entryNodePanelHeader}">
    <af:showDetailHeader text="#{res['classification.repository.entryList.base.panelHeader.title']}">
    <af:panelForm>
    <af:inputText value="#{bindings.classificationEntryCategoryCode.inputValue}"
    label="#{bindings.classificationEntryCategoryCode.label}"
    required="#{bindings.classificationEntryCategoryCode.mandatory}"
    columns="#{bindings.classificationEntryCategoryCode.displayWidth}">
    <af:validator binding="#{bindings.classificationEntryCategoryCode.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.classificationEntryCode.inputValue}"
    label="#{bindings.classificationEntryCode.label}"
    required="#{bindings.classificationEntryCode.mandatory}"
    columns="#{bindings.classificationEntryCode.displayWidth}">
    <af:validator binding="#{bindings.classificationEntryCode.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.classificationEntryCodeFullPath.inputValue}"
    label="#{bindings.classificationEntryCodeFullPath.label}"
    required="#{bindings.classificationEntryCodeFullPath.mandatory}"
    columns="#{bindings.classificationEntryCodeFullPath.displayWidth}">
    <af:validator binding="#{bindings.classificationEntryCodeFullPath.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.classificationEntryIdentification.inputValue}"
    label="#{bindings.classificationEntryIdentification.label}"
    required="#{bindings.classificationEntryIdentification.mandatory}"
    columns="#{bindings.classificationEntryIdentification.displayWidth}">
    <af:validator binding="#{bindings.classificationEntryIdentification.validator}"/>
    </af:inputText>
    </af:panelForm>
    </af:showDetailHeader>
    <af:showDetailHeader text="#{res['classification.repository.entryList.mainTitle.panelHeader.title']}">
    <af:table value="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.collectionModel}"
    var="row"
    rows="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.rangeSize}"
    first="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.rangeStart}"
    emptyText="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.viewable ? 'No rows yet.' : 'Access Denied.'}"
    selectionState="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.collectionModel.selectedRow}"
    selectionListener="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.collectionModel.makeCurrent}"
    width="100%">
    <af:column sortProperty="language" sortable="true"
    headerText="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.labels.language}"
    width="20%">
    <af:inputText value="#{row.language}" simple="true"
    required="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.attrDefs.language.mandatory}"
    columns="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.attrHints.language.displayWidth}"
    inlineStyle="width: 100%"/>
    </af:column>
    <af:column sortProperty="content" sortable="true"
    headerText="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.labels.content}">
    <af:inputText value="#{row.content}" simple="true"
    required="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.attrDefs.content.mandatory}"
    columns="#{bindings.ClassificationEntryTitleclassificationEntryMainTitle.attrHints.content.displayWidth}"
    inlineStyle="width: 100%"/>
    </af:column>
    <f:facet name="selection">
    <af:tableSelectOne text="Select and">
    <af:commandButton text="Submit"/>
    </af:tableSelectOne>
    </f:facet>
    </af:table>
    </af:showDetailHeader>
    <af:showDetailHeader text="#{res['classification.repository.entryList.complementaryTitle.panelHeader.title']}">
    <af:table value="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.collectionModel}"
    var="row"
    rows="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.rangeSize}"
    first="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.rangeStart}"
    emptyText="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.viewable ? 'No rows yet.' : 'Access Denied.'}"
    selectionState="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.collectionModel.selectedRow}"
    selectionListener="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.collectionModel.makeCurrent}"
    width="100%">
    <af:column sortProperty="content" sortable="true"
    headerText="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.labels.content}"
    width="20%">
    <af:inputText value="#{row.content}" simple="true"
    required="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.attrDefs.content.mandatory}"
    columns="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.attrHints.content.displayWidth}"
    inlineStyle="width: 100%"/>
    </af:column>
    <af:column sortProperty="language" sortable="true"
    headerText="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.labels.language}">
    <af:inputText value="#{row.language}" simple="true"
    required="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.attrDefs.language.mandatory}"
    columns="#{bindings.ClassificationEntryTitleclassificationEntryComplementaryTitle.attrHints.language.displayWidth}"
    inlineStyle="width: 100%"/>
    </af:column>
    <f:facet name="selection">
    <af:tableSelectOne text="Select and">
    <af:commandButton text="Submit"/>
    </af:tableSelectOne>
    </f:facet>
    </af:table>
    </af:showDetailHeader>
    </af:panelHeader>
    </af:panelGroup>
    </af:panelBorder>

  • Is it possible to adjust the size of the columnes when send alv by mail  ?

    is it possible to adjust the size of the columns when send alv by mail  ?
    i send alv ( list ) by mail  , work fine but all the columns are small and in the
    same size , can i adjust it in the mail   ?
    how to do it in regular alv i know it  .
    LS_FCAT-OUTPUTLEN = 29 .

    is it possible to adjust the size of the columns when send alv by mail  ?
    i send alv ( list ) by mail  , work fine but all the columns are small and in the
    same size , can i adjust it in the mail   ?
    how to do it in regular alv i know it  .
    LS_FCAT-OUTPUTLEN = 29 .

  • Is it possible to change the size of a partitioned hard drive?

    I use an iBook G4 (PowerPC) and partitioned an external hard drive. Is it possible to adjust the size of the partition without losing the contents of the external drive? If so, how?
    Thanks!

    Hi The Zach;
    Please read the requirements of these applications for resizing partitions very carefully! Most of them suggest that you back up prior to using them.
    After reading all of these warning rather then using any of these applications what I simply do is the backup first then change the partitioning with Disk Utilities and restore. I find this method to be quick and inexpensive.
    Allan

  • Is it possible to increase the size of my startup partition?

    Hello,
    I need to know if it is possible to increase the size of my startup partition. I have a 320gig drive that I put in my MacMini. I had given my startup partition 100Gig, and then created 2 other partitions. I've since started getting messages that my diskspace was running low and wondered how that could be. Well, upon using Grandprespective I found I have a 45gig .sparsebundle file, which I believe is related to my use of FileVault. I had tried to turn off File Vault, but it then tells me that I don't have enough space to turn it off. My thinking, if it wasn't taking up so much space I wouldn't have that problem to begin with......
    So then I thought I might be able to adjust the size of my startup partition, but after I shrink the size of the partition next to it, it still will not let me shrink the size of my start up partition.
    Is it not possible to decrease the size of a startup partition?
    Thanks,
    Jeff

    Don't partition.
    Off load files to another drive.
    Clone and backup and then restore to a single HFS+ partition.
    Partitions either don't work, get in the way, or you/I have to be ready to redo them.
    Now, there may be a 3rd party program you can buy, but I'm not sure and of course you should not try anything without backups.
    First thing that comes to mind would of course be "iPartition" but as I said, never used or read anything on.
    The other, to buy yet again another larger or 2nd drive.

  • Is it possible to increase the size of the menu bar?

    My friend just got a nice new 27" iMac. On such a large display the menu bar disappears into oblivian when you sit far enough back to actually use such a large display. Is it possible to increase the size of the top menu bar? I had a look around at preferences and couldn't find anything.
    Thanks in advance
    SR

    In short, no. Just found five or six threads asking this. Here's one.
    https://discussions.apple.com/thread/2602785?threadID=2602785&tstart=45#12374829
    And, zooming the screen is a non-starter, because when you do that the menubar disappears entirely.

  • Is it possible to increase the size of the police in the finder menu in Lion?

    Hezllo,
    Is it possible to increase the size of the police in the finder menu in Lion?
    Thhanks for your reply.

    I see, in Finder you have the ability to see things in multiple views. I would very strongly recommend you use the Find Out How Video tutorials , specifically Finder Basics. You can increase the font size in any view by clicking the View menu - Show View Options where you can increase the font size.

  • It is not possible to configure the selected XI domain

    Hi...
    PI 7.0 server on Windows environment and database is SQL Server.
    PI Server pick and place the messages from r/3 to r/3 in Oneway but in the reverse it is pick the messages from source but it is not place to the target system.
    The error messsage in RWB in end to end monitoring...
    It is not possible to configure the selected XI domain because the Integration Server does not exist or could not be read from the SLD
    In Component monitoring...
    500 internal server error
    Application error occured during repuest processing..
    Thnx
    Raj

    Thanks for your promp response, tbluong.
    The configuration in SXMB_ADM > Integration Engine Configuration is already done and its check (F7) returns success (all green): "Role of Business System: Current Configuration = System Landscape" and "Corresponding Integration Server: Current Configuration = System Landscape".
    Any suggestion?
    Regards.

  • In the metadata settings i can find the file size in pix. is it possible to see the size in inches?

    in the metadata settings i can find the file size in pix. is it possible to see the size in inches?

    Yes, that is one way to do it. But you can also do it by doing some simple math. For instance, let's say the you have an image that is 4000 x 6000 pixels. It doesn't matter whether resolution setting is in the file. The image is still 4000 x 6000 pixels. But you can decide what resolution you are going to export your copy. And you would do that for its intended purpose. If you are going for a high quality print then you would probably want 300 PPI in your export settings. With the example I've given the size print you can get had 300 PPI would be as follows:
    4000 (pixels) / 300 (PPI) = 13.333 Inches
    6000 (pixels) / 300 (PPI) = 20 inches
    So if you were really precise in needing a 300 PPI print you can get one that is 13 x 20".
    If you are preparing for display on the screen, the higher resolution isn't needed. Using the same math:
    4000 / 72 = 55.55 inches
    6000 /  72 = 83.33 inches
    By doing some simple math in your head you can determine the resolution that you need and the size that you need and set up your export accordingly.
    Technically speaking a digital image doesn't have a size other than pixel dimensions. Everything else has to be determined by the resolution that you need for the intended purpose of the final image.

  • HT5548 Is it possible to change the size of the icons shown in Launchpad? Mine seem very large.

    Is it possible to change the size of the icons in Launchpad? Mine seem very large.

    Thanks for the reply UKoC. You are close on the size. I would say they are about an inch to an inch and a half in width and only seven across the row. They just seem quite large on my display and I figured there would be an easy way. I kept thinking I just had to be missing the way for adjusting them since everything else seems to be so easy to personalize. Funny thing is that I have watched an online tutorial twice now on Apple's web site showing Launchpad and the icons shown there are smaller and more of them. I just thought I was missing the fix somehow. Thanks for confirming this.

  • Configure paper size in a PDF file.

    I create a LEGAL size MS Word document. Using Acrobat standard 7, i convert it to a PDF file. After, i send it to many users by email. The end users have Acrobat Reader. They open the document and print it. The problem is : the document print in a LETTER format. Is it possible to configure the PDF file when i create it to be print in a LEGAL format?
    The end users have not computer knowledge and they cannot configure the printer.
    Thank you for your help

    PDF's does not have a feature to tell a printer what size paper to print on.
    Appligent Document Solutions
    http://www.appligent.com

  • Is it possible to export the "Mediathek" in a data file (excel or word) ?

    Is it possible to export the "Mediathek" in a data file (excel or word) ?

    see my old post:
    https://discussions.apple.com/message/6272619?messageID=6272619#6272619?messageI D=6272619

  • I need to reduce the size of several pdf files before transferring them onto a research database. Each file is made up of 100 images (pages of diaries)

    I need to reduce the size of several pdf files before transferring them onto a research database. Each file is made up of 100 images (pages of diaries) & is up to 1.36 GB in size. I have tried reducing file size in preview but the images are unreadable. Any ideas? 

    WHen I want to reduce the file size, I either use "Optimize Scanned PDF", or more often use "Reduce File Size". Both are on the Document menu. The Reduce File Size selection has some limited customization that is used, when selected.

  • Is it possible to extract the contents of any PDF file using Adobe PDF SDK?

    Is it possible to extract the contents of any PDF file using Adobe PDF SDK?
    For Example: There is one pdf file. Let us say xxx.pdf with 32 pages. I am interested in only in a topic present at 10th page. Can I extract this information and save it into another pdf file (means new pdf file)?

    Thanks Irosenth,
    I am actually interested in extract the page and create a new PDF with that page. But still there is a catch that on which basis the page needs to extract either on PAGE number OR on Bookmark basis.
    But here in this scenario assume I am looking for the PDF file, now I want to save only page 5. How can I extract page 5 automatically/programmatuically? Or in simple word how can I get the reference link of page 5?
    Here I am not getting clear picture that Do I need both SDK Adobe & Acrobat to achieve this requirement. And more over you have mentioned that SDK itself is free. But on Adobe side it is mentioned that it is available by license only with this I have another doubt: To work my desktop/system application with Adobe PDF library, this library needs to distribute with the application. So in this case will it be chargeable for each and every deployment.
    Could you please provide me the link from where I can download the SDK? So that I can do some excerise with SDK to figure out the exact flow of functionality to work with my application.

Maybe you are looking for

  • Adobe Media Encoder CS4, converting mp4 to flv - seriously drifting sync

    (Not sure this is the right forum for this - I didn't see a forum for AME but it's being used in conjunction with Flash) I've  been trying to convert a 2:54 mp4 to flv, and when I'm done, when  playing the resulting flv it tells me it's now 3:37. Of

  • Connect MacBook And Windows PC

    my macbook connect to router with wifi. also my window pc connect to router with lan. in router DHCP enabled and configured. both macbook and pc show in DHCP clint list, but ping request from macbook not get windows pc, also can't connect macbook to

  • Help i can't import my CDs on the new itunes

    I know that lots of people are having this problem because i have read alot of the posts, but if somebody would be kind enough to help i would really appreciate it. I can't import any of my CDs in itunes. The CD does not appear in the source list. So

  • More than 1 AX for "extend a network"

    is it possible to add multiple AX's or AE's to extend the network, or can you only use 1.

  • ITunes installation problem, like so many others apparently

    I tried to install iTunes but got an error message about ISScript being too old. I reinstalled versions 7, 8, & 9 from the InstallShield website and tried again. Same thing. I then tried the steps listed on http://docs.info.apple.com/article.html?art