RAC 10g Training Document

Hi All.. I need the training document of RAC 10g ..If any one have the copy kindly email me ... [email protected].
thanks
Aziz

Abdul Aziz wrote:
Hi All.. I need the training document of RAC 10g ..If any one have the copy kindly email me ... [email protected].
thanks
AzizWhat do you mean with training document? Is it Oracle's "Oracle University Student Guide"? Oracle prohibits to share it (power point slide and pdf version of book)
If you want "Step by Step explanation" of how to configure Oracle RAC, then there're dozen of documents written about it on the web
Some of them is:
http://www.oracle-base.com/articles/10g/OracleDB10gR2RACInstallationOnWindows2003UsingVMware.php
http://www.dba-oracle.com/t_install_rac_windows_pc.htm
http://www.puschitz.com/
Kamran Agayev A. (10g OCP)
http://kamranagayev.wordpress.com
[Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

Similar Messages

  • RAC 10g on RHEL5.5

    Hi all,
    I have installed Oracle RAC 10g R2 on RHEL 5.5. I followed this document.
    http://oracleinstance.blogspot.com/2010/03/oracle-10g-installation-in-linux-5.html
    I followed the steps in the document and the installation was successful. I had also created a service called CBE for testing Application Failover (TAF). Finally while i was performing some cluster verifications, the receive the following.
    rac1> ./crs_stat -t
    Name Type Target State Host
    ora....SM1.asm application ONLINE ONLINE ora1
    ora....A1.lsnr application ONLINE ONLINE ora1
    ora.ora1.gsd   application    ONLINE    UNKNOWN   ora1
    ora.ora1.ons   application    ONLINE    UNKNOWN   ora1
    ora.ora1.vip application ONLINE ONLINE ora1
    ora....SM2.asm application ONLINE ONLINE ora2
    ora....A2.lsnr application ONLINE ONLINE ora2
    ora.ora2.gsd   application    ONLINE    UNKNOWN   ora2
    ora.ora2.ons application ONLINE ONLINE ora2
    ora.ora2.vip application ONLINE ONLINE ora2
    ora.....CBE.cs application ONLINE ONLINE ora1
    ora....db1.srv application ONLINE ONLINE ora1
    ora.oradb.db application ONLINE ONLINE ora1
    ora....b1.inst application ONLINE ONLINE ora1
    ora....b2.inst application ONLINE ONLINE ora2
    Some of the services are not up and running. Can someone help me in this.
    Thanks in Advance :)
    Edited by: user13405005 on Aug 29, 2011 11:12 PM
    Edited by: user13405005 on Aug 29, 2011 11:40 PM

    Hi,
    don't worry about GSD. GSD is only used if you also run 9i databases in the cluster. Even though it should state as OFFLINE (not as unknown), I would not care about that.
    However ONS should not be in the status UNKNOWN.
    Can you do the following:
    srvctl start nodeapps -n
    To restart the ONS and see if it stays.
    Also post the output on onsctl debug
    (All from CRS Home).
    Regards
    Sebastian

  • Is there any doucment to install RAC 10G R2 with vmware shared storage?

    Hello Guys,
    Is there any documentation or how to available to install Oracle RAC 10G R2 on windows 2000 platform with 2 nodes and using vmware software for shared disk purpose.
    Please let me know the link. I will be really greatful to you. There is a document available for windows 2003 but couldnt find any for windows 2000.
    Regards,
    Imran Baig

    Hello Guys,
    I was reading this article on link http://www.dizwell.com/prod/node/25 it says the following
    "If you had a physical machine with two network cards installed and a second hard disk with absolutely nothing else on it, you could achieve a RAC using a physical machine"
    I am in procesof installing 2 nodes RAC and have configure network requirements on each node. I am struck with shared disk storage... can i acheive a shared diak storage by adding an other hardrive to one of the nodes? Please help...
    Regards,
    Imran

  • 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

  • Compatibility with Oracle RAC 10g and E-business 11i ?

    Hi netpros,
    I am currently helping the sales guys with a tender. The customer requires the solution to be compatible for delivering Oracle RAC 10g and e-business 11i. we are proposing a combination of Cat6509E for the core with Infiniband server switches. Are these devices OK for use with Oracle. I have not much experience with Data centers and so any help is much appreciated.

    Hi,
    It just so happens Cisco have a paper on exactly this subject (Oracle and e-business 11i) here:
    http://www.cisco.com/application/pdf/en/us/guest/netsol/ns50/c649/ccmigration_09186a00807688ce.pdf
    The design is somewhat OTT as it includes everything which Cisco thinks may be even vaguely useful, including ACE and FWSM modules. However, it's very useful as a comparison document and does include some good design tips, and the references at the end are also worth following up.
    I wouldn't want to get into the whole Infiniband vs Fiber Channel argument (the doc uses MDS switches) but both work just fine in the DC environment.
    HTH
    Andrew.

  • OCE 10g - RAC 10g Certification

    Hello all;
    I have passed on all courses for OCP 11g certification (1z0-051, 1z0-052 and 1z0-053).
    I just scheduled my ADM 11g WORKSHOP II to november, 21th, in order to submit the course form, and get my OCP certification.
    I have passed today on RAC 10g exam (1z0-048), since I know RAC 10g from long time ago.
    My question is:
    My RAC 10g certification Will be valid after I submit my OCP 11g course? I look at education.oracle.com and I notice that 11g OCP will be accepted for
    RAC 10g certification (http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=186)
    Is that correct?
    P.S: I know I`m not following the common path, but I know RAC 10g well, and I`m getting certified on products that I know well first.
    tks

    Sambora wrote:
    Hello all;
    I have passed on all courses for OCP 11g certification (1z0-051, 1z0-052 and 1z0-053).
    I just scheduled my ADM 11g WORKSHOP II to november, 21th, in order to submit the course form, and get my OCP certification.
    I have passed today on RAC 10g exam (1z0-048), since I know RAC 10g from long time ago.
    My question is:
    My RAC 10g certification Will be valid after I submit my OCP 11g course? I look at education.oracle.com and I notice that 11g OCP will be accepted for
    RAC 10g certification (http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=186)
    Is that correct?
    P.S: I know I`m not following the common path, but I know RAC 10g well, and I`m getting certified on products that I know well first.
    tksWhen you submit and get verified a valid training course for 11g DBA OCP then that fulfills the 11g DBA OCP requirements so you should be awarded 11g DBA OCP and then that means you have satisified the requirements for RAC 10g OCE (10/11g DBA OCP plus 1z0-048 pass so you should be awarded that also). It all happens automatically after your 11g DBA training is successfully validated.

  • RAC 10g

    Dear All,
    I am trying to find out any document regarding Step-By-Step Installation of RAC 10g with OCFS on Windows.
    I appreciate if anyone can help on this.
    Best regards,
    Wessam

    10g RAC installation guide for Windows is:
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b14207/toc.htm
    And David is right, OCFS is supported on Windows:
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b14207/crswin.htm#sthref428

  • Install Oracle RAC 10g (10.2.0.1) on HP-UX  B.11.31 U ia64 failed

    Hi All
    I am installing Oracle RAC 10g 10.2.0.1 on HP-UX B.11.31 U ia64 but can not complete
    hosts file
    #Public IPs
    10.144.1.111 spgdb01
    10.144.1.112 spgdb02
    #Private IPs
    10.144.2.2 spgdb01p
    10.144.2.3 spgdb02p
    #Virtual IPs
    10.144.1.113 spgdb01v
    10.144.1.114 spgdb02v
    I do installation with runInstaller without error. It copy and link is ok. When I run root.sh then It cannot complete as following
    Checking to see if Oracle CRS stack is already configured
    Checking to see if any 9i GSD is up
    Setting the permissions on OCR backup directory
    Setting up NS directories
    Oracle Cluster Registry configuration upgraded successfully
    WARNING: directory '/oracle/product/10.2.0' is not owned by root
    WARNING: directory '/oracle/product' is not owned by root
    WARNING: directory '/oracle' is not owned by root
    Successfully accumulated necessary OCR keys.
    Using ports: CSS=49895 CRS=49896 EVMC=49898 and EVMR=49897.
    node <nodenumber>: <nodename> <private interconnect name> <hostname>
    node 0: spgdb01 spgdb01p spgdb01
    node 1: spgdb02 spgdb02p spgdb02
    Creating OCR keys for user 'root', privgrp 'sys'..
    Operation successful.
    Now formatting voting device: /ora/crs/votedisk01
    waitpid(-1, 0x7fffdf50, WUNTRACED) .................................................................................................... [sleeping]
    Now formatting voting device: /oracle/oradata1/crs/votedisk02
    Now formatting voting device: /oracle/oradata2/crs/votedisk03
    Format of 3 voting devices complete.
    Startup will be queued to init within 30 seconds.
    ====================
    I have waited for 10 mins but still not complete
    Additionally, log from runInstaller, I got
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2011-04-28_12-13-31AM. Please wait ...-bash-4.2$ Oracle Universal Installer, Version 10.2.0.1.0 Production
    Copyright (C) 1999, 2005, Oracle. All rights reserved.
    Private Interconnect : null
    Private Interconnect : null
    Private Interconnect : null
    Private Interconnect : null
    So, please help me fix this issue
    Thank you

    I had this problem and resolved it by transporting the file to the installation server with the correct ftp datatype (binary).
    On page 54 of the install guide (..Server\Oracle_Business_Intelligence\doc\doc\bi.1013\b31765.pdf) that comes with the installation files, there is an instruction to make sure that any ftp activity is done in binary.
    This may not have occured with the license.xml file if you use a tool which offers the "feature" of automatic datatype recognition.
    Hope this helps.

  • Error when adding a new node to RAC 10g

    Hi all,
    I have a RAC 10g environment test in Linux Red Hat Umbreakble 5 with two nodes. This RAC is fine on 2 nodes.
    I want to add a new node (rac3) of the following way:
    - The node 1 (rac1) is started and the instance ORCL1 is online.
    - The node 2 (rac2) is offline. i.e the machine is off.
    - The node 3 (rac3). The machine is on and already configured
    So that when I execute the CRS_home\oui\bin\addnode.bat on node 1 and put the information of node 3 (Public node name, Private node name, Virtual host name) and press next I get the following message:
    OUI-35000: Fatal cluster error encountered (PRKC-1071 Nodes rac2 did not respond to ping in 30 seconds) - Sure: The machine is off;
    My question is: Can´t I add a new node on RAC if a node is off ?
    Anybody can help me.
    Thanks.
    (Wander Brazil)

    Interesting question.
    You might have better luck getting an answer if you ask where people discuss RAC, instead of asking where people report documentation issues. (Go to http://forums.oracle.com and scroll down to 'Grid Computing' to see RAC forums.)

  • Oracle RAC 10g R2 in Windows Installation error

    Hi!
    Can anyone help me with this one?
    I have trying to installa RAC 10g R2 in Windows Server 2008 R2. I am encountering the error below:
    OUI-35073: Exception occured while starting service in the remote nodes. Could not start the service 'OracleClusterVolumeService' in the remote cluster
    nodes. The specified service does not exist as an installed service
    Thanks..

    Pl indicate which version of 10gR2 - only 10.2.0.5 is supported on Win 2008 R2
    http://download.oracle.com/docs/cd/B19306_01/relnotes.102/b15680/toc.htm#BABEBBJF
    Pl also post in the RAC forums - RAC, ASM & Clusterware Installation
    Srini

  • Oracle RAC 10g on Windows XP Professional

    Hi All,
    I read many articlaes that we can not install Oracle 10g RAC on Windows xp professional but the problem is I have a laptop where I am installing VMWARE with Unix O/S I can not upgrade my XP to Server edition as I do not have money o buy license.
    Please help me what all files I need to change to make my XP one of the nodes os RAC 10g.

    Thanks for replying.
    Can by downloading the kit,I will be able to install Oracle RAC?
    My question was:
    I have windows xp on my machine.I have vmware software also.I need to install Oracle RAC 10g on winxp and an guest opertaing system which will be linux.I want to test RAC by making 1 node on linux and one node on guest operating system winxp.
    Problem is RAC can only be installed on Server edition.Can it be possible to do it on WinXP?

  • How to put online training documents in ECC?

    Dear Experts,
    We would like to put online training documents (html format) in an ECC system: when the user press F1, the system must display the appropriate document. We would like link the document to the Transaction and if possible to the Document type.
    Does anyboby has an idea or some documentation to help us ?
    Thanks in advance & Happy New Year !
    Bruno.

    Use Kpro (Knowledge Provider)
    SAP Help :
    http://help.sap.com/saphelp_erp2005/helpdata/en/15/aea9375d79fb7de10000009b38f8cf/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/42/d289ba46076bb2e10000000a1553f6/frameset.htm

  • Failover not happening the Oracle RAC 10g

    Hi All,
    I am new to RAC.
    I have installed Oracle RAC 10g on Redhat Linux 4.0. Till yesterday failover was happening that is when i stopped one instance on node01 the vip of node01 was transferred to node02.This was shown using ifconfig -a but now that is now happening.Don't know as what has happened.Can you please help me out
    Below information is given:
    [oracle@node01 ~]$ crs_stat -t
    Name Type Target State Host
    ora.hitesh.db application ONLINE ONLINE node02
    ora....h1.inst application ONLINE ONLINE node01
    ora....h2.inst application OFFLINE OFFLINE
    ora....SM1.asm application ONLINE ONLINE node01
    ora....01.lsnr application ONLINE ONLINE node01
    ora.node01.gsd application ONLINE ONLINE node01
    ora.node01.ons application ONLINE ONLINE node01
    ora.node01.vip application ONLINE ONLINE node01
    ora....SM2.asm application ONLINE ONLINE node02
    ora....02.lsnr application ONLINE ONLINE node02
    ora.node02.gsd application ONLINE ONLINE node02
    ora.node02.ons application ONLINE ONLINE node02
    ora.node02.vip application ONLINE ONLINE node02
    Listner status on node01 is given:
    [oracle@node01 ~]$ lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 06-APR-2013 12:59:29
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER_NODE01
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 06-APR-2013 11:59:03
    Uptime 0 days 1 hr. 0 min. 25 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /home/oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Listener Log File /home/oracle/oracle/product/10.2.0/db_1/network/log/listener_node01.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.131)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary...
    Service "+ASM" has 1 instance(s).
    Instance "+ASM1", status BLOCKED, has 1 handler(s) for this service...
    Service "+ASM_XPT" has 1 instance(s).
    Instance "+ASM1", status BLOCKED, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "hitesh" has 2 instance(s).
    Instance "hitesh1", status READY, has 2 handler(s) for this service...
    Instance "hitesh2", status READY, has 1 handler(s) for this service...
    Service "hiteshXDB" has 2 instance(s).
    Instance "hitesh1", status READY, has 1 handler(s) for this service...
    Instance "hitesh2", status READY, has 1 handler(s) for this service...
    Service "hitesh_XPT" has 2 instance(s).
    Instance "hitesh1", status READY, has 2 handler(s) for this service...
    Instance "hitesh2", status READY, has 1 handler(s) for this service...
    The command completed successfully
    [root@node01 oracle]# crsctl check crs
    CSS appears healthy
    CRS appears healthy
    EVM appears healthy
    [root@node01 oracle]# ps -ef | grep lmon
    oracle 5741 1 0 12:07 ? 00:00:03 ora_lmon_hitesh1
    root 22582 20805 0 13:01 pts/2 00:00:00 grep lmon
    oracle 23643 1 0 11:58 ? 00:00:01 asm_lmon_+ASM1
    Please let me know what information else is required
    Edited by: user12924280 on Apr 6, 2013 12:36 AM

    Since you didn't say "thank you", I assumed my time was of no value to you.
    However, I shall try again.
    There is no relationship between instance failure and VIP failover. How can there be? What if you are running ten instances on each node, and one fails? Would you want the VIP to relocate? And I've already told you how to test it: kill the node. Just reboot it.

  • Upgrade oracle rac 10g r2 10.2.0.3 to 10.2.0.4

    Hi all,
    I goint to upgrade oracle rac 10g r2 10.2.0.3 to 10.2.0.4 on Solaris 9, in the README file(patchset) does not say that upgrade the OCR, but int he Doc ID 316889.1 to say; it is necessary to upgrade or nothing happens if Iit does not upgrade?
    Mexman
    Edited by: ACS on 28/10/2009 12:19 PM

    Hi!
    I suppose if you have a Metalink note on which explains is necessary update OCR you must follow it. Software maker always are in reason!
    Chiao!

  • Oracle RAC 10g on Solaris 10 in a non-global zone

    I need to run Oracle RAC 10g on Solaris 10 in a non-global zone as I must cap the CPUs used for Oracle licensing limitations. My question is a simple one, but one for which I'm getting conflicting information depending upon whom I ask.
    If I want to run RAC in a non-global zone on two nodes, does this require the use of Solaris Cluster?
    I know there are good reasons to use Solaris Cluster, but the company for which I work cannot afford the additional expense of Solaris Cluster at this time. Is it possible to run Oracle RAC 10g in a capped container without Solaris Cluster or is Solaris Cluster absolutely required?
    Thanks in advance for any insight you can provide.

    AFAIK, Oracle 10g RAC is not supported in solaris containers.
    It is however supported in Solaris zone clusters...in order to use it, you would have to use Sun Cluster 3.2 (iinm).

Maybe you are looking for

  • CE function to get distinct values from Column table

    Hi All, Could you please let me know the appropriate CE function to get the distinct values from column table. IT_WORK = SELECT DISTINCT AUFNR FROM :IT_WO_DETAILS; Thank you.

  • URGENT Spaces help needed!

    I was setting up my different desktops with Spaces and setting the Spaces that applications open up to. I set System Preferences to '5', stupidly, and some other programs as well. Something happened, I'm not sure what, and set my Spaces to only have

  • Unable to export referenced files!

    Hello, Got some photos referenced to a DVD; can see them, can keyword them, everything is fine BUT when i want to export the version of those photos to my hard drive, the DVD seems to go to sleep; it won't spin and Aperture doesn't do anything! (actu

  • Pass a COM object across processes

    Hi, I need to pass a COM object from process A to B.  I didn't find a good code example for IMoniker.  So I am trying to test a simpler solution.  Please refer to the following snippet of code.  There is a problem.  When the execution reaches GetActi

  • Recovered email will not delete

    I attempted to send an email with a video attachement.  It did not send, it now appears a new folder called "recovered", and i can not delet it.  also my inbox gear is constantly running and will not import my other email.