Setting 16GB SGA out of 23GB RAM in 64 bit Linux AS4 Update4 for Oracle10.2

Dear All,
I am trying to install Oracle10gR2 on my 64 bit Linux AS4 Update4 server. My RAM is 32GB, i want to set SGA size 16GB.
1) Can the linux server allows 16GB SGA?
If it doesn't allow, what are the things i have to do to set the SGA size 16GB
2) Please let me have a document of 10gR2 installation on 64bit AS4Update4 Linux.
Thanks in advance
Mahi

On 64-bit, there is no limit on SGA size, just set sga_target=16g.
For documentation, see the usual http://tahiti.oracle.com, http://download.oracle.com/docs/cd/B19306_01/install.102/b15667/toc.htm (AMD64/EM64T) or http://download.oracle.com/docs/cd/B19306_01/install.102/b15674/toc.htm (Itanium) or others (zSeries, IBM Power) - this depends on HW platform for the Linux. There is no special guide for RHEL/Suse/Oracle Linux, vendor-specific info is always included in the installation guide itself.

Similar Messages

  • My WiFi is not working on my ipod touch third gen. The wifi option in setting is blanked out so i am unabole to select it. I have tried restored it and resetting network connections. Also the battery life is very low.

    My WiFi is not working on my ipod touch third gen. The wifi option in setting is blanked out so i am unabole to select it. I have tried restored it and resetting network connections. Also the battery life is very low. How do i fix this????????????

    If a restore did not fix it, you have a hardware issue--possible bad wi-fi radio.
    Basic troubleshooting steps. 
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 

  • How to find out how much RAM  allocated to ASE sybase 15.7 on HP-unix

    Dear expert/Sir,
               How to find out how much RAM  allocated to Sybase ASE 15.7 and I using operating system is HP-Unix, because I have set  max memory

    Appending to Bret's reply, the following may help you in understanding
    SAP Sybase ASE maintains two other measures of memory besides max memory.
    You can observe them using sp_configure "memory" procedure
    1. The total logical memory : represents the amount of memory required by all objects that are allocated in the configuration file; for example, users, caches, open databases, and open objects.
    2. The total physical memory : represents the amount of memory that is actually in "use" at a given time.This fluctuates according to the number of users online and the number of open objects, among other factor
    HTH
    Rajesh

  • My daughter and I have separate iCloud accounts set up on out desktop PCs and our iPhones and iPads. We want to share the usage of a Win 8 laptop and will log in using using separate user accounts. Is it possible to set up our own iCloud accounts?

    My daughter and I have separate iCloud accounts set up on out desktop PCs and our iPhones and iPads. We want to share the usage of a Win 8 laptop and will log in using using separate user accounts. Is it possible to set up our own iCloud accounts in each of those separate user accounts?

    No it is not possible.  Content purchased from the iTunes Store is permanently tied to the account from which it was originally purchased, and Apple does not provide a way to change it.

  • Unable to turn Wi-Fi or Bluetooth on or off because the setting is grayed out or dim., Unable to turn Wi-Fi or Bluetooth on or off because the setting is grayed out or dim.

    Unable to turn Wi-Fi or Bluetooth on or off because the setting is grayed out or dim.

    Try to re-set it as rudegar suggests. If that doesn't work, try a restore. If that doesn't work, try a restore as new.
    If the settings are still grayed out, then your phone has suffered a hardware failure.

  • Returning result set from procedure out parameter, display with anon block

    I'm trying to do something pretty simple (I think it should be simple at least). I want to use a pl/sql procedure to return a result set in an OUT parameter. If I run this code by itself (in the given anonymous block at the end, without trying to display any results), toad says that the PL/SQL procedure successfully completed.
    How can I display the results from this procedure? I am assuming that the result set should be stored in the O_RETURN_REDEEM_DTL, but how can I get anything out of it?
    I have this package with the following procedure:
    /* FUNCTION - REDEEM_DTL_READ                          */
         PROCEDURE REDEEM_DTL_READ(
              ZL_DIVN_NBR_IN     IN     REDEEM_DTL.ZL_DIVN_NBR%TYPE,
              GREG_DATE_IN     IN     REDEEM_DTL.GREG_DATE%TYPE,
              ZL_STORE_NBR_IN     IN     REDEEM_DTL.ZL_STORE_NBR%TYPE,
              REGISTER_NBR_IN     IN     REDEEM_DTL.REGISTER_NBR%TYPE,
              TRANS_NBR_IN     IN     REDEEM_DTL.TRANS_NBR%TYPE,
              O_RETURN_REDEEM_DTL OUT REDEEM_DTL_TYPE,
              o_rtrn_cd       OUT NUMBER,
              o_err_cd        OUT NUMBER,
              o_err_msg       OUT VARCHAR2
         IS
         BEGIN
              o_rtrn_cd := 0;
              o_err_msg := ' ';
              o_err_cd := 0;
              --OPEN REDEEM_DTL_READ_CUR(ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN, REGISTER_NBR_IN, TRANS_NBR_IN);
              OPEN O_RETURN_REDEEM_DTL FOR SELECT * FROM REDEEM_DTL;
    --           LOOP
    --                FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
    --                EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
    --           END LOOP;
    --           CLOSE REDEEM_DTL_READ_CUR;
         EXCEPTION
          WHEN OTHERS
          THEN
               o_rtrn_cd := 7;
                 o_err_msg := SUBSTR (SQLERRM, 1, 100);
                 o_err_cd  := SQLCODE;
         END REDEEM_DTL_READ;and call it in an anonymous block with:
    DECLARE
      ZL_DIVN_NBR_IN NUMBER;
      GREG_DATE_IN DATE;
      ZL_STORE_NBR_IN NUMBER;
      REGISTER_NBR_IN NUMBER;
      TRANS_NBR_IN NUMBER;
      O_RETURN_REDEEM_DTL PSAPP.CY_SALESPOSTING.REDEEM_DTL_TYPE;
      O_RETURN_REDEEM_DTL_OUT PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ_CUR%rowtype;
      O_RTRN_CD NUMBER;
      O_ERR_CD NUMBER;
      O_ERR_MSG VARCHAR2(200);
    BEGIN
      ZL_DIVN_NBR_IN := 71;
      GREG_DATE_IN := TO_DATE('07/21/2008', 'MM/DD/YYYY');
      ZL_STORE_NBR_IN := 39;
      REGISTER_NBR_IN := 1;
      TRANS_NBR_IN := 129;
      -- O_RETURN_REDEEM_DTL := NULL;  Modify the code to initialize this parameter
      O_RTRN_CD := NULL;
      O_ERR_CD := NULL;
      O_ERR_MSG := NULL;
      PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ ( ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
    REGISTER_NBR_IN, TRANS_NBR_IN, O_RETURN_REDEEM_DTL, O_RTRN_CD, O_ERR_CD, O_ERR_MSG );
      FOR item IN O_RETURN_REDEEM_DTL
      LOOP
        DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || item.ZL_DIVN_NBR);
      END LOOP;
    END; And end up with an error:
    ORA-06550: line 25, column 15:
    PLS-00221: 'O_RETURN_REDEEM_DTL' is not a procedure or is undefined
    ORA-06550: line 25, column 3:
    PL/SQL: Statement ignoredMessage was edited by:
    user607908

    Aha, I knew I forgot something!
    I actually had it defined as a REF CURSOR in PSAPP.CY_SALESPOSTING package spec:
    TYPE REDEEM_DTL_TYPE IS REF CURSOR;since I wasn't sure what to make it.
    Cursor used in procedure:
    CURSOR REDEEM_DTL_READ_CUR (
      zl_divn_nbr_in IN NUMBER,
      greg_date_in IN DATE,
      zl_store_nbr_in IN NUMBER,
      register_nbr_in IN NUMBER,
      trans_nbr_in IN NUMBER)
    IS
    SELECT ZL_DIVN_NBR, GREG_DATE, ZL_STORE_NBR, REGISTER_NBR, TRANS_NBR, PAYMENT_TYP_NBR
    FROM REDEEM_DTL
    WHERE ZL_DIVN_NBR = zl_divn_nbr_in AND GREG_DATE = greg_date_in AND
       ZL_STORE_NBR = zl_store_nbr_in AND REGISTER_NBR = register_nbr_in AND
       TRANS_NBR = trans_nbr_in;Updated code:
    /* PROCEDURE - REDEEM_DTL_READ                          */
         PROCEDURE REDEEM_DTL_READ(
              ZL_DIVN_NBR_IN     IN     REDEEM_DTL.ZL_DIVN_NBR%TYPE,
              GREG_DATE_IN     IN     REDEEM_DTL.GREG_DATE%TYPE,
              ZL_STORE_NBR_IN     IN     REDEEM_DTL.ZL_STORE_NBR%TYPE,
              REGISTER_NBR_IN     IN     REDEEM_DTL.REGISTER_NBR%TYPE,
              TRANS_NBR_IN     IN     REDEEM_DTL.TRANS_NBR%TYPE,
              O_RETURN_REDEEM_DTL OUT REDEEM_DTL_TYPE,
              o_rtrn_cd       OUT NUMBER,
              o_err_cd        OUT NUMBER,
              o_err_msg       OUT VARCHAR2
         IS
         BEGIN
              o_rtrn_cd := 0;
              o_err_msg := ' ';
              o_err_cd := 0;
              OPEN REDEEM_DTL_READ_CUR(ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
                   REGISTER_NBR_IN, TRANS_NBR_IN);
              --OPEN O_RETURN_REDEEM_DTL FOR SELECT * FROM REDEEM_DTL;
              LOOP
                  FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
                   EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
                   DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || O_RETURN_REDEEM_DTL.ZL_DIVN_NBR);
                END LOOP;
               CLOSE REDEEM_DTL_READ_CUR;
    --           LOOP
    --                FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
    --                EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
    --           END LOOP;
    --           CLOSE REDEEM_DTL_READ_CUR;
         EXCEPTION
          WHEN OTHERS
          THEN
               o_rtrn_cd := 7;
                 o_err_msg := SUBSTR (SQLERRM, 1, 100);
                 o_err_cd  := SQLCODE;
         END REDEEM_DTL_READ;the updated anon block:
    DECLARE
      ZL_DIVN_NBR_IN NUMBER;
      GREG_DATE_IN DATE;
      ZL_STORE_NBR_IN NUMBER;
      REGISTER_NBR_IN NUMBER;
      TRANS_NBR_IN NUMBER;
      O_RETURN_REDEEM_DTL PSAPP.CY_SALESPOSTING.REDEEM_DTL_TYPE;
      O_RTRN_CD NUMBER;
      O_ERR_CD NUMBER;
      O_ERR_MSG VARCHAR2(200);
    BEGIN
      ZL_DIVN_NBR_IN := 71;
      GREG_DATE_IN := TO_DATE('07/21/2008', 'MM/DD/YYYY');
      ZL_STORE_NBR_IN := 39;
      REGISTER_NBR_IN := 1;
      TRANS_NBR_IN := 129;
      -- O_RETURN_REDEEM_DTL := NULL;  Modify the code to initialize this parameter
      O_RTRN_CD := NULL;
      O_ERR_CD := NULL;
      O_ERR_MSG := NULL;
      PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ ( ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
         REGISTER_NBR_IN, TRANS_NBR_IN, O_RETURN_REDEEM_DTL, O_RTRN_CD, O_ERR_CD, O_ERR_MSG );
      FOR item IN 1..O_RETURN_REDEEM_DTL.COUNT
      LOOP
        DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || O_RETURN_REDEEM_DTL(item).ZL_DIVN_NBR);
      END LOOP;
    END;and the new error:
    ORA-06550: line 25, column 38:
    PLS-00487: Invalid reference to variable 'O_RETURN_REDEEM_DTL'
    ORA-06550: line 25, column 3:
    PL/SQL: Statement ignoredAlso, it would be nice if the forums would put a box around code so that it would be easy to
    distinguish between what is supposed to be code and what should be regular text...
    Message was edited by:
    user607908

  • Setting "in" and "out" - why does it export the full timeline ?

    Hi folks.
    Well, I'm scratching my head.
    I go into Premiere, onto the timeline, and set an "in" point and an "out" point. I then get Premiere to render the video. It renders out the whole timeline, eventhough I told it to render only the "work area" which of course one would think would be that area I told Premiere I wanted, because of my "in" and "out" points.
    The manual is very vague, and I just don't get it. I don't want to do any razor cuts, I just want to get Premiere to render out the video inside my "in" and "out" points I've inserted.
    Any help would be appreciated,
    Dave.

    The work area bar is different than setting in and out points. It's the bar with the (I think) blue handles at the top of the timeline. Drag those handles to the points where you want rendering to start and stop, and hit Enter.

  • Setting In and Out points

    Is it me or is it a complete PAIN to set in and out points in 7? Used to be easy. It's almost impossible sometimes to grab the playback head without it selecting an i/o point. Once I finally do get the markers where I want 'em, the In point moves when I press play?
    What the ****?

    You can use the arrow keys (right left) to step through frames. You can use the letters i and o to set in and out points.
    Hold down the shift key (after setting a point) and you can use the arrow keys to create a selection.

  • Setting in-and-out points  -- is this possible?

    I set in-and-out points in the preview window by dragging the blue triangles.
    I would like to sample various parts of a clip, though there are only 2 triangles.
    1. Is there a way to take one segment of video and establish in-and-out points for maybe the first 30 seconds of video and than set another in point maybe 1 minute later with a out point 30 seconds after that. So ultimately the encoding will encode two non-sequential segments of video.
    Thanks.

    You can't do that, but you can achieve what you want by simply dragging in the clip multiple times into Compressor and for each clip, set your in and out point.

  • BPC: SOA and setting connection time outs in BPC

    Hi All,
    can any one explain SOA architecture of BCP and how it improves performance?
    My understanding of SOA arcitecture is it breaks down large application into small modules called services.
    Here what are the services it is refering to?
    And in SOA arcitecture, is the client connected to server only when it requests for a service and connection terminates after the service is provided?
    If that is the case, what is the need for setting connection time outs to improve BPC performance.
    Any Help is Greatly appreciated.
    kranthi kumar

    SOA = services oriented architecture
    is a method for systems development and integration where functionality is grouped around business processes and packaged as interoperable services. SOA also describes IT infrastructure which allows different applications to exchange data with one another as they participate in business processes. The aim is a loose coupling of services with operating systems, programming languages and other technologies which underlie applications.[1] SOA separates functions into distinct units, or services[2], which are made accessible over a network in order that they can be combined and reused in the production of business applications.[3] These services communicate with each other by passing data from one service to another, or by coordinating an activity between two or more services. SOA concepts are often seen as built upon, and evolving from older concepts of distributed computing[3][2] and modular programming.
    So SOA is not implemented for performances reason and it is more for integration.
    Regards
    Sorin Radulescu

  • New problem/bug when I set in and out points on a clip. Unwanted automatic zoom in on clip timeline.

    Playing clips to log and set in and out points for scenes I will use later.  Something changed with the new update and I think it is a bug.  When I hit the I and O keys to set in and out points on a clip before dragging to the sequence, it zooms in on the clip timeline.  I cannot see the full clip time line unless I zoom out which is a pain to do time and time again.  How do I get it back to the way it was before?  It did not used to zoom in and out, it just marked your in and out point as it played leaving the clip timeline unchanged.
    I am using windows 7 with Premiere Pro CC

    Hi,
    Thanks for your post. I think you are using Premiere pro CS6 as the Project option is included in the file menu and in the video there is an option of project available and visible. Please update your CS6 with the latest 6.0.5 update and the issue will be fixed. The link is provided below. Please update once issue is fixed.
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5631
    Regards,
    Vinay

  • Lyrics fail: Override Parent Setting is greyed out

    I'm trying to add lyrics. I have my Concert, Set and Patches ready. In the Edit screen I click my patch. Then I click layout and bring in a text box. When I go back into edit mode Override Parent Setting is greyed out. When I click on different patches I see that my text box is everywhere. Thoughts?

    Hi
    Screen Controls and objects created in Layout mode are global for the entire Concert.
    CCT

  • Guys ... I have a 2008 MacPro running the current Yosemite.  I also have installed the sound amp called "BOOM!"  I have the Sound set to Line Out which should have the computer boot up to BOOM! Instead, it boots up to the Internal speaker. What's up?

    Hi Folks ...
    I have a 2008 MacPro running the current Yosemite. I have installed the recommended upgraded video card, but the sound is as it was new. I also have installed the sound amp/graphic equalizer called "BOOM!"  I have the Sound set to Line Out which should have the computer boot up automatically to BOOM!  and thus to the external speakers.  Instead, it boots up to the Internal speaker.  According to the folks at "BOOM!", this is happening to others who have similar Macs.  They can't find any explanation within BOOM!, so I am turning to you all.  Any ideas?

    Hi Kappy ...
    Sorry, I guess I didn't state the problem very well.
    I don't want the computer to boot up to the internal speaker.  I want it to boot up to the external speakers.  However, even though System Preferences is set on Line Out, when the computer boots up or reboots, it erroneously goes to internal speaker.  So, every time I boot up, I have been going to System Preference/Sound and clicking on Line Out.  From that point on, everything is OK until the next boot up.  It is a small annoyance, but annoying all the less. The simple explanation seems to be that when the computer is shut down, it does not hold the setting for Line Out and resets itself to Internal Speaker.  How do I change that behavior and get it to go to Line Out whenever it boots up? 

  • How do i set up an "out of office" message on Mail?

    how do i set up an "out of office" message on Mail?

    There is a ay to do it in Mail, using rules, but that's not a very good idea. Homemade rules can cause things like infinite mail loops (where two accounts auto-reply to each others until one or both mailboxes fill up and cannot receive any more messages). See what your mail server offers in this regard. Auto-replies on the server are typically far more reliable and less error-prone.

  • How do I set up an Out of Office Reply while I am on vacation?

    How do I set up an Out of Office Reply to incoming emails while I am on vacation?

    Couple of links,
    Out of Office Auto-reply
    How to Set Up an Autoresponder in Mac OS X Mail

Maybe you are looking for