How To Adjust the a Pool's MaxPoolSize in resource xml DD.

For registering a JDBC data source via the XML resouce descriptor, is
there a way to specify pooling properties (e.g. MaxPoolSize)?
We typically use iasdeploy to register data sources and have
restrictions about using iAS admin ui. So if there is a way to adjust
pool properties via the command line I would love to know how.
Perhaps, .reg file like you can do for Windows NT? Can you do this with
kregedit? Is there another method for adjust a key in iAS registry?
Thanks in advance.
Fred Welland
[email protected]
Intelix inc.

You can see the "Re:DB query logging" thread posted by Jee Chung. That may
help you.
"The Wellands" <[email protected]> wrote in message
news:[email protected]..
For registering a JDBC data source via the XML resouce descriptor, is
there a way to specify pooling properties (e.g. MaxPoolSize)?
We typically use iasdeploy to register data sources and have
restrictions about using iAS admin ui. So if there is a way to adjust
pool properties via the command line I would love to know how.
Perhaps, .reg file like you can do for Windows NT? Can you do this with
kregedit? Is there another method for adjust a key in iAS registry?
Thanks in advance.
Fred Welland
[email protected]
Intelix inc.

Similar Messages

  • How to adjust the brightness of a second display connected to iMAC 2012  by Apple Mini DisplayPort to Dual-Link DVI Adapter?

    How to adjust the brightness of a second display (Dell 3007WFPHC 2560x1600 dpi) connected to 27 inch iMAC 2012 through thunderbolt port by an Apple Mini Display Port to Dual-Link DVI Adapter?

    Macs control computer by USB.  With a non-Apple display, you will have to use the brightness control on the display.

  • How to adjust the path of a tween using actionscript

    I'm a novice at Actionscript3 and would greatly appreciate an answer to what seems like a simple question:
    Here's my project:
    http://home.comcast.net/~samiri/director/mortals/amadoFlashPortrait/index.htm
    Click on the gray scale frame images. A larger version of that image tweens out along the z axis. However it comes from 'somewhere else' not from 'within the frame.' How do I get the each larger gray scale frame image to look like it comes directly from the place where the user clicks (not to one side or the other)?
    So I guess what I'm asking is how to adjust the path of the tween along the x and y axis using the actionscript code (below).
    My method:
    I'm using this line of code in my script:
    var myTween:Tween = new Tween(mdImg, "z", Strong.easeOut, 300, 0, 1, true);
    "mdImg" is the variable that holds the name of the hotspot clicked upon by the user.
    I have the larger (faded edge) image positioned directly on top of the frame image and just kept invisible until the User clicks on the hotspot over the frame image.
    Thanks much.

    Thanks moccamaximum,
    By "do your tweens manually" you mean to use the timeline to do frame-based tweening? That is an option but I'm wondering (as a newbie): Isn't it better to use actionscript to do animation since you have more control and it's time based rather than frame-rate based (and works better on low performance machines)? Just curious if I should be spending the time to learn actionscript or do it in the traditional way.
    Thanks

  • How to adjust the size of a region?

    Hello, would anyone know how to adjust the size of a region size?
    Thanks for your replies!

    Checkout an interesting article called " Oracle9iAS Portal Best Practices: Regions" to understand resizing region.
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/OTN_CONTENT/MAINPAGE/PUBLISH_CONTMGMT/TECHNOTE_REGIONS_0.HTML

  • How to adjust the font size of iPad in printing a web page.

    How to adjust the font size of iPad printout of web pages ?

    In HTML Header I put textDid you mean Page Header Text? It wouldn't have done much of anything at all in the HTML Header...
    However, the font doesn't do anything.Yet another universal selector problem: see +{message:id=4184109}+
    How do I overwrite the style sheet? I am wondering if I change the default style sheet, does that also affect the other pages, which is not what I want. In that case you can just include the CSS inline, which will also get round the universal selector issue. You are also recommended to use a semantic HTML element instead of deprecated presentational elements like &lt;center&gt; and &lt;font&gt;. Assuming this text is the primary heading on the page, use &lt;h1&gt;:
    <img src="#WORKSPACE_IMAGES#my_header_logo_white.jpg" alt="" title="Application" />
    <h1 style="font-size: large; font-weight: bold; text-align: center;">Web Management System</h1>

  • At the time of go-live, how to adjust the stock in the bins which match- -

    Hello,
    Materials are already distributed in to the bins physically where SAP WH mgt not implemented. When we implement the SAP/(at the time of go-live),we have following issues
    When we go live, then how to adjust the stock in the system as per actual physical bin stocks in WMS?
                 OR
    DO we have to tell user to adjust the stock in the bins physically as per the system stock?
    Thanks

    hi,
    your stock level get differed between storage level and warehouse level? if so go to LX23 AND EQUAL THE DIFFERENCE.
    if u want to change the bin level adjustment use lt01 and lt10 tran. as per your req(at the time of go live)  adjust according your inventory stock.
    regards
    muthuraman.d
    Edited by: muthuraman d on Dec 16, 2009 8:59 AM

  • How to display the Message Pool Messages in CE 7.2

    Hi Experts,
    Please let me know how to display the Message Pool Messages in CE 7.2.
    I have tried with reportContextAttributeMessage, but it is deprecated in CE 7.2.
    Please do the needful.Its Urgent.
    Thanks & Regards,
    SatheshKumar R

    Hi Sathesh,
    Do the following steps:
    1.) After creating a component, under it you will see Message Pools. Double click and open it.
    2).Click "Add Message" and add a new message. (Give a message key, type of message (either warning, error etc ) and message text).
    3). Save the metadata.
    4). Raise this message where all you want by using following code(For example, on click of a button) :
          IWDMessageManager msgnr = wdThis.wdGetAPI().getComponent().getMessageManager();
          msgnr.reportMessage(IMessage<component name>.<message>,null,true);
    For example, I have a component name TestAppComp and under message pool I have message called message1, then use lik this:
            IWDMessageManager msgnr = wdThis.wdGetAPI().getComponent().getMessageManager();
            msgnr.reportMessage(IMessageTestAppComp.MESSAGE1,null,true);
    Reply me if you any doubt.
    Regards,
    Jithin

  • How to construct the constant pool?

    Greetings,
    I seems to have a little bit of a problem.
    I have a text file, generated by the javap -c <class_name> command,
    i.e.:
    javap -c myClass > myClass.txt
    This myClass.txt is the input I've got. I do not have the myClass.class, from which it was generated.
    What I wish to do, is to generate, from this text file, a leagal, runnable, class file (i.e., myClass.class).
    But, I have problems understanding how to construct the constant pool array.
    I have read the VM spec (java.sun.com/docs/books/vmspec/2nd-edition/html/ClassFile.doc.html).
    The thing is, that it does not explain how to extract the needed information from the text file.
    Can someone assist?
    Would appreciate,
    Ohad.

    Compiled from Hello.java
    public class Hello extends java.lang.Object {
        public Hello();
        public static void main(java.lang.String[]);
    Method Hello()
       0 aload_0
       1 invokespecial #6 <Method java.lang.Object()>
       4 return
    Method void main(java.lang.String[])
       0 new #4 <Class java.util.Timer>
       3 dup
       4 invokespecial #7 <Method java.util.Timer()>
       7 new #2 <Class Hello$1>
      10 dup
      11 invokespecial #5 <Method Hello$1()>
      14 lconst_0
      15 lconst_1
      16 invokevirtual #8 <Method void schedule(java.util.TimerTask, long, long)>
      19 returnWell in this example, you have opcodes with arguments which are expressed as (for example) "#7 <Method java.util.Timer()>". This describes a constant pool element. I assume #7 refers to the location within the constant pool, and the text description tells you that it's an item of type method, and gives you the method name. So for all arguments expressed in this form, you'll need to reconstruct a constant pool item.

  • How to adjust the size of the slide in keynote to 7.5 feet high x 3.1 feet wide?

    How to adjust the size of the slide in keynote to 7.5 feet high x 3.1 feet wide?

    Keynote is not designed to produce printed media, it is set up is for video. There are dozens of applications that are designed for printed output on the Mac, Pages, Word, In design, Quark, Open Office, Libra.
    Pages is the accompanying application in the iWork suite that is specifically designed to print to paper, you should look at that first as it May be on your Mac already.

  • How to print the Module pool screen using a push button in the screen

    Hi Every one,
                         i have developed a module program , which have a selection screen and it display the output in a structured way.
    output includes boxes, texts etc...
    my problem is :---
    How to print the Module pool screen using a push button in the screen.

    When the "Print" button is pressed:
    leave to list-processing and return to screen 100.  "(current screen)
    Call a transaction that runs your print program.
    Rob

  • How to degub the module pool program

    Hi friends,
    could anyone tell me "How to degub the module pool program"...!!
    Thanks in advance..!!

    Hi
    Debugging of module pool is same as reports, use /h or put breakpoint
    but u shud know what u want to check
    there are generally two event used in module pool
    PBO
    This event is used before displaying the screen,It is used to clear fields table, show table control, tabstrip and most important conditionally modify the scrren .
    PAI
    is used to validate the fields which are entered on the screen with database values and then fetch records from table.
    i mean all values to make available in internal table
    now u would be sure which part u want to debug.
    Rewards if helpful..............

  • How to  adjust the text in input field

    Hi Expert,
    New in VC development. Can someone guide how to adjust the text in input field? Because of  long text length it  is not displaying fully in visual composer iView so user are not able to see the entire text in input fields

    HI Kundan,
    I assume that you have already tried different options perent in Label Postion for the field.
    If none of these options meet your requirement then you can try the following workaround:
    In the display properties, select label position as no label.
    In the form view add a new UI Control for Plain Text or HTML text and change its Label to "Material Number".
    Now place this new UI Control in before your actual Input field such that it appears as the field label.
    Hope this helps.
    Regards,
    Rk

  • How to adjust the height of the tracks in timeline mode

    I am trying to find my way around PE 10, have had the program for years but not used it. (I am using Win 7 on a 15" laptop, screen resolution is 1920x1080, 16 GB Ram, 4GB video RAM.) I took some video on vacation, in some clips there is a lot of wind noise. I know how to adjust the volume using key frames, but the tracks are only about ¼" wide making adjustment just about impossible. Full volume to zero is just a small fraction of an inch. I can zoom in on the track, but this doesn't make the track wider. Is there any way to do this?
    Thanks,
    David

    Actually, I wanted to do this in a static table.
    Just now, I learnt that this feature is not available in 12.0 as well as in other previous versions.
    However, this will be implemented in Release 12.1.
    Thanks,
    Navin.

  • How to adjust the width of a bar plot?

    Hi,
    I have to draw a bar plot and when I wire values to the chart for some reason they are almost 1 inch think for each number. I was wondering how to adjust the width such taht it is something more like 2 mm per entry?

    What you seem to be running into is the autoscale on the X-scale. Right click on the X scale and turn off autoscaling. You will then have to manually set the scale to get the width that you want.
    Hope this helps.
    Rob

  • How to adjust the BIOS to enable the RAID function.

    My MB is 845PE Max2(MS-6704) and the BIOS version I used is AMIBIOS A6704IMS v3.1 022803
    I need to know how to adjust the BIOS to enable the RAID function.
    Also, please tell me how to utilize 845PE max2 with RAID function.
    I've enabled the Integrated peripheral device/IDE RAID in BIOS.
    But the system still failed to detect my HD that I installed on IDE3-4.
    Please tell me which part I missed.
    much appreciated!!.

    Got the same problem here.
    Furthermore, i can't get the raid controller to get working in winXP. (device won't start)
    MSI 845PE MAX2-FIr GB-L/2.0/1394 (MS-6704)
    P4 2,4 ghz 533 fsb
    2x 512Mb kingston PC 2700 , DDR333.
    MSI G4 Ti4200-VTD8X
    WinXp pro + SP1 installed
    The board has 4 ide connections
    Got all kinds off trouble with this board X(
    Did install Windows XP Promise Fasttrak TX controller (PDC20276) , the device will not start.....
    IEEE 1394 Host Controller installed, the device will not start....
    Multimedia-videocontroller , no drivers available....
    Nice going, this really drives me up the wall!
    Don't know what to do anymore, plz help! ;(

Maybe you are looking for

  • PSE 9: Cannot open certain raw files in editor from Organizer.  Can directly tho.

    I can open my CR2 (Canon raw for 50D) files from the Elements 9 Editor.   But when I try to save, the "Save as Version Set" is grayed out even tho the photo is in the Organizer.  Conversely, when I try to open a CR2 file from the Organizer, I cannot.

  • No wifi signal after 3.1 update

    Any one else having wifi issues after update? After update keeps changing from 3g to wifi but with no signal and before update always had good signal in my house.

  • How to use the function module ADDRESS_INTO_PRINTFORM?

    Hi there, i need to use the function module ADDRESS_INTO_PRINTFORM. While doing so, I found out that the output parameter ADDRESS_PRINTFORM_TABLE has the District after the City, which is not at all acceptable. I am using the following import paramet

  • Multiple hyperlinks edit in iWeb - new window and format?

    Hello, I'd like to edit a selection of several hyperlinks in iWeb 3.04 but when selected, I am not able to check the "Open in new window" option or the options in the Format panel. Can this be done in iWeb 3.0.4? If not, any suggestions? Thank you

  • CS6 will not read 70D raw files?

    OK. I just upgraded from a 60D to a 70D and I am so in love BUT my RAW file can not be read by my Photoshop CS6. Do I need to upgrade? Yes, normally the camera's come with their own EOS Utility image upload but my computer will not recognize that eit