Set SGA maximum size larget than it's component

Dear all,
I want to activate the DISM in Oracle 10g on Solaris container, therefore I need to set the parameter sga_max_size larger than it's component.
From my understanding, below are the sga components parameter and the current value on my system::
SHARED_POOL_SIZE (560M)
LARGE_POOL_SIZE (0)
JAVA_POOL_SIZE (32M)
DB_CACHE_SIZE (560M)
STREAMS_POOL_SIZE (0)
The thing is, my sga max size parameter (1168M) is already larger than above parameters.
Is there another sga component I've missed ? Plz advice. Thanks.

Hi,
SGA: The size is determined indirectly from the size of the contained memory areas.
– 1) Buffer pool: DB_BLOCK_BUFFERS (unit: blocks) or DB_CACHE_SIZE when you use the dynamic SGA
2) – Shared pool: SHARED_POOL_SIZE
–3) Java pool: JAVA_POOL_SIZE
– 4) Large pool: LARGE_POOL_SIZE
–5) Streams pool (Oracle 10g or later): STREAMS_POOL_SIZE
–6) Redo buffer: LOG_BUFFER
In addition, in the context of the dynamic SGA , you can define parameter
SGA_MAX_SIZE, which sets an upper limit for the total size of the SGA. In
general, you can only increase the size of parameters, such as DB_CACHE_SIZE
or SHARED_POOL_SIZE, up to the size defined by SGA_MAX_SIZE.
Thanks
Sunny

Similar Messages

  • Forms: How to set a maximum size in Text Fields with automatic size

    ¡Hi!
    When I set a text field on my forms and I use automatic size for te text that the user can write, if the user don't need more space than the field size, when the text appears, Adobe Acrobat Pro always set the text-size to 14 or higher. How can I set a maximum size for that text? For example... 12 or 10...
    Thank you very much,
    Best regards from Spain,
    David.

    Ok. If I use a single line text field, changing the height of the field seems to be a simple way to solve the problem, but... what should I do when the fields are multi-lineal?
    Thanx for your quick answer.

  • How Do You Set the Maximum Size of a JFrame?

    Can someone show me a quick example? The JFrame can be empty, I just want to know how to set it's maximum size. I tried using setMaximumSize() and it doesn't work for some reason but setMinimumSize() works fine.
    I tried it using a BoxLayout and even using null as a layout manager and can't get it to work. I heard that the other layout managers don't allow you to set the maximum size of a JFrame so that is why I tried it with the layouts that I did.
    I tried the following code (imported the necessary classes), but it does not work...
    public class MyFrame extends JFrame
        public MyFrame()
            super("TestFrame");
            setLayout( new BoxLayout(getContentPane(), BoxLayout.X_AXIS)  );       
            setMaximumSize( new Dimension(400,200));
            setSize(300,150);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setVisible( true );                
    }// end class

    Reposted from
    {color:#0000ff}http://forum.java.sun.com/thread.jspa?threadID=5236259{color}
    @OP:
    When you repost a topic, please always provide a link to the previous post so people can check what suggestions were already offered (and didn't solve the problem).
    Better still, give a short summary of the advice you have already tried.
    I suggested setBackground(...) so you can see whether your MyFrame is actually occupying the entire real estate of the window. Looks as if trying it out (which I would have done for you if I'd been at home, where my JDK is) would have been too much effort for you.
    I'm pretty much a novice in Swing, but I can tell you this: setLayout controls the layout of components added to the JFrame, not the layout of the frame with respect to its parent container.
    Luck, Darryl

  • The font in the URL address line is too small. How do I make it bigger? My computer screen is already set for maximum size.

    # Question
    Since Firefox last updated to a new version, the font in the URL address line is too small. How do I make it bigger? My computer screen is already set for maximum size.

    See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files
    Add code to [http://kb.mozillazine.org/UserChrome.css userChrome.css] below the @namespace line.
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #urlbar .textbox-input-box {font-size:13pt !important;}
    #searchbar .textbox-input-box {font-size:13pt !important;}
    #FindToolbar .textbox-input-box {font-size:13pt !important;}
    </nowiki></pre>

  • I want to set a maximum size for pictures when FF shows websites. How can i do that? NO I DONT MEAN "HOW TO ZOOM".

    I have FF 34 but this problem has been there for a lot of earlier versions. On many webpages there are pictures that cover my whole screen, and I want to set maximum size for showing images on webpages.
    I ONLY wanr to change the maximum size of the images, AND IAM NOT asking about how to zoom the webpage.

    Do you want to hide large images or merely make them smaller by setting a max-width and max-height?
    You would probably have to use JavaScript (bookmarklet) to achieve this reliably.
    There are bookmarklets to make large images fit in the window to avoid a horizontal scroll bar
    You can try this code in the <b>userContent.css</b> file (adjust the max-width accordingly).
    *http://kb.mozillazine.org/userContent.css
    <pre><nowiki>img { max-width: 1024px !important; height: auto !important; }</nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    *Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
    *Use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
    *Paste the code in the userContent.css file in the editor window
    *Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css.<br>Otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file

  • Set Maximum size for a subpanel created with splitter bars in LV8

    Does anyone know how to set the Maximum size for a subpanel created with asplitter bar? If I show one cluster in the subpanel and use the scroll bar to scroll, I can see more (blank) area than I want. I just want the user to be able to scroll a cluster within a subpanel while the cluster is larger than the view area of the subpanel. I don't want to let the user scroll outside the cluster.
    Ravi Beniwal

    I apologize for the mixup in terminology. Please read Pane wherever the word Subpanel was used.
    Please see the attached VI for a description of my problem.
    I would really appreciate any help with this.
    Ravi Beniwal
    Attachments:
    Pane Scrolling Problem.vi ‏10 KB

  • How Do You Set a JFrame's Maximum Size?

    Can someone show me a quick example? The JFrame can be empty, I just want to know how to set it's maximum size. I tried using setMaximumSize() and it doesn't work for some reason but setMinimumSize() works fine.
    I tried it using a BoxLayout and even using null as a layout manager and can't get it to work. I heard that the other layout managers don't allow you to set the maximum size of a JFrame so that is why I tried it with the layouts that I did.

    Darryl.Burke wrote:
    Are you displaying your MyFrame as a top-level window or adding it to a parent JFrame with null or BoxLayout set?
    Maybe the method you're looking for is setMaximizedBounds(Rectangle bounds)
    You could also try this: setBackground(...) to something other than the default background and run your program again.
    I'm at work and can't try ou any of my suggestions, so please post back if you get any progress.
    dbsetMaximizedBounds is a little better but not really what I was looking for. I can still make the window go passed the set boundaries when the window hasn't been maximized.
    Also, I checked that method setBackground, that only seems to change the color, is that the same method you were referring to?

  • GUI - Set Maximum Size

    Hello,
    I tried setting the maximum size of the screen using this:
    WelcomeScreen screen2 = new WelcomeScreen();
                             screen2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                             //screen1.setSize(550, 100);
                             screen2.setSize(screen2.getMaximumSize());But it is bigger than the screen, not by much, but still bigger and also, the maximize icon is present (normally when I window is fully maxed it will appear as a restore icon)
    Please help!

    Still posting in the wrong forum.
    Do you not understand the concept of actually searching a forum "BEFORE" posting a question?
    This question is asked and answered all the time in the Swing forum. So search there. If you don't find your answer then you post your question there so that people who actually do search the forum first can benefit from the answer given.

  • Can't change Canvas's Maximum Size

    Hi, I am trying to make a program which has a frame which is fullscreen and a canvas which is the same size.
    So far I have got this:
    JFrame frame = new JFrame("Screensaver");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Toolkit tk = Toolkit.getDefaultToolkit(); 
    screenWidth = ((int) tk.getScreenSize().getWidth()); 
    screenHeight = ((int) tk.getScreenSize().getHeight()); 
    frame.setSize(screenWidth, screenHeight); 
    frame.setUndecorated(true);
    frame.setResizable(false);
    Canvas canvas = new Canvas();
    Dimension screenSize = new Dimension(screenWidth, screenHeight);
    canvas.addMouseListener(new MouseAdapter() { public void mouseClicked(MouseEvent e) { System.exit(0); } });
    frame.getContentPane().add(canvas, BorderLayout.CENTER);          
    frame.setVisible(true);
    canvas.setMaximumSize(screenSize);
    canvas.setSize(screenSize);Note: At the beginning of the class is:
    public int screenWidth.;
    public int screenHeight;But the canvas still won't draw larger than the default maximumSize.
    As soon as I change the maximumSize, and then look at it again, it's gone back to the default!
    Anyone have any idea why?

    Do you want a [full screen exlcusive|http://java.sun.com/docs/books/tutorial/extra/fullscreen/index.html] window or just a window that happens to be the size of the desktop (minus the area of the taskbar)?
    But the canvas still won't draw larger than the default maximumSize.I'm not sure how to interpret this statement. You've set the maximum size to the the desktop. So are you saying you can't draw beyond the desktop? Are you using canvas.getGraphics() by any chance?
    As soon as I change the maximumSize, and then look at it again, it's gone back to the default!The canvas is added to the content pane in the BorderLayout.CENTER region. And it's the only component in there. Hence, it will be the same size as the content pane (which is the same size as the frame) regardless of what size or preferred size you may set on it. This is to be expected though. BorderLayout is allowed to resize the center component to take up the extra space.

  • Maximum size param in file channel

    Hello All,
    What is the parameter to mention in the sender communication channel to restrict huge files
    I remember there is a paramter that can be configured in channel Maximum File Size
    Can someone tell me the exact syntax for that
    THanks,
    Regards,
    Moorthy

    goto sender CC -->Parameters -->Advanced,
    There is a check box "Advanced Mode".
    After checking that, you will find "Maximum file size".
    There you can set the maximum size of file.
    -santosh.

  • Sga max size is not changed.

    We use Oracle 11gr2 on win2008R2.
    Our member said that he set sga max size by
    alter system set sga_max_size scope=spfile; max size to 6GB.
    And he restared that OS and DB instance , then
    show parameters sga_max_size was 7.6GB.
    we use  dynamic SGA and automatic memory management.
    Is it natural things ? If so, I would like to explaint about to our customer.
    Why the show parameters sga_max_size was 7.6GB ?

    DUPLICATE POST. please continue with our original post. Please mark this question answered and check the following link:
    sga max size is different

  • Sga max size is different

    We use Oracle 11gr2 on win2008R2.
    Our member set sga max size by
    alter system set sga_max_size scope=spfile; max size to 6GB.
    And we restared that OS and DB instance , then
    show parameters sga_max_size was 7.6GB
    Why is that ?

    If MEMORY_TARGET is set to a non-zero value:
    If SGA_TARGET and PGA_AGGREGATE_TARGET are set, they will be considered the minimum values for the sizes of SGA and the PGA respectively. MEMORY_TARGET values can range from SGA_TARGET + PGA_AGGREGATE_TARGET to MEMORY_MAX_TARGET.
    Now check if your memory_target is set.
    Read this metalink note as well:
    Automatic Memory Management (AMM) on 11g (Doc ID 443746.1)

  • Set maximum size in Text Form Field Options for a field in bi publisher RTF

    Hi All,
    How to set maximum size in Text Form Field Options for a field in bi publisher RTF.
    I have a RTF whch is having a field in that i need to add some validation condition but after adding certain condition in Add help text tab ,it is not accepting after certain length, how i can increase the length to unlimited,please help me on this
    Thnaks

    Form fields have some restrictions if your are using version lower than 11g.
    They can accommodate only 393 chars. You can add the text in both status bar and help key, which can in total consume 393 chars.
    If your code logic is more than that, it can be split into multiple form fields as Avinash suggested or you can use sub template logic and handle coding over there. Again in sub template code can be within/outside form fields.
    So there is no option for user to increase the size of form field.

  • How to set MAXIMUM size of a formatted string?

    Hello
    Assume I have an Object foo with a
    toString(){ return "a long name to print"; }and that I want to print it with minimum space of 40, I would say
    System.out.printf("foo say: %1$40s", foo.toString() )But I need very often to set a maximum width, so that any strings or fields wider than this is truncated. Eg:
    System.out.printf("foo say: %1$5s", foo.toString())gives i.e. "foo say: a l..". Is this possible, using the Formatter class (or similar) in Java? So far I have created my own class to enable this, but I want to use as much predefiend classes as possible.
    Regards
    Fluid

    You need to use a precision argument:
    String foo = "a long name to print";
    System.out.printf("foo say: %.8s", foo); // 8 maxhttp://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax

  • Maximum size for an HttpRequest? Set Content-Length?

    Hi, I'm managing to get small strings sent from my applet to my servlet, but when I try anything bigger, I get problems. Oddly enough, the larger object can get sent to my applet from my servlet without any issues.
    Can anyone tell me if there is a maximum size for sending responses?
    Or, if I have to set the content-length property in my applet before I send my data, how do I get the size of my object so I can set it?
    thanks for any advice any of you might have

    Thanks for the pointers.
    BalusC, at first I was trying to write my object without sending it through a byteStream first (hence the q) :), tried it that way too and wouldn't work.
    I finally figured out that it wasn't the code that was the problem, but it was an upload issue (server specific). Have changed the code to sending one line of data at a time since I was converting my object to an output file in the servlet anyway. Not the best solution but it works :)
    Thanks again

Maybe you are looking for