RAC redundancy problem

Hi,
We have a RAC system which is running on Windows Server 2008 R2 and the oracle version is 11g.
When we close one of the nodes, other node can not take the sessions and loads then our database becomes unavailable.
What could be the reasons?

what version 11g??? ALWAYS POST THE FULL VERSION NUMBER. (and yes, I was yelling!!).
Did you properly configure SCAN? https://www.lmgtfy.com/?q=oracle+scan+pdf
Proper DNS configuration
Proper {local | remote}_listener parameters. And RAC on Windows?? Seriously????

Similar Messages

  • I have a serious contacts redundancy problem.  First I have multiple email account formats, e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account.  The problem is I had up to 15 contact

    I have a serious contacts redundancy problem. 
    First I have multiple email account formats,e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account. The problem is I had up to 15 contacts for the same person. 
    I deleted the Entourage contacts as that seemed to be the program that was causing the problems.  When I synced this morning, now all my contacts are gone from every where. 
    How can I restore to my last back?  If I restore, it will ask to restore to the back that was just made… which has no contacts?  
    Help would be greatly appreciated !!

    I have a serious contacts redundancy problem. 
    First I have multiple email account formats,e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account. The problem is I had up to 15 contacts for the same person. 
    I deleted the Entourage contacts as that seemed to be the program that was causing the problems.  When I synced this morning, now all my contacts are gone from every where. 
    How can I restore to my last back?  If I restore, it will ask to restore to the back that was just made… which has no contacts?  
    Help would be greatly appreciated !!

  • Production site RAC redundant architecture deployment

    We need the advise from Oracle Experts regarding our production site RAC redundant architecture deployment
    For some business constraint, We have only 2-NIC Available for configure the redundant RAC Deployment
    So are planed to bonding the available 2-NIC and after NIC bonding we got only one bonding interface of 1gbps speed.
    We have configure the public and private ip address in that available single bonding interface.
    network configuration
    #bond0 (public network)
    10.106.1.246 rac1
    10.106.1.247 rac2
    #bond0:1(vip network 10.106.1.251)
    10.106.1.251 rac1-vip
    10.106.1.252 rac2-vip
    #bond0:11(private network 10.10.0.1)
    10.10.0.1 rac1-priv
    10.10.0.2 rac2-priv
    #bond0:2(scan ip)
    10.106.1.244 rac-scan
    Oracle Setup Details
    Oracle11g r2 RAC/GRID Software
    RAC/GRID: 2-Node Database Cluster
    Database Storage: ASM
    Please find the review of our Hardware and Software
    Hardware:
    IBM Servers and SAN Storage
    NIC Speed: 1Gbps
    Software: Redhat Enterprise Linux5.5 64bit
    Application Behavior:
    1.) High insert/update/delete/select on single table.
    2.) multiple session connect and disconnect.
    Can you please conform that above architecture will support in production site?
    what is the advantages and disadvantages with above architecture in production site?
    Can you please suggest the right way of deployment the redundant RAC deployment in production site?

    This is one case where I would say that you are playing a very dangerous game with your production system. You asked for Expert opinions and you have been informed that this is a VERY BAD IDEA!!!! While you think that it works, don't come asking about node evictions when your bonded nics get saturated. I can say that I am an expert having installed, configured and spent time troubleshooting more than 75 clusters (2-6 nodes) on some very impressive hardware. The "big one" was 250TB on a 3 node RAC on Sun 6900's (48 dual-core x 192GB main memory with 8 NICS using SUN IPMP and 8 HBA's for SAN connectivity ). When you start having "weird" issues, Oracle will not support your configuration. You will need to fix it before they even begin troubleshooting it. Tell your manager that unless they spring for the appropriate configuration they should execute the following command: "Alter manager update Resume;" because it is not "IF" it will fail, but "WHEN" will it fail. Trust me, you and your managers have put your system in a very precarious position.

  • XSLT Redundancy Problem

    Hi all,
    I have a serious problem with redundancy in XSLT. In my conversion XML input file, I have many tags like that:
    <tag1 name="..." date1a="..." date1b="...">
    </tag1>
    <tag2 name="..." date2="..." date2b="...">
    </tag2>
    All with different tag names and different attribute names (although the attributes hold similar information).
    Now what I need is a template that could be applied to a combination of tag-attribute, e.g. to tag1, using the values of date1a.
    My current solution has a template for each combination - which is very redundant.
    Any idea how to optimize this without changing the input file? I thought of global variables to store the attribute value but they are "final", so that does not work. Local variables seem to be limited to a single template, so they cannot be used either.
    Any help will be appreciated,
    Ralf

    Hi,
    This is a typical line from the input file:
    <WebAppM3.SingleInfo xmi.id="a71" xmi.uuid="7e33f8b02e0f30f5:00a981ca:000000f425774313:8181" Name="StaticPage" Entity="a67 a66" SubView="a72 a73">
    </WebAppM3.SingleInfo>
    This is a typical transformation rule for it (the relevant rules are for Entity and SubView:
    <xsl:template match="WebAppM3.SingleInfo">
    <!-- Each instance of SingleInfo gets its own class using as much of its old values as
    possible-->
    <Model.Class annotation="" isRoot="false" isLeaf="true" isAbstract="false"
    visibility="public_vis" isSingleton="false">
    <xsl:copy-of select="@xmi.id"/>
    <xsl:copy-of select="xmi.uuid"/>
    <xsl:attribute name="name">
    <xsl:value-of select="@Name"/>
    </xsl:attribute>
    <Model.Namespace.contents>
    <xsl:apply-templates select="descendant::WebAppM3.M2Attribute"/>
    <xsl:apply-templates select="attribute::Entity" mode="link"/>
    <xsl:apply-templates select="attribute::SubView" mode="link"/>
    </Model.Namespace.contents>
    </Model.Class>
    </xsl:template>
    <xsl:template match="@Entity" mode="link">
    <!-- References to the new Associations of type DBConnection -->
    <xsl:variable name="data" select="stringhelp:tokenize(.)"/>
    <xsl:variable name="anc_id" select="ancestor::WebAppM3.SingleInfo/@xmi.id"/>
    <xsl:variable name="targets" select="../WebAppM3.DataSet"/>
    <xsl:for-each select="$data/token">
    <Model.Reference annotation="" scope="instance_level"
    visibility="public_vis" type="a23" isChangeable="true">
    <xsl:attribute name="name">Entity_<xsl:value-of select="."/></xsl:attribute>
    <xsl:attribute name="xmi.id">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="xmi.uuid">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="referencedEnd">
    TEST
    </xsl:attribute>
    <Model.StructuralFeature.multiplicity>
    <Model.MultiplicityType lower="0" upper="-1" is_ordered="false" is_unique="false" />
    </Model.StructuralFeature.multiplicity>
    </Model.Reference>
    </xsl:for-each>
    </xsl:template>
    <xsl:template match="@SubView" mode="link">
    <!-- References to the new Associations of type DBConnection -->
    <xsl:variable name="data" select="stringhelp:tokenize(.)"/>
    <xsl:variable name="anc_id" select="ancestor::WebAppM3.SingleInfo/@xmi.id"/>
    <xsl:variable name="targets" select="../WebAppM3.DataSet"/>
    <xsl:for-each select="$data/token">
    <Model.Reference annotation="" scope="instance_level"
    visibility="public_vis" type="a23" isChangeable="true">
    <xsl:attribute name="name">Entity_<xsl:value-of select="."/></xsl:attribute>
    <xsl:attribute name="xmi.id">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="xmi.uuid">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="referencedEnd">
    TEST
    </xsl:attribute>
    <Model.StructuralFeature.multiplicity>
    <Model.MultiplicityType lower="0" upper="-1" is_ordered="false" is_unique="false" />
    </Model.StructuralFeature.multiplicity>
    </Model.Reference>
    </xsl:for-each>
    </xsl:template>
    Cheers,
    Ralf

  • 4507R+SUPII_Plus Redundancy Problem

    Dear Professionals
    I have
    4507R + 2 X SUPII_Plus + cat4000-i9s-mz.121-19.EW1.bin
    Following dump seems to be not configured correctly to redundancy.
    What can I do to fix this problem.
    ------------------ show running-config --------------
    redundancy
    mode rpr
    main-cpu
    auto-sync startup-config
    auto-sync standard
    7507R_SUPII_Plus#show redundancy stat
    my state = 13 -ACTIVE
    peer state = 1 -DISABLED
    Mode = Simplex
    Unit = Primary
    Unit ID = 1
    Redundancy Mode (Operational) = RPR
    Redundancy Mode (Configured) = RPR
    Split Mode = Disabled
    Manual Swact = Disabled Reason: Simplex mode
    Communications = Down Reason: Simplex mode
    client count = 4
    client_notification_TMR = 60000 milliseconds
    keep_alive TMR = 9000 milliseconds
    keep_alive count = 0
    keep_alive threshold = 18
    RF debug mask = 0x0
    7507R_SUPII_Plus#redundancy force-switchover
    There is no STANDBY present. Failed to force switchover
    Best Regards

    The problem is with the following missed commands in your global configuration... Assuming Active RSP in slot 2, Standby RSP in Slot 3 and both RSP's have Slot 0 flash memory cards.
    R(config)#hw-module slot 2 image slot0:
    R(config)#hw-module slot 3 image slot0:
    R#hw-module sec-cpu reset
    Refer the following links for more information...
    http://www.cisco.com/en/US/products/sw/iosswrel/ps1612/products_feature_guide09186a0080080a6f.html
    http://www.cisco.com/univercd/cc/td/doc/product/core/cis7505/rte_swit/6586rsp8.htm#213565

  • DLSw redundancy problem

    | |
    ****** ******** | |
    * *--CPA1--*7206-1*--| ******** |
    *IBM * ******** |--*7206-3*--|
    * * | ******** |
    *HOST* | |
    * * ******** |--******** |
    * *--CPA2--*7206-2*--| *7206-4*--|
    ****** ******** | ******** |
    | |
    7206-1 and 7206-2 manage the the connection to the IBM host with a CPA card eich other.
    7206-3 and 7206-4 manage the connection between the central site and the remotes sites via frame-relay network, they are border peer and DLSw load balancing coded. also manage the connection between a LAN of the central site and with bridge-group to reach an IBM HOST via 7206-1 and 7206-2.
    The following is the configurations:
    7206-3:
    dlsw local-peer peer-id 3.3.3.3 group 3 border keepalive 0 promiscuous
    dlsw load-balance round-robin
    dlsw remote-peer 0 tcp 1.1.1.1 timeout 90
    dlsw remote-peer 0 tcp 2.2.2.2 timeout 90
    dlsw cache-ignore-netbios-datagram
    dlsw bridge-group 1
    7206-4:
    dlsw local-peer peer-id 4.4.4.4 group 3 border keepalive 0 promiscuous
    dlsw load-balance round-robin
    dlsw remote-peer 0 tcp 1.1.1.1 timeout 90
    dlsw remote-peer 0 tcp 2.2.2.2 timeout 90
    dlsw cache-ignore-netbios-datagram
    dlsw bridge-group 1
    The probleme is:
    In the central site, i see a slowness in the connection, and it is random, sometime a connction is very fast, other time it is very slow, and it can take up to 1,5 minute to connect.
    After all that, i coded a dlsw redundancy in the 7206-3 and 7206-4 FastEthernets, the problem still exist in the LAN, and it cause a trouble in some remotes sites connected with frame-relay, that loose a connection to HOST.
    Thank You for your help.

    1. To make load balancing work you will have to add the following commands:
    dlsw timer explorer-wait-time ...
    source-bridge ring-group ...
    Ring-group number must be the same on 7206-3 & 7206-4 - it prevents unnecessary explorer flooding.
    2. If bridge-group 1 on 7206-3 & 7206-4 shares the same Ethernet domain you must use DLSw+ Ethernet Redundancy feature.
    3. Border peers in the same group must be in full-mesh and all members in the group must peers with all border peers in this group. On 7206-3 & 7206-4 you will have to add the following commands:
    (7206-3)# dlsw remote-peer 0 tcp 4.4.4.4 ...
    (7206-4)# dlsw remote-peer 0 tcp 3.3.3.3 ...

  • RAC connection problem with interconnect NIC failure

    We have an 11g 2-node test RAC setup on RHEL 4 that is configured to have no load balancing (client or server), with Node2 existing as a failover node only. Connection and vip failover works fine in most situations (public interface fail, node fail, cable pull, node 2 interconnect fail, interconnect switch fail etc etc).
    When the node1 interconnect card failure is emulated (ifdown eth1):
    node2 gets evicted and reboots
    failover of existing connections occurs
    VIP from node2 is relocated to node1
    However new connection attempts from clients and the server receive a ORA-12541: TNS:no listener message.
    The basis of this is the issue that in the event of an interconnect failure, the lowest number node is supposed to survive - it looks like this includes the situation where the lowest number node has a failed interconnect NIC; ie it has a hardware fault.
    I checked this with Oracle via an iTAR quite some time ago (under 10g) and they eventually confirmed that this eviction of the healthy 2nd node is correct behaviour. In 10g, this situation would result in the remaining instance failing due to the unavailable NIC, however I did not get the chance to fully test and resolve this with Oracle.
    In 11g, the alert log continuously reports the NIC's unavailability. The instance remains up, but new connections cannot be established. If the NIC is re-enabled then new connections are able to be established. At all times, srvctl status nodeapps on the surviving node and lsnrtcl show that the listener is functional.
    The alert log reports the following, regarding a failed W000 or M000 process:
    ospid 13165: network interface with IP address 192.168.1.1 no longer operational
    requested interface 19.2.168.1.1 not found. Check output from ifconfig command
    ORA-603 : opidrv aborting process W000 ospid (16474_2083223480)
    Process W000 died, see its trace file
    The W000 trace file refers to an Invalid IP Address 192.168.1.1 (the interconnect ip address) obviously the source of the process dying.
    Finally, if I restart the remaining instance via srvctl stop/start instance with the NIC still unavailable, the instance will allow new connections and does not report the failures of the W000/M000 process or appear to care about the failed NIC.
    Before I go down the iTAR path or start posting details of the configuration, has anyone else experienced/resolved this, or can anyone else test it out?
    Thanks for any input,
    Gavin
    Listener.ora is:
    SID_LIST_LISTENER_NODE1=
    (SID_LIST=
    (SID_DESC=
    (ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1)
    (SID_NAME=RAC_INST)
    (SID_DESC=
    (ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1)
    (SID_NAME=RAC_INST1)
    (SID_DESC=
    (ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1)
    (SID_NAME=RAC_INST2)
    SID_LIST_LISTENER_NODE2=
    (SID_LIST=
    (SID_DESC=
    (ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1)
    (SID_NAME=RAC_INST)
    (SID_DESC=
    (ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1)
    (SID_NAME=RAC_INST2)
    (SID_DESC=
    (ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1)
    (SID_NAME=RAC_INST1)
    LISTENER_NODE1 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL=TCP)(HOST=vip-NODE1)(PORT=1521)(IP=FIRST))
    (ADDRESS = (PROTOCOL=TCP)(HOST=NODE1)(PORT=1521)(IP=FIRST))
    LISTENER_NODE2 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL=TCP)(HOST=vip-NODE2)(PORT=1521)(IP=FIRST))
    (ADDRESS = (PROTOCOL=TCP)(HOST=NODE2)(PORT=1521)(IP=FIRST))
    )

    Thanks for your reply.
    There is no NIC bonding - the interconnect is a single, dedicated Gigabit link connected via a dedicated switch: plenty of bandwidth.
    I know that providing interconnect NIC redundancy would provide a fallback position on this (although how far do you go: redundant interconnect switches as well?), and that remains an option.
    However that's not the point. RAC does not require a redundant interconnect - as a high-availability solution it should inherently provide a failover position that continues to provide an available instance, as it does for all other component failures.
    Unless I've made a mistake in the configuration (which is very possible, but all the other successful failover scenarios suggest I haven't), then this could be a scenario that renders a 2-node cluster unavailable to new connections.
    Gavin

  • 10 G Rac reinstall problem,How to unregister VIP manully?

    NODE NAME: rac1 rac2 rac3 .
    I was removed rac3 from the cluster.
    Now 2 nodes working and i'm trying to re-add the dropped one into the cluster.
    I check crs_stat ,ifcfg ,olsnodes .There's no rac3 infomation any more.
    But when i trying to run addNode.sh I got the problem
    In step 2,"Specify Cluster Nodes to Add to Installtion"
    I found rac3 in the Existing Node List ,*without* private-node-name and virtual host name!!!
    well,i tried "srvctl modify nodeapps -node rac3 -A "to modify rac3 configuration. it works. rac 3 in the Existing Node List with a private-node-name and virtual host name now .
    But when i go back to install page i must to Specify a new Node to go to next step....
    So, could any one help me ?or tell me how to remove the residual information of VIP? I don't want to DD OCR ...
    Thanks a lot;

    I try to dump ocr and got something like this.I don't know is that help?
    - <KEY>
    <NAME>SYSTEM.evm.rmport.rac3</NAME>
    <VALUE_TYPE>UNDEF</VALUE_TYPE>
    - <VALUE>
    - <![CDATA[
      ]]>
    </VALUE>
    - <KEY>
    <NAME>DATABASE.ONS_HOSTS.rac3</NAME>
    <VALUE_TYPE>ORATEXT</VALUE_TYPE>
    - <VALUE>
    - <![CDATA[ rac3
      ]]>
    </VALUE>
    <USER_PERMISSION>PROCR_ALL_ACCESS</USER_PERMISSION>
    <GROUP_PERMISSION>PROCR_READ</GROUP_PERMISSION>
    <OTHER_PERMISSION>PROCR_READ</OTHER_PERMISSION>
    <USER_NAME>oracle</USER_NAME>
    <GROUP_NAME>oinstall</GROUP_NAME>
    - <KEY>
    <NAME>DATABASE.ONS_HOSTS.rac3.PORT</NAME>
    <VALUE_TYPE>ORATEXT</VALUE_TYPE>
    - <VALUE>
    - <![CDATA[
      ]]>
    </VALUE>
    <USER_PERMISSION>PROCR_ALL_ACCESS</USER_PERMISSION>
    <GROUP_PERMISSION>PROCR_READ</GROUP_PERMISSION>
    <OTHER_PERMISSION>PROCR_READ</OTHER_PERMISSION>
    <USER_NAME>oracle</USER_NAME>
    <GROUP_NAME>oinstall</GROUP_NAME>
    </KEY>
    </KEY>
    </KEY>
    </KEY>

  • Oracle RAC - network problem between nodes

    Hi all,
    I have the following configuration:
    Two guests operation systems CentOS 4.8 (installed).
    The host is Windows XP (where is installed the VMWare Server 2).
    Oracle 10.2.0.1 and Oracle Clusterware (Not installed Yet, trying)
    I've created two VMs (RAC1 and RAC2) on VMware Server2 for Oracle 10g RAC.
    Each VM has 2 network adapters:
    eth0: public
    eth1: private
    But, Into RAC1, when I try a ping to RAC2, I got the error destination host unreachable.
    The subnet and the net mask is OK, I've set the /etc/hosts.
    From my Host PC, I cannot to perform ping to RAC1 and RAC2 too.
    I've tryed to set the ethernet to hostonly and bridged, but I got the same problem.
    Is there any configuration we need to do?
    thank you very much!!!!

    From my Host PC, I cannot to perform ping to RAC1 and RAC2 too.Make sure you have both nodes in the network and must be under same subnet mask.
    Is it mandatory the ethernet adapter of host is connect to a network?If its not in the network how you are going to access?

  • RAC resources problem

    hi all,
    before installing ASM instance i had the resources as follows:- C:\oracle\102\crs\BIN>crs_stat -t -v
    Name Type R/RA F/FT Target State Host
    ora....c11.gsd application 0/5 0/0 ONLINE ONLINE vmrac11
    ora....c11.ons application 0/3 0/0 ONLINE ONLINE vmrac11
    ora....c11.vip application 0/0 0/0 ONLINE ONLINE vmrac11
    ora....c22.gsd application 0/5 0/0 ONLINE ONLINE vmrac22
    ora....c22.ons application 0/3 0/0 ONLINE ONLINE vmrac22
    ora....c22.vip application 0/0 0/0 ONLINE ONLINE vmrac22
    AFTER ASM instance is installed the resources are:-
    C:\oracle\102\crs\BIN>crs_stat -v -t
    Name Type R/RA F/FT Target State Host
    ora....SM1.asm application 0/5 0/0 ONLINE OFFLINE
    ora....SM2.asm application 0/5 0/0 ONLINE ONLINE vmrac22
    I have tried everything but could not solve the problem, i will be thankful to you for your valuable suggestions and solutions.
    Thanks and Regards,
    Aijaz

    hi all,
    I am back, RAC installation seems nightmare for me, I am getting the following error
    node 1: vmrac11 vmrac11-priv vmrac11
    node 2: vmrac22 vmrac22-priv vmrac22
    Creating OCR keys for user 'administrator', privgrp ''..
    Operation successful.
    Now formatting voting device: \\.\votedsk1
    Format of 1 voting devices complete.
    Step 1: checking status of CRS cluster
    Step 2: creating directories (C:\oracle\product\10.2.0\crs)
    Step 3: configuring OCR repository
    Step 4: configuring safe mode for CRS stack
    Step 5: Starting up CRS stack on all nodes
    vmrac11 service OracleCSService in improper PENDING state, err(0)
    vmrac22 service OracleCSService in improper PENDING state, err(997)
    i have already installed opmd.exe.
    regards
    Aijaz

  • RAC Installaton problem

    Hi every one ,
    I am installing oracle rac for two nodes , when I reach to the step of running root.sh
    I got the folowing :
    $./root.sh
    WARNING: directory '/opt/oracle/product/10.2.0' is not owned by root
    WARNING: directory '/opt/oracle/product' is not owned by root
    WARNING: directory '/opt/oracle' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    Setting the permissions on OCR backup directory
    Setting up NS directories
    Failed to upgrade Oracle Cluster Registry configuration
    any one has an idea about this problem
    thanks in advance.

    $./root.sh
    WARNING: directory '/opt/oracle/product/10.2.0' is not owned by root
    WARNING: directory '/opt/oracle/product' is not owned by root
    WARNING: directory '/opt/oracle' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    Setting the permissions on OCR backup directory
    Setting up NS directories
    This part is normal but oracle cluster registry configuration should be successful.
    Verify your cluster configuration.
    Regards
    Asif Kabir

  • RAC - srvctl problem

    We have two node Windows Advanced server 2000 RAC setup.
    srvctl command show status of the database on first node.
    whereas it is not showing any output on second node.
    Even though all the services are running properly.
    Can you let us how to solve this problem.
    Thanks in Advance
    -Prashant

    Hi
    as per u error it means it will fail to communicate with other node in cluster,and i think cluster is not properly working.
    Try a test:-
    shutdown the first node and check whether this node(where gsdctl show error)
    are able to perform recovery of fail node ,check alert log file and post it here.
    also check log file
    $ORACLE_HOME/srvm/log
    Thanks and Regards
    Kuljeet Pal Singh

  • RAC Performance problem

    Hi,
    I configured 2-node RAC on Linux .But bench marks are surprising me.If i test the RAC with Loadbalace i'm getting 170 Transactions/sec.But,If i test the RAC with Single instance i'm getting 270 Transactions/sec.Could any one help me to solve this problem
    Tx
    Sarma

    Hi,
    Have you got the answer?
    I have the same problem. Someone told me that RAC of Oracle8i was a hoax, he doubted Oracle9i improved RAC performance very much. I would rather not believe what he said, however, the test result of Oracle9i RAC on Compaq cl380 was so disappointed. I think there must be some bottlenecks that affect RAC performance. and I hope some technical guys from Oracle can come out to explain it.
    Mike

  • Redundancy Problems

    I am trying to implement redundancy on two computers using Lookout v6.0.2.  One computer (primary) has an unlimited development license, and the other (secondary) has a unlimited runtime license.  The computers also have client licenses installed on both.  The server process is loaded on both machines using the same name.  When I developed the client process I used a full pathname for everything versus Symbolic Link, because I have a large amount of discrete controls (pushbuttons, etc.) connected to field devices that I wanted both computers to access. 
    The client and server processes work fine during normal operation with no problem. 
    I have created a process called "redundancy" on the client machine per the developer's manual.  This process is setup to load the server process in the event of a failure on the primary, but it doesn't work.  My state file is being updated from machine to machine properly, but the server process never loads on the client machine.
    I have tried to check for syntax or other errors in the loader and monitor blocks and everything looks OK.  I have tried shutting down the process only, Lookout, and powering down the primary computer with no success.
    Any suggestions would be appreciated.

    Has anyone had any success with having the process files (*.l4p) on a shared volume? (and using redundency using the Loader and Monitor objects)
    I tryed this and it did not work...
    Create a test process, and name it Master. Save Master on a network drive/folder.
    Create a test process, and name it Monitor. Save Monitor on a network drive/folder. (yes, the loader is pointed to the Master file on the shared network drive/folder, and yes, i can open/run Master by clicking File/Open on this computer).
    Run Master on one computer
    Run Monitor on another computer
    Shut down Master
    Observations: Monitor notices that Master is not running any more, but Loader doesn't do anything, and no alarm is generated.
    Make these changes:
    copy process file Master to the local c:\program files\national instruments\lookout 6.1\
    change the loader to run the Master file from the local hard drive.
    Try experiment again.
    Everything works as expected
    any ideas? Can anyone duplicate this issue?
    thanks
    Rich

  • RAC Installation Problem in End

    Hi All
    I am instaling RAC on Red Hat Linux 4. After installation of Clusterware I got the following on the rac01 node.........
    [root@rac01 ~]# /u01/app/oracle/product/10.2/crs/bin/crs_stat -t
    Name Type Target State Host
    ora.rac01.gsd application ONLINE UNKNOWN rac01
    ora.rac01.ons application ONLINE UNKNOWN rac01
    ora.rac01.vip application ONLINE ONLINE rac01
    ora.rac02.gsd application ONLINE UNKNOWN rac02
    ora.rac02.ons application ONLINE UNKNOWN rac02
    ora.rac02.vip application ONLINE ONLINE rac02
    [root@rac01 ~]#
    During the installation of the database during Oracle net configuration assistant, I got the error:
    Problem in configuration: rac02: LISTENER_RAC02
    Listener start failed. Listener may already be running.
    CRS-0215: 'Could not start resource'ora.rac02.LISTENER_RAC02.lsnr'.
    Any help will be appreciated
    Regards

    Also Listener is up on node "rac01" and I am installing from this node......
    also the output:
    [oracle@rac02 admin]$ srvctl status nodeapps -n rac01
    VIP is running on node: rac01
    GSD is not running on node: rac01
    Listener is running on node: rac01
    ONS daemon is not running on node: rac01
    [oracle@rac02 admin]$ srvctl status nodeapps -n rac02
    VIP is running on node: rac02
    GSD is not running on node: rac02
    Listener is not running on node: rac02
    ONS daemon is not running on node: rac02
    Here are the last few lines of the logfile:
    Oracle Database 10g 10.2.0.1.0
    Oracle Net Services 10.2.0.1.0
    Oracle Enterprise Manager Console DB 10.2.0.1.0
    Oracle OLAP 10.2.0.1.0
    Oracle Spatial 10.2.0.1.0
    Oracle Partitioning 10.2.0.1.0
    Enterprise Edition Options 10.2.0.1.0
    Oracle Database 10g 10.2.0.1.0
    INFO: SaveInvWCCE JRE files in Scratch :590
    INFO: Config Initialize JRE files in Scratch :590
    INFO: stage loc: /tmp/OraInstall2007-06-12_05-00-28PM/
    INFO: Copying Aggr XML for: HAS Common Files
    INFO: stage loc: /tmp/OraInstall2007-06-12_05-00-28PM/
    INFO: Copying Aggr XML for: iSQL*Plus
    INFO: stage loc: /tmp/OraInstall2007-06-12_05-00-28PM/
    INFO: Copying Aggr XML for: Oracle Net
    INFO: stage loc: /tmp/OraInstall2007-06-12_05-00-28PM/
    INFO: Copying Aggr XML for: Database Configuration and Upgrade Assistants
    INFO: stage loc: /tmp/OraInstall2007-06-12_05-00-28PM/
    INFO: Copying Aggr XML for: Oracle Enterprise Manager Console DB
    INFO: stage loc: /tmp/OraInstall2007-06-12_05-00-28PM/
    INFO: Copying Aggr XML for: Oracle Database 10g
    INFO: Namespace prefix 'agg' used but not declared.
    INFO: no. of tools to supress: 0 for comp: HAS Common Files
    INFO: no. of tools to supress: 0 for comp: iSQL*Plus
    INFO: processing tool: iSQL*Plus Configuration Assistant
    INFO: removing plugin invocation for: iSQL*Plus Configuration Assistantas it doesnt support clone mode
    INFO: removing plugin invocation for: iSQL*Plus Configuration Assistantas it doesnt support add node mode
    INFO: Namespace prefix 'agg' used but not declared.
    INFO: can't remove invocation for plugin: iSQL*Plus Configuration Assistant from Action: cloningdrastic
    INFO: can't remove invocation for plugin: iSQL*Plus Configuration Assistant from Action: addingnode
    INFO: no. of tools to supress: 0 for comp: Oracle Net
    INFO: processing tool: Oracle Net Configuration Assistant
    INFO: removing plugin invocation for: Oracle Net Configuration Assistantas it doesnt support clone mode
    INFO: removing plugin invocation for: Oracle Net Configuration Assistantas it doesnt support add node mode
    INFO: Namespace prefix 'agg' used but not declared.
    INFO: processing tool: Oracle Net Configuration Assistant - Deinstall Script
    INFO: removing plugin invocation for: Oracle Net Configuration Assistant - Deinstall Scriptas it doesnt support clone mode
    INFO: removing plugin invocation for: Oracle Net Configuration Assistant - Deinstall Scriptas it doesnt support addnode mode
    INFO: no. of tools to supress: 0 for comp: Database Configuration and Upgrade Assistants
    INFO: processing tool: Oracle Database Configuration Assistant
    INFO: removing plugin invocation for: Oracle Database Configuration Assistantas it doesnt support clone mode
    INFO: removing plugin invocation for: Oracle Database Configuration Assistantas it doesnt support add node mode
    INFO: Namespace prefix 'agg' used but not declared.
    INFO: processing tool: Database Upgrade Assistant
    INFO: removing plugin invocation for: Database Upgrade Assistantas it doesnt support clone mode
    INFO: removing plugin invocation for: Database Upgrade Assistantas it doesnt support add node mode
    INFO: Namespace prefix 'agg' used but not declared.
    INFO: can't remove invocation for plugin: Database Upgrade Assistant from Action: cloningdrastic
    INFO: can't remove invocation for plugin: Database Upgrade Assistant from Action: addingnode
    INFO: no. of tools to supress: 0 for comp: Oracle Enterprise Manager Console DB
    INFO: cf session will be created for OH: /u01/app/oracle/product/10.2.0/db_1/ TLAggr: oracle.server instancePath: inventory/ContentsXML/ConfigXML/
    INFO: cf session for OH: /u01/app/oracle/product/10.2.0/db_1/ TL Aggr: [oracle.server] instancePath: inventory/ContentsXML/ConfigXML/
    INFO: aggr ref length : 7
    INFO: cf session hashcode: 8366806
    INFO: cf session saved with key: OraDb10g_home1 oracle.server
    INFO: cf session is ok
    INFO: created and saved cf session for oh: OraDb10g_home1
    INFO: passing params to cf
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: {Parameter:TOPLEVEL_COMPONENT in {Aggregate:OuiConfigVariables:1.0.0.0.0:common}}: Parameter data type is not compatible with the provided String Array.
    INFO: passing params to cf done
    INFO: done saving info by cf
    INFO: Updating files in Oracle home '/u01/app/oracle/product/10.2.0/db_1' to remote nodes 'rac02'.
    INFO: List of files to be excluded from:install/excludeFileList.txt
    INFO: Exclude file list /tmp/OraInstall2007-06-12_05-00-28PM/installExcludeFile.lst does not exist or is empty. The file is ignored.
    INFO: Saving Cluster Inventory
    INFO: Running command '/tmp/OraInstall2007-06-12_05-00-28PM/oui/bin/runInstaller -jreLoc /tmp/OraInstall2007-06-12_05-00-28PM/jre/1.4.2 -paramFile /tmp/OraInstall2007-06-12_05-00-28PM/oui/clusterparam.ini -silent -ignoreSysPrereqs -attachHome -noClusterEnabled ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1 ORACLE_HOME_NAME=OraDb10g_home1 CLUSTER_NODES=rac01,rac02 "INVENTORY_LOCATION=/u01/app/oracle/oraInventory" LOCAL_NODE=rac02 -remoteInvocation -invokingNodeName rac01 -logFilePath "/u01/app/oracle/oraInventory/logs" -timestamp 2007-06-12_05-00-28PM' on the nodes 'rac02'.
    INFO: Invoking OUI on cluster nodes rac02
    INFO: /tmp/OraInstall2007-06-12_05-00-28PM/oui/bin/runInstaller -jreLoc /tmp/OraInstall2007-06-12_05-00-28PM/jre/1.4.2 -paramFile /tmp/OraInstall2007-06-12_05-00-28PM/oui/clusterparam.ini -silent -ignoreSysPrereqs -attachHome -noClusterEnabled ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1 ORACLE_HOME_NAME=OraDb10g_home1 CLUSTER_NODES=rac01,rac02 "INVENTORY_LOCATION=/u01/app/oracle/oraInventory" LOCAL_NODE=rac02 -remoteInvocation -invokingNodeName rac01 -logFilePath "/u01/app/oracle/oraInventory/logs" -timestamp 2007-06-12_05-00-28PM
    INFO: cf session retrieved for key: OraDb10g_home1 oracle.server
    INFO: cf session retrieved for key: OraDb10g_home1 oracle.server
    INFO: cf session retrieved for key: OraDb10g_home1 oracle.server
    INFO: RUN_RECOMMENDED_TOOLS FIRST is set to false
    INFO: No of Recommended Tools2
    INFO: plugin-list is created
    INFO: pluginlist is updated for: Oracle Database 10g current size: 1
    INFO: No of ExitOnly Tools in this session: 0
    INFO: cf session for perform has hashcode: 8366806
    INFO: detached tool list getting prepared fo comp: Oracle Database 10g
    INFO: cfsession hashcode for exit only tools: 8366806
    INFO: hashcode for action: 10258484
    INFO: No of ExitOnly Tools: 0
    INFO: saving exit only tools ...
    INFO: no detached only tools in this session
    INFO: exit-only tools are created in single installation
    INFO: no. of sets of tools to be run: 1
    INFO: ca page to be shown: true
    INFO: exitonly tools to be excuted passed: 0
    INFO: Starting to execute configuration assistants
    INFO: Command = /u01/app/oracle/product/10.2.0/db_1/jdk/jre//bin/java -Duser.dir=/u01/app/oracle/product/10.2.0/db_1/network/jlib -classpath /u01/app/oracle/product/10.2.0/db_1/jdk/jre//lib/i18n.jar:/u01/app/oracle/product/10.2.0/db_1/jdk/jre//lib/rt.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/ewt3.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/ewtcompat-3_3_15.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/netcfg.jar:/u01/app/oracle/product/10.2.0/db_1/network/jlib/netcam.jar:/u01/app/oracle/product/10.2.0/db_1/network/jlib/netca.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/help4.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/jewt4.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/oracle_ice.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/share.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/swingall-1_1_1.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/srvmhas.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/srvm.jar:/u01/app/oracle/product/10.2.0/db_1/network/tools:/u01/app/oracle/product/10.2.0/db_1/jlib/ldapjclnt9.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/ldapjclnt10.jar:/u01/app/oracle/product/10.2.0/db_1/oui/jlib/OraInstaller.jar:/u01/app/oracle/product/10.2.0/db_1/lib/xmlparserv2.jar oracle.net.ca.NetCA /orahome /u01/app/oracle/product/10.2.0/db_1 /orahnam OraDb10g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp /cfg local /authadp NO_VALUE /nodeinfo rac01,rac02 /responseFile /u01/app/oracle/product/10.2.0/db_1/network/install/netca_typ.rsp
    Parsing command line arguments:
    Parameter "orahome" = /u01/app/oracle/product/10.2.0/db_1
    Parameter "orahnam" = OraDb10g_home1
    Parameter "instype" = typical
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = rac01,rac02
    Parameter "responsefile" = /u01/app/oracle/product/10.2.0/db_1/network/install/netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    Profile configuration complete.
    Profile configuration complete.
    Listener started at port:1521
    rac01...
    rac02...
    [oracle@rac01 ~]$
    Message was edited by:
    Bal

Maybe you are looking for

  • Import Video into PE4 from existing DVD

    I have a DVD of my son's wedding done be a professional videographer. He has a main menu and a scene menu. One choise on the main menu is "wedding summary" This plays a video that is highlights of the main video with the ambient audio replaced with m

  • Moving a Web page Off the top Banner

    Hi I'm trying to move a page so that it does not show up in the Top Banner that lists my pages and instead just have a button linking to that part of my site. How do I do this?

  • Configuration assistant "Oracle Notification Server Configuration Assistan

    Facing below issue on setup of RAC in vmware Note: Do not run the scripts simultaneously on the listed nodes. INFO: Starting to execute configuration assistants INFO: Command = /u01/crs/oracle/product/10.2.0/crs/bin/racgons add_config rac1.localhost:

  • Problem Connecting Airport Extreme to Sony BluRay Player

    I have a sony blu ray player (s370). I just purchased an Apple Airport Extreme. I live in an apartment complex where my internet is provided in my rent. As a result, I do not have my own modem..just a port in the wall. To get the airport express to w

  • Mandatory Field Vendor Classification  - CT04

    Hi, I've created Vendor Characteristic thru CT04. How to ensure the field become mandatory field. It means that, when user didnt enter values, the system will display "ERROR" message and force to enter value. I can see the "Entry required" under CT04