Recommended to refer to the calculation of the values for parameters of Linux (kernels, etc.) before installing Oracle

Hi all

Hope you are fine...

Please, I need to install Oracle... WEU it will be (DB Oracle 10 g - 11 g or E-Business suite 12.1 - 12: 2), how can I specify the parameters of Linux values especially grain before proceed with the installation?

Is there a reference that I can follow which help me to specify the correct values for parameters/kernels Linux?


Thanks in advance.


Kind regards

Mohammed

Mohammed... wrote:

Thank you, Hussein...

If I need to install 12.2 but "RAC ASM", is there another note for the purposes of operating systems?

Kind regards

Mohammed

Mohammed,

You must follow the same doc, just make sure that you install first - CRS refer to the Documentation online database Oracle 11 g Release 2 (11.2) for more details.

Thank you

Hussein

Tags: Oracle Applications

Similar Questions

  • Enter the value for the data files:

    Hi all
    I use 10.2.0.1.0
    I have a tablespace "hg" with two data files.
    whenever I use after an order to drop this tablespace I hv asked values for data files
    Welcome is:

    SQL > drop tablespace hg, including content and data files;

    SQL > drop tablespace hg, including content and data files;

    I have two data files to the tablespace named as hg.dbf, hg1.dbf

    now what I hv value to enter? or how to calculate the value.


    Thank you

    Honey says:
    Yes I know its 'AND' but when I using the '&' then oracle asked me of ' enter the values of the data files: "k".
    Please try first, then the calculation of the value.
    It can be a variable binding value.
    If you find the answer please suggest steps

    Simple words, the "DROP TABLESPACE" command does not support '&' character. & is a substitution of placeholder for SQL variable * more.

    Even if you provide the value for the "data files" prompt, the command does not work as it would lead to "drop tablespace including contents tsname *"details of your file *.

  • How to select the values for each check box in a group of records

    Hello

    I have a requirement in form 10g. In this form there are 10 records are display each record has a checkbox is there if I click on the check box save number one and number three and make some changes in the text field (field adjustment is the number data type) and then finally, I want to see the total a total amount called field.

    In this, my question is how to select specific to a group of records records? and finally these selected records are inserted in a table.
    Because I am not able to read these records at a time.
    Is there any table to define a record group to fetch each of them individually for example Rec [1] Rec [2]... like this if yes please suggest me the steps how to do this.

    Thanks in advance
    Prasanna

    Published by: user10315107 on December 17, 2008 23:44

    OK, so you want to shoe the total amount in the form itself (I guess that somewhere under the dashboard lines?).

    You can do this easily using formulat elements:

    1 create a new item in your block where the field amount is places, set "section of the database" on the 'No', 'calculation mode' to the 'formula' and the 'formula' himself to something like:

    CASE WHEN :BLOCK.CHECKBOXITEM=CHECKVALUE THEN :BLOCK.AMOUNT+:BLOCK.ADJUSTMENT ELSE 0 END;
    

    This formula returns 0 if the checkboxitem is not checked, otherwise the sum of amount and adjustment (of course you can adjust the names of elements and the value for 'Checked')
    2. place the element in the layout, if you wish.
    3. set the property "Query all Records" to "true" for your block elements, this is necessary for the calculation to work
    3 create a control block to keep summary article in a, "Single Document" set to 'True '.
    4. place a new element in this control block, set 'Calcuation mode' to 'Summary', 'Summary block' to your block elements, 'Summary point' in newly created formula section in the block elements
    and function of synthesis for the "sum".
    5. place the element in the layout

    She's.

  • Try to install the update for win 7 error code windows service install could not be accessed

    I can't indtall a program

    Try to install the update for win 7 error code windows service install could not be accessed.  Insatller Windows is not installed correctly.

    Try to make sure that the Windows Installer service is running, or force start it.

    1 open run and type services.msc, and then press ENTER. You can also go
    to the Panel of control-> Administrator Tools-> Services.

    2. in the installation list services, locate Windows Installer.

    3. check that the status is started. If the condition column is empty,
    Right-click Windows Installer, and then select start.

    4. If you get the error trying to force starts the Windows Installer service,
    try to change the Startup Type to automatic (default is Manual), then
    Restart the computer.

    You can also give the following a try, make sure that you back up your Windows registry database before you try:

    7 How do I backup the registry in Windows

    http://blog.thinksharp.nl/2009/03/08/WindowsInstallerHELLOnVistaX64PlatformsAlsoFixesITunesInstallProblem.aspx Change of the

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIServer\WOW64 key from 1 to 0 got my install iTunes work.

  • Getting the values for the attributes of the user in IOM

    Hello

    I have it here is the snippet of code that retrieves the values for all the attributes user OIM 11g. But this code returns the exception of null pointer for attributes with null values. I also put if condition to check for null pointer exception, but always the null value is thrown in the newspapers whenever this code snippet is executed in the event handler.

    Any thoughts?

    private Map getUser(String userKey) {
      Map users = new HashMap();
      User user = null;
      UserManager userManager = (UserManager) Platform
      .getService(UserManager.class);
      try {
      user = userManager.getDetails(userKey, null, false);
      logger.log(ODLLevel.FINE, "User: {0}",new Object[] { user });
    
      } catch (NoSuchUserException e) {
      logger.log(ODLLevel.ERROR, e.getMessage(), e);
      } catch (UserLookupException e) {
      logger.log(ODLLevel.ERROR, e.getMessage(), e);
      }
      Set AttrNames = user.getAttributeNames();
      logger.log(ODLLevel.FINE, "User Attributes: {0}",new Object[] { AttrNames });
    
      Iterator itr = AttrNames.iterator();
      while (itr.hasNext()) {
      try {
      String AttrNAme = itr.next().toString();
      logger.log(ODLLevel.FINE,"Current Attribute is : {0}::",new Object[]{AttrNAme});
      if( user.getAttribute(AttrNAme).toString()!=null && user.getAttribute(AttrNAme).toString().length()!=0){
      String AttrValue = user.getAttribute(AttrNAme).toString();
      logger.log(ODLLevel.FINE,"Attribute: {0} and Value: {1}",new Object[]{AttrNAme,AttrValue});
      users.put(AttrNAme, AttrValue);
      }
      } catch (Exception e) {
      logger.log(ODLLevel.ERROR, e.getMessage(), e);
      }
      }
      return users;
      }
    

    TIA

    A call to ToString on null will give you the exception. You should check that the value is not null before calling toString() on it.

    In addition, you must perform an additional control on the user object that you receive after your try catch block. If the user object is null, then there is no need to run code on the user object.

  • Is there a utility to validate the windows updates before installing Oracle EMP?

    Gurus,

    Do we not have any utility provided by Oracle that would validate if all specific to Microsoft Windows updates / patches for Microsoft SQL Server database etc are installed on the server before you start the installation of EMP?

    There are third party tools that can check if windows updates and the SQL database patches have been applied, but I am curious to know if there is a utility provided by Oracle to do?

    The only utility of Oracle will be the GDR, if you want to find out more have a look at the following support doc - 'Enterprise Performance Management 11.1.2 Client GDR Preinstall Health Check (HCVE) [video] (Doc ID 1435695.1)'

    See you soon

    John

  • Does anyone know the phone for Customer Service? Im trying to install an app and will not let me

    Does anyone know the phone for Customer Service? Im trying to install an app and will not let me

    There is no support for this phone.

    you could get help if you could explain or you can try to contact support Adobe by clicking here and, when available, click on "still need help," https://helpx.adobe.com/contact.html

  • After affects that can create a visualizer that goes with the music for Winamp, Virtualdj, Dj Sofware ETC.

    Can you help me after affects may create a visualizer that goes with the music for Winamp, Virtualdj, Dj Sofware ETC.


    or y at - it a plugin to convert?

    N °

    Mylenium

  • I have a Macbook Pro. I upgraded 10.9.4 one downloaded the demo for creative cloud. It downloaded and installed, but does not open. I stopped and tried to reinstall. The same problem.

    I have a Macbook Pro. I upgraded 10.9.4 one downloaded the demo for creative cloud. It downloaded and installed, but does not open. I stopped and tried to reinstall. The same problem.

    Thank you.

    I came across the solution. In addition to download creative cloud, I needed to return to the site and download the trials for the programs I want to use - Photoshop and Lightroom. Once I did, I was in business. Save bad if this was done in light on the download site.

    Thank you

  • What is the recommended method to shorten the strings for a given width

    I know how to detect the width required for a string using the font and size.

    I also know that the available width for the string

    If I detect that the width of the string is > available width what is better (or recommended) allows to shorten the chain?

    ex: 'It is my example text' is too long

    and 'it's maybe my examp... "fits exactly to the width that can be drawn from graphics

    is there an API for this, or should I reduce the length and try until his short enough?

    THX 4 info

    There is an API for just that - no need to mess with shortening of the chain yourself to all:

    Graphics.drawText(text, x, y, DrawStyle.ELLIPSIS, availableWidth)
    
  • The driver for "System essential updates" is necessary to install?

    Product name: HP Pavilion dv6 Notebook PC

    Product number: A6X94UA #ABA

    I recently did a clean install of Windows 7 64 bit Home Premium edition and I was wondering if it would be advantagious to install the driver for "System essential updates" (sp57063)? I have already installed Support Assistant, which helped a lot with auto find my drivers required updated and logically it does not seem that I would need also the other specified driver. Can anyone offer their expertise with this question? Thanks in advance.

    Hello again kev_p77,

    I recommend that you install all the drivers, drivers becouse are written to be useful.

    This is the information from the print driver "missing."

    Provides the following patches from the Microsoft Knowledge Base: - KB2397190 - profile "Connected" display brightness setting is changed once you restart a Windows 7 laptop which is running on battery power. -KB2519949 - you can not install Windows XP Mode on a Windows 7 computer that has a multicore AMD Bulldozer processor installed. -KB2615592 - cannot connect to a WWAN after you resume a computer Windows 7 from his sleep. -KB2621491 - USB hub stops working in Windows 7, if you click the mouse while the computer is entering sleep.

    So I recommend you to install this driver.

    http://h10025.www1.HP.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-105144-1&cc=us&DLC=en&LC=en&OS=4063&product=5210868&sw_lang=

    Drunks.

  • The value for the attribute Transient

    Hi Expert,

    I use JDeveloper 11.1.1.6.

    I want to put the value of pageflowscope value as for example #{pageFlowScope.userInfoBean.orgid} for a Transient attribute

    so I added a transitional attribute to the object View (VO), but in the value of the expression I put #{pageFlowScope.userInfoBean.orgid}

    This expression, it cannot be used.

    How can I do to set the value to the Transient attribute?

    Please advice me, really appreciate your help

    Thank you

    As someone has already said, this is not recommended (access to bean managed layer model), BUT try to put

    userInfoBean.orgid

    pageFlowScope first and then access this value as I told you

  • How can I get the drivers for my aspire 3100 after that I installed windows 7

    I have a aspire 3100 that came with Vista, I installed Windows 7 and am wondering where I can get the drivers for my system updated. Acer does not list them.

    You must perform a search by yourself great web, many are available on the support page equipment manufacturers.

  • Code 28: The driver for this device (\Device\NTPNP_PCI0017) are not installed.

    Original title: \Device\NTPNP_PCI0017

    What is the way:

    The drivers for this device are not installed. (Code 28)

    To reinstall the drivers for this device, click on reinstall.

    1. Name of the physical device object is: \Device\NTPNP_PCI0017
    2. Description of the device: SM Bus controller

    Thank you.

    Hello

    1. When you receive this error message?

    2 have you tried reinstalling the drivers?

    Error Code 28 is one of several error codes in Device Manager.

    Details such as Code 28 Device Manager error codes are available in the device status area in the properties for the device:

    The status of each hardware device recognized by Windows is available at any time in the Device Manager. This report contains the current state of such material as seen by Windows.  Check the status of the device should be the first line of conduct, if you suspect that a particular device that is causing a problem or if any device in the Device Manager is marked with a yellow exclamation point.

    Get help with Device Manager errors

    http://Windows.Microsoft.com/en-us/Windows-Vista/get-help-with-Device-Manager-errors

    Thank you

  • The value for an item hidden in a tabular form in detail.

    I use Apex 5.0 with database 12 c.

    I created a detailed form maser, in detail, that I need a value for the hidden element set.

    the code used is

    FOR I IN 1..APEX_APPLICATION.G_F02.COUNT LOOP 
    APEX_APPLICATION.G_F02(I) := '111'; 
    END LOOP;
    

    but it is only useful if the item is displayed on the form.

    Reference:--

    https://docs.Oracle.com/CD/E14373_01/apirefs.32/e13369/apex_item.htm#AEAPI196

    You can use the apex_item.hidden function

    for creating hidden point

    APEX_ITEM. HIDDEN)

    p_idx in NUMBERS

    p_value IN VARCHAR2 DEFAULT

    p_attributes IN VARCHAR2 DEFAULT NULL,

    p_item_id IN VARCHAR2 DEFAULT NULL,

    p_item_label IN VARCHAR2 DEFAULT NULL

    )

    Select

    apex_item. Hidden (p_idx-online 1, p_value-online 111) |

    apex_item.date_popup2 (p_idx-online 2, p_value => null, p_size,-online 20, p_maxLength => 2000) as "datepicker".

    Double;

Maybe you are looking for