SAP ECC6.0 installation with Oracle RAC

Hi Expert,
Current we working on SAP ECC6.0 installation with Oracle 10G RAC on AIX 5.3. The RAC are running on two nodes (servers). And we are using GPFS filesystem (not running on HACMP).
Overall we had completed the Oracle RAC installation (CRS+RDBMS) and tested the oracle failover and it work find. Now we want to start with the SAP installation (with HA). In the SAP installation documentation, it did request to create a virtual hostname on the node and execute the sapinst scripts with below command line.
#./sapinst SAPINST_USE_HOSTNAME=ascs00
But if we are running on Oracle RAC + GPFS do we need to specify the virtual hostname? If not, which hostname i should use to install the HA for SAP?  Please advice.
Regards.

And then I'd continue with the documentation at:
SAP on Oracle => SAP on Oracle Real Application Clusters (RAC) 
There you can find several installation guides for windows/UNIX/Linux

Similar Messages

  • Problem in SAP Server installation with Oracle DB

    Hi,
    We are working in SAP Server installation with Oracle DB. After some steps in our Process it is asking for a DVD called RDBMS DVD CLIENT ORACLE. We are trying  to download in Service market place. But we could not  get the Correct DVD for the installation. Please help in this issue. Where do we get the DVD to continue our SAP Server installation.
    We are struck with our SAP Server installation. Please consider this issue as very urgent.
    thanks in advance.
    Regards,
    Mohankumar.G

    Hello Mohan,
    Please specify which installation your are doing otherwise it is difficult to provide you
    the correct path.
    For eg if you are doing NW04's installation then path will be
    downloads->entry by application group->Installations and Upgrades->SAP NetWeaver-> SAP NETWEAVER-> SAP NETWEAVER 2004S->according to OS/DB (there is oracle client cd)select the cd.
    hope it helps..
    Regards,
    Jafer

  • SAP BO Installation with Oracle Database

    Hello all,
    My client uses SAP R/3 with Oracle database. Now we have to install Business Objects on another machine.
    I've read the documentation on Installing Procedures but there are some questions still not clarified.
    1. Do I have to install Oracle in the new machine?
    2. If not, can I connect BOBJ to the database of the SAP R/3 Server?
    3. If I want to have three systems (Like in R/3, Productive, Tests and Development) do I have to install BOBJ in different machines?
    Thanks in advance,
    Regards

    1. you dont have to insall Oracle database at the BO machine side, you just need any database to hold the BO repository.
    2. you cant connect directly using BO, only Crystal reports can connect directly to R3 database, you need to have a BW in between.
    extract your data into the BW, and let BO connect to BW using the BO integration kit for SAP solutions.
    3. no you dont have to have 3 different machines, using one BO machine you connect to them all, but you may need build a  BO environment, (Development, Production servers)
    good luck

  • SAP fresh installation with Oracle 11.2

    Dear all,
    Do you know if it's already possible to install a new SAP system with Oracle 11.2.
    I'm trying to install Solution Manager 7.0 ehp1 with Oracle 11.2.
    The problem is that SAPINST does not give me the possibility to choose oracle version 11.2. Only 10.2 is possible. (I patched SAPINST to the last version)
    If I select 10.2 SAPINST gives an error "The DB Home folder I:\oracle\PSM\112 has not the correct DB Server version 102. Select a different DB Home folder or install the correct database server software."
    Could anyone help me?
    Thanks in advance.
    Best Regards,
    Olivier

    Hello,
    New installations of systems running with Oracle 11.2 are planned to be certified by early Q4 2010.
    For key information on the status of Oracle 11.2 database, read SAP Notes 1398634 and 1434131.
    Thanks & regards,
    Sagar

  • SAP first installation with Oracle 11g

    Hi,
    do you know for  SAP first install is now supported Oracle 11.2.0.2 or only installing first 10.2.0.5 and upgrade to 11.2.0.2 ?
    Thank you!

    Hi, direct installation of 11.2 is possible for SAP products based on SAP NetWeaver 04 (Web AS 6.40) / SAP NetWeaver 7.00 & SAP NetWeaver 7.01 (Check also here: SAP on Oracle)

  • SAP EHP6 Installation Steps with Oracle RAC

    Dear Experts,
    i am looking for step by step guide for SAP ehp6 installation with Oracle RAC. if anyone can help please guide me with the steps or share if any document available
    Thanks

    Hi Wali,
    You can follow below documentation to perform your installation on Oracle RAC.
    http://scn.sap.com/docs/DOC-8835
    This document is very useful for planning the installation and executing the same
    Some other useful documents
    Installation of SAP on RAC with Oracle ASM
    SAP note which needs to be referred for installation
    Note 527843 - Oracle RAC support in the SAP environment
    Hope this helps.
    Regards,
    Deepak Kori

  • Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0

    Hello,
    Maybe you can help me (new on RMAN backup) in doing this.
    I have configured a single Oracle 10g database to have backup with RMAN with following steps:
    1. $ mkdir $ORACLE_BASE/rman_scripts
    2. $ mkdir $ORACLE_BASE/logs
    3. $ mkdir $ORACLE_BASE/tracking
    4. $ mkdir $ORACLE_BASE/c_backup
    5. $ sqlplus sys/<password> as sysdba
    6. SQL> alter system set db_recovery_file_dest_size = 50G scope=both;
    7. SQL> alter system set db_recovery_file_dest='${ ORACLE_BASE}/flash_recovery_ area' scope=both;
    8. SQL> alter system set log_archive_dest_10='location= use_db_recovery_file_dest';
    9. SQL> shutdown immediate
    10. SQL> startup nomount
    11. SQL> alter database archivelog;
    12. SQL> alter database open;
    13. SQL> alter database enable block change tracking using file '${ORACLE_BASE}/tracking/rman_ change_track.f';
    14. $ rman target /
    15. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK
    TO '/var/opt/oracle/flash_ recovery_area/ORCL/c_backup/% F';
    16. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    17. RMAN> CONFIGURE BACKUP OPTIMIZATION ON;
    18. RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    19. RMAN> exit
    I need to configure incremental backup with RMAN on a two node Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0 installation.
    We also use ASM to store database files, and have Oracle software installed on separate file systems (two Oracle roots for Node1 and Node2).
    I have following questions:
    1) where to put Flash Recovery Area (FRA)?
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    3) Is it possible/recommended to run RMAN from Node1 only?
    Below is the script used to run RMAN on the normal Oracle database (without RAC) which I need to change :
    =============================================================================================
    2.0 Oracle backup script: /opt/app/oracle/rman_scripts/backup.sh
    Use this for daily backups, possiblly as a cron job.
    Once a week run this: /opt/app/oracle/rman_scripts/backup.sh FULL
    All other days of the week: /opt/app/oracle/rman_scripts/backup.sh INCREMENTAL
    Note: You may have to change ORACLE_SID, ORACLE_BASE below to match your database.
    =============================================================================================
    #!/usr/bin/ksh
    ORACLE_SID=orcl
    ORACLE_BASE=/opt/app/oracle
    ORACLE_HOME=${ORACLE_BASE}/product/10.2.0/db_1
    PATH=${ORACLE_HOME}/bin:/usr/bin
    LOGDIR=${ORACLE_BASE}/logs
    LOGFILE=${LOGDIR}/rman.log
    if [[ $# < 1 ]]
    then
    echo "usage: backup.sh FULL|INCREMENTAL"
    exit;
    fi
    BACKUPTYPE=${1}
    full='FULL'
    incremental='INCREMENTAL'
    if [[ $BACKUPTYPE == $full ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi
    if [[ $BACKUPTYPE == $incremental ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    backup incremental level 1 database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi

    Hi [email protected],
    Q1) where to put Flash Recovery Area (FRA)?
    A1) With RAC: on the shared storage
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    If you want your backups to be available for both nodes you have to use shared storage or tape using an mml library.
    So if you want to use the FRA for rman backups and the database is on ASM just make ASM the standard for the FRA as well.
    Q2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    A2) Than you cannot recover in case Node1 is down. Best would be to send your storage admin to a training course so he can manage the clustered raw devices needed for ASM.
    Q3) Is it possible/recommended to run RMAN from Node1 only?
    A3) No see A2.
    Regards,
    Tycho

  • Installaing ECC6.0 with oracle as DB on win 2k3 Getting any error

    Hi All
    I am unable to find out the error while i am installaing ECC6.0 with oracle as DB on win 2k3 please find the error report
    ERROR 2008-11-06 08:57:24
    FCO-00011  The step unpack with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_Unpack|ind|ind|ind|ind|8|0|unpack was executed with status ERROR .
    ERROR 2008-11-06 08:57:24
    MUT-03011  Execution of the command "C:\WINDOWS\TEMP\sapinst_exe.3896.1225941925\SAPCAR.exe -x -v -g -i -R C:/usr/sap/PRD/SYS/exe/uc/NTI386 -f C:/oraclnt/OCL_WINDOWS_I386/OCL10232.SAR," finished with return code 29. Output: SAPCAR: no archives specified for extracting (error 29). There are no more files.
    ERROR 2008-11-06 08:57:24
    MUT-03011  Execution of the command "C:\WINDOWS\TEMP\sapinst_exe.3896.1225941925\SAPCAR.exe -x -v -g -i -R C:/usr/sap/PRD/SYS/exe/uc/NTI386 -f C:/oraclnt/OCL_WINDOWS_I386/OCL10232.SAR," finished with return code 29. Output: SAPCAR: no archives specified for extracting (error 29). There are no more files.
    Please suggets
    Thanks in advance
    Thanks you
    Sudhakar A

    Hi,
    Please informe us are you installing oracle client or oracle enterprises.
    Anil

  • SAP instance communication with Oracle processes

    Can anybody please explain me how SAP instance communicate with Oracle processes ?
    Also some details on OPS$, SID.ADM etc accounts - how they are created and communication between them.
    Please provide some details to understand the basics. Appreciate if hyperlinks are given as I already a no. of links but able get the exact picutre on this.

    Like to know some details on these OPS$ mechnism.
    Found the following details in dev_w0 :-
    kernel runs with dp version 232(ext=109) (@(#) DPLIB-INT-VERSION-232)
    M  length of sys_adm_ext is 364 bytes
    M  ***LOG Q01=> ThInit, WPStart (Workproc 0 122773782) [thxxhead.c   1281]
    M  ThInit: running on host sap<SID>
    M  calling db_connect ...
    C  Got LIBPATH=/usr/lib:/lib:/usr/sap/<SID>/SYS/exe/run:/oracle/client/10x_64/instantclient from environment
    C  Oracle Client Version: '10.2.0.2.0'
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@<SID> on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1  112859e40  112865178  112864a28
    C  Attaching to DB Server <SID> (con_hdl=0,svchp=112862858,srvhp=1128674d8)
    C  Starting user session (con_hdl=0,svchp=112862858,srvhp=1128674d8,usrhp=112861c60)
    C  Now '/@<SID>' is connected (con_hdl 0, nls_hdl 0).
    C  Got SAPSR3's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=112862858,usrhp=112861c60)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSR3/<pwd>@<SID> on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1  112859e40  112865178  112864a28
    C  Starting user session (con_hdl=0,svchp=112862858,srvhp=1128674d8,usrhp=112861c60)
    C  Now 'SAPSR3/<pwd>@<SID>' is connected (con_hdl 0, nls_hdl 0).
    C  Database NLS settings: AMERICAN_AMERICA.WE8DEC
    C  DB instance <SID> is running on sap<SID> with ORACLE version 10.2.0.4.0 since JAN 28, 2010, 00:55:44
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20100128 012909 sap<SID>
    M  db_connect o.k.
    Basically how authentication between SAP and Oracle takes place. What are the a/c that comes with SAP inst and what relevant a/c for these communication comes by default with Oracle Db installation.

  • Sun Fire V490 x 2 servers with Oracle RAC facing Split brain problem

    Hi all,
    I have Sun Fire V490 x 2 servers with Oracle RAC and they faced a Split brain problem. One of the node's database instance has gone down, The DBA claims it is due to network problem, but as such the networks are OK. We use the on board CE1 interface for Cluster interconnect and CE0 as the public interface.
    Did anybody face this kind of a problem? Could this be a hardware/OS patch problem?
    I had kept a continuous ping for 24 hours after this happened last time and the output shows no packet loss
    Many thanks in advance.
    Ushas Symon

    In order to diagnose this properly, you'll need to provide too much detail and far too many log files for a generic discussion forum to handle.
    Use your service contract and open a support case.
    Because a cluster environment is involved you'll likely end up talking to the cluster support staff.
    They can analyze hardware and software errors as well as review whether you configured the systems in a supportable fashion.
    Be prepared to make a direct connection to each system and gather data using such as by using the Explorer tool. The technical support staff will tell you what they will actually need.

  • Is OCFS2 certified with oracle RAC 11gR2 ?

    Hi,
    Is OCFS2 certified with oracle RAC 11gR2 ?
    Thanks..

    ocfs2 is certified for oracle 11gr2 but oracle recommends using asm. please see this for more information http://download.oracle.com/docs/cd/E11882_01/install.112/e10812/storage.htm#CWLIN262

  • Suncluster with oracle RAC customer

    Hi,
    Are we have any customer reference for suncluster with Oracle RAC.
    Suggestion and recommendation are welcome.
    Thanks in advance,
    karthikeyan.N

    karthikeyan.N
    There are many hundreds customers running this combination, totalling many thousands of nodes. Not all are (or want to be) public references. Some are listed here though:
    http://www.sun.com/third-party/global/oracle/success/index.jsp#s10
    Tim
    ---

  • Oracle 10g R2 installation with ASM+RAC

    Gurus,
    Need some suggestuon on Oracle 10g R2 installation with ASM and RAC option.
    We have found many documents on the Oracle, HP, HP-Oracle CTC and third party web sites, but nothing that is specific to this particular combination of separate
    ORACLE_HOMEs, ASM and 10g RAC CRS. It is unclear for me from the documentation how this combination of ASM and 10.2g RAC may best be installed.
    The high level steps i got after reading lot of docs as follows - but i am not sure whether these are correct or not. if they are correct, can any one share their experience/notes please?
    1) Install CRS
    2) Install RDBMS for ASM HOME - create separater oracle home for ASM instance using OUI
    3) Install RDBMS for RAC Database Home - create separater oracle home for RAC database using OUI
    4) Create ASM database using DBCA -
    5) Use dbca to create database.

    Oracle provides 'paint by numbers' tutorials called 'Oracle By Example'. (Go to OTN, check under the Training tab)
    They have one for a Windows based ASM/RAC that you might want to review. Not your specific environment, but the steps will be dag-nabbed close.
    I recommend walking the path (http://otn.oracle.com >> training:OBE >> Database 10g Release 1:VMWare:Installation
    http://www.oracle.com/technology/obe/obe10gdb_vmware/install/racinstallwin2k/racinstallwin2k.htm

  • Does /sapmnt need in cluster file system(SAP ECC 6.0 with oracle RAC)

    We are going to be installing SAP with Oracle 10.2.0.4 RAC on Linux SuSE 10 and OCFS2. The Oracle RAC documentation states:
    You must store the following components in the cluster file system when you use RAC
    in the SAP environment:
    - Oracle Clusterware (CRS) Home
    - Oracle RDBMS Home
    - SAP Home (also /sapmnt)
    - Voting Disks
    - OCR
    - Database
    What I want to ask is if I really need put SAP Home(also /sapmnt) on cluster file system? I will build a two nodes oracel 10g RAC and I also have another two nodes to install SAP CI and DI. My orginial think is sapmnt is a NFS share, and mount to all four nodes(RAC node and CI/DI), and all oracle stuff was on OCFS2(only two rac nodes are OCFS), anybody can tell me if SAP Home(also /sapmnt) can be NFS mount not OCFS2, thanks.
    Best regards,
    Peter

    Hi Peter,
    I don't think you need to keep /sapmnt in  ocfs2 . Reason any file system  need  to be in cluster is,in RAC environment, data stored in the cache of one Oracle instance to be accessed by any other instance by transferring it across the private network  and preserves data integrity and cache coherency by transmitting locking and other synchronization information across cluster nodes.
    AS this applies to redo files, datafiles and control files only ,  you should be fine with nfs mount of /sapmnt sharing across and not having ocfs2.
    -SV

  • Question about SAP installation with Oracle 10g

    I have successfully installed Oracle 10g on Windows server 2008 R2 64bit. I can connect to the database using mysql or through command prompt and run SQL commands.
    I started installing the SAP EHP1 for SAP NetWeaver 7.0 ("51038620_13      BS 7 SR1 Installation Master Windows Server on x64 64bit") The installation goes very smooth. I choose the SAPSID and the DBSID sid, but then it gives an error stating to install oracle and continue or stop the installation & install Oracle. I have tried on continuing the installation since Oracle is already installed but I get the same message again and again.
    Does it have to do with ORACLE 10g Sid. My Oracle SID is set to "ORCL" should it be the same as DBSID (during SAP Installation). Or the Oracle needs to be installed after SAP installation gets to the point for Oracle Installation. Please assist what needs to be changed. I can reinstall Oracle if needed. Any tips or comments would be nice.

    > Does it have to do with ORACLE 10g Sid. My Oracle SID is set to "ORCL" should it be the same as DBSID (during SAP Installation). Or the Oracle needs to be installed after SAP installation gets to the point for Oracle Installation.
    You can't "change". You installed the Oracle software using "setup.exe" - which is wrong. You also created an example database - which is also not correct.
    The Oracle software is installed, according to the installation guide, as
    - start "sapserver.cmd" on the Oracle DVD (the SAP media)
    - install the software according to the installation guide
    - install the latest patchset
    - install the latest PSU patch
    --> and then start sapinst.
    Markus

Maybe you are looking for

  • Pop-up message on iPhoto start-up

    I get the same pop-up message twice every time I start iPhoto. It says (in Dutch): The iPhoto-library contains 4 pictures which are not imported. Would you like to import them now? If I choose [YES] or [NO], I get the same question on the next startu

  • Subscription to business event does not fire

    I am working in the R12 PIM product . I setup a subscription rule function for the event oracle.apps.ego.item.postItemCreate . I just added one line in my function to insert a value in a dummy table. But nothing gets inserted. Is there any table/view

  • Disabling Local machine trackpad in RDP session

    Hello! I'm having an issue with users in my network.  Haha! I've got some users who prefer an external mouse to their laptop's trackpad, which I have no problem with.  However, many of these users have issues with typing while not touching the trackp

  • Log data

    When a user that doesn't exist for OLAP Server is trying to login, the log writes that the user tried to login and failed because it didn't exist.But when an existing user tries to login and writes incorrectly the password, OLAP Server log only says

  • "There is a problem with this windows installer package A program required for this install to complete could not be run contact your personnel or package vendor".

    I had itunes set up and working since i have had my iPhone and iPad. One day it asked to be updated, so i did. After it updated it stopped working because whenever i tried to open it it would say "this shortcut has either been deleted or moved would