Cluster with one 2 Node RAC and a Single Instance using ASM

Hi there,
i am not sure with one planned installation and want to ask, weather i am on the right track.
Some Facts:
Clusterware 11g
ASM 11g
Database 10gR2
AIX 5.3
3 Machines
2 Storages DS4700
My Plan
On Node 1 and Node 2 we install a RAC Database for an ERP Software
On Node 3 we install a single Instance Database for a Logistic Software
So i will install on all three Nodes Clusterware and an 3 Instances ASM - Cluster
I create 2 Diskgroups, one for the FRA and one for the Data, both on Luns on the DS4700
The RAC-Database and the Logistic-Database are using the same Diskgroups.
Is this the way to go for this circumstances?
The alternative is, as far as i see
Clusterware on an 3 Servers
One 2 Node ASM for the ERP Software
one Single Node ASM for the Logistcs
4 Diskgroups, because of the 2 ASM-Database 2 for the RAC and 2 for the Single Instance.
Please give me some hints, which way i should prefer.
My tendence is going to the first alternative. I like the idea to share the Diskgroups over more than on Database because of easy administration.
The load of the 2 Databases are completly different, the logistc software will nearly do nothing compared to the ERP Software, so this should'nt be a problem.
But maybe i oversee something, so please do not hesitate to tell me, i am completly wrong ;)
Thanks a lot
Jörg

Chris Slattery wrote:
why clusterware on 3rd machine ?
I'd have separate DGs but that's just me.If you wish to install ASM you need OCS installed on the machine, even if it is just one node at all.
It is a kind of a dependency, no OCS, no ASM
cu
Jörg

Similar Messages

  • Switchover between primary RAC and standby single instance

    Hello All,
    I am using Oracle 11gR2.
    I am trying to do a switch over between primary database (RAC 2 nodes) and physical standby (single instance)
    If my Primary is single instance i was following the below steps:
    On the standby
    ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DISCONNECT;
    On the primary database:
    alter database commit to switchover to standby with session shutdown;
    shutdown immediate;
    startup nomount;
    alter database mount standby database;
    On the standby again:
    alter database commit to switchover to primary WITH SESSION SHUTDOWN;
    On the new standby:
    ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DISCONNECT FROM SESSION;now, and since my primary is RAC when i am trying switch over I am getting the below error:
    SQL> alter database commit to switchover to standby with session shutdown;
    alter database commit to switchover to standby with session shutdown
    ERROR at line 1:
    ORA-01105: mount is incompatible with mounts by other instancesPlus that when I want to apply the remaining steps (below step), should I do it on each instance alone? or is there anyway to do it using the srvctl command:
    alter database mount standby database;Regards,

    Hi,
    Since You are using 2 node RAc as primary, so for switchover operation you need to shutdown
    one database instance( Suppose instance 2).
    Suppose your node1:
    hostname is dcpdb1
    and node 2:
    hostname is dcpdb2
    and standby hostname is drpdb1
    So follow this steps for switchover .
    How to Switchover from Primary to Standby Database?
    Process:
    On the primary server, check the latest archived redo log and force a log switch.
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time
    FROM v$archived_log
    ORDER BY next_time;
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    Check the new archived redo log has arrived at the standby server and been applied.
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time, applied
    FROM v$archived_log
    ORDER BY next_time ;
    *########### Login dcpdb2 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time
    FROM v$archived_log
    ORDER BY next_time ;
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    Check the new archived redo log has arrived at the standby server and been applied.
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT sequence#, first_time, next_time, applied
    FROM v$archived_log
    ORDER BY next_time ;
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    *########### Login dcpdb2 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    *########### Login dcpdb2 as Oracle user #########*
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL>
    *########### Login dcpdb1 as Oracle user #########*
    SQL> ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY WITH SESSION SHUTDOWN;
    Database altered.
    SQL>
    SQL> shutdown immediate
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL>
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7751076184 bytes
    Database Buffers 7616856064 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO PRIMARY
    SQL>
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    SESSIONS ACTIVE
    SQL> alter database commit to switchover to primary with session shutdown;
    Database altered.
    SQL> shutdown immediate
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL>
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7717521752 bytes
    Database Buffers 7650410496 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    Database opened.
    *########### Login dcpdb1 as Oracle user #########*
    SQL> alter database open read only;
    Database altered.
    SQL> alter database recover managed standby database using current logfile disconnect;
    Database altered.
    *########### Login dcpdb2 as Oracle user #########*
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size 2184872 bytes
    Variable Size 7751076184 bytes
    Database Buffers 7616856064 bytes
    Redo Buffers 29409280 bytes
    Database mounted.
    SQL> alter database open read only;
    Database altered.
    SQL> alter database recover managed standby database using current logfile disconnect;
    Database altered.
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    SQL>
    *########### Login drpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    TO STANDBY
    *########### Login dcpdb1 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    SQL>
    *########### Login dcpdb2 as Oracle user #########*
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    SWITCHOVER_STATUS
    NOT ALLOWED
    SQL>
    *####################### Finish SwitchOver ########################*
    Check
    *########### Login drpdb1 as Oracle user #########*
    SQL> alter system switch logfile;
    SQL>
    SELECT sequence#, first_time, next_time
    FROM v$archived_log
    ORDER BY sequence#;
    SQL> archive log list
    *########### Login dcpdb1 as Oracle user #########*
    SQL>
    SELECT sequence#, first_time, next_time, applied
    FROM v$archived_log
    ORDER BY sequence#;
    SQL> archive log list
    *########### Login dcpdb2 as Oracle user #########*
    SQL>
    SELECT sequence#, first_time, next_time, applied
    FROM v$archived_log
    ORDER BY sequence#;
    SQL> archive log list
    Thanks
    Solaiman
    Edited by: 876149 on Apr 12, 2013 11:51 AM

  • 11gR2 dataguard using a primary 2 node RAC and a single standby

    Hi,
    I need to implement dataguard between 11gR2 RAC db to a single standby. How do I proceed?
    Secondly, I need to timely apply the archive log i.e I need the dataguard to be in SYNC mode only in the night and the standby in read only
    mode rest of the times. Can I achieve this using dataguard broker? If yes, can you please provide me the steps?
    regards,
    Ram

    Doing that would require jobs again.
    In your example:
    9 am:
    alter database recover managed standby database cancel;
    -- here you can actually specify anything greater 780 because of the cancel at 10 pm; this is just to make sure the archive logs are being shipped.
    alter database recover managed standby database delay=780 disconnect from session;
    -- and, if your requriement is still to have the standby open read only
    alter database open read only;
    10 pm:
    shutdown immediate;
    startup nomount;
    alter database mount standby database;
    alter database recover managed standby database cancel;
    alter database recover managed standby database using current logfile disconnect from session;
    with that setup:
    - your standby stops recovering at 9am
    - the archive logs of the primary will still be shipped to your standby side for any emergency
    - you'll have an open read only standby from 9am to 10pm
    - the archive logs will be real time applied from 10pm to 9am
    Note that this is just theory at the moment, I don't have a test set up like this. But it should give you an idea of what's possible and in what way you can accomplish your needs.

  • R12 Apps with 4 node RAC and 4 apps nodes - Post Install check list

    Hi All,
    We have a new Oracle Apps R12 instalaltion with 4 node RAC and 4 Apps nodes with load balancing and external web tier being done by an outside firm. We are assigned the responsibility of checking that everything has been configured properly both on the RAC side and Apps side. I haven't worked on RAC earlier. Please let me know what all need to be checked before approving the install done by the outside firm.
    Thank you!

    Please check below metalink notes
    RAC Assurance Support Team: RAC and Oracle Clusterware Starter Kit and Best Practices (Generic) [ID 810394.1]
    Using Oracle 10g Release 2 Real Application Clusters and Automatic Storage Management with Oracle E-Business Suite Release 12 [ID 388577.1]
    Using Oracle 11g Release 2 Real Application Clusters with Oracle E-Business Suite Release 12 [ID 823587.1]
    Oracle E-Business Suite and Oracle Real Application Clusters Documentation Roadmap [ID 745759.1]
    745759.1 Oracle E-Business Suite and Oracle Real Application Clusters Documentation Roadmap
    384248.1 Sharing The Application Tier file system in Oracle E-Business Suite Release 12
    387859.1 Using AutoConfig to Manage System Configurations with Oracle E-Business Suite Release 12
    406982.1 Cloning Oracle Applications Release 12 with Rapid Clone
    240575.1 RAC on Linux Best Practices
    265633.1 Automatic Storage Management Technical Best Practices
    Loadbalancer
    note 380489.1 Using Load-Balancers with Oracle E-Business Suite Release 12
    note 727171.1 Implementing Load Balancing On Oracle E-Business Suite - Documentation For Specific Load Balancer Hardware
    note 601694.1 How To Check Session Persistence On BigIP F5 And Cisco Ace Load Balancer Appliances
    note 603325.1 Using Cisco ACE Series Application Control Engine with Oracle E-Business Suite Release 12
    Installation R12
    note 761564.1 Oracle Applications Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86
    note 402310.1 Oracle Applications Installation and Upgrade notes Release 12 (12.0) for Linux (32-bit)
    note 559518.1 Cloning Oracle E-Business Suite Release 12 RAC-Enabled Systems with Rapid Clone
    note 735276.1 Interoperability notes E-Business Suite R12 with Oracle Database 11gR1
    Shared Applications Confiugurations:
    note 380483.1 Oracle E-Business Suite Release 12 Additional Configuration and Deployment Options
    note 384248.1 Sharing The Application Tier File System in Oracle E-Business Suite Release 12
    Edited by: Amigo on Dec 20, 2010 9:58 AM

  • HT1409 I have done this but it does not work with one of my albums and I dont know why??

    I have done this but it does not work with one of my albums and I dont know why??

    That would be it. Sometimes you can tweak the album & artist names enough for iTunes to download matching art from the store, or you could add a bonus track featuring 1 second of silence and attach artwork to that, or you could convert the files to Apple Lossless.
    tt2

  • Cluster with one storedge

    is there any possibility to run sun cluster with one storedge?
    if yes pls post me a link to some doc about the config.
    scenario :
    <node0> ----scsi----<storedge3120>-----<node1>
    |_____|
    Thanx a lot

    Hi,
    This can be done have a look at the following.
    http://docs.sun.com/source/816-7956-13/ch04_cable.html#10046
    HTH
    Tom

  • How do I import my photos from my iPhone to iPhoto, when I press import I just get a message saying there is something wrong with one of my photos and disconnects my iPhone.

    How do I import my photos from my iPhone to iPhoto, when I press import I just get a message saying there is something wrong with one of my photos and disconnects my iPhone.

    I couldn't find Image Capture at my first try, butI will try again. Do you inow how I can find the corrupted photo on my iPhone? Im a bit lost..
    Sorry, I just noticed, I made a mistake. "Image Capture" is in the Applications folder, not Utilities. And it may have a different name on your Mac, if your system language is not English:  Look for the icon with the camera:
    When Image Capture can import from your iPhone, spilt the folder with the imported photos in several small subfolders and try to import them separately to iPhoto. This way, you can identify a subset of photos with the corrupted one.
    Then try to import from that small subset one by one, until you hit the culprit. And then delete that photo or video from the phone.

  • I just updated Safari with version 5.1.10 and now I cannot use "open location".  Anyone else having this problem and are there any solutions?

    I just updated Safari with version 5.1.10 and now I cannot use "open location".  Anyone else having this problem and are there any solutions?

    Ok ...
    Try troubleshooting extensions and third party plugins.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test. If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow all other plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • Cannot print watermark and Annotation with a combination of OS and application software you use printing is cancelled

    cannot print watermark and Annotation with a combination of OS and application software you use printing is cancelled

    Hello,
    This forum is for discussions and questions regarding profiles and Microsoft's recognition system on the MSDN and TechNet sites. It is not for products/technologies.
    As it's off-topic here, I am moving the question to the
    Where is the forum for... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?&lt;=\G.{2})'|%{if($_){[char][int]&quot;0x$_&quot;}})

  • My iphone has a problem, it simply does not work, the screen is all black with a few colorful scribbles and images blend, I used it only took 6 days and returned to service when operated only 7 more days and it happened again the same thing, what do I do?

    My iphone has a problem, it simply does not work, the screen is all black with a few colorful scribbles and images blend, I used it only took 6 days and returned to service when operated only 7 more days and it happened again the same thing, what do I do?

    Reset the PRAM
    Reinstall the operating system from the dvd (you will not loose your data)

  • How to add a second database along with existing two node RAC environment

    Hi,
    I was wondering if anyone can help me with this.
    My Environment:
    1. Two node RAC Cluster database (11.2.0.2) with ASM running perfectly (Oracle Sid = test-1)
    2. I have installed a second single instance db on node 2 (Oracle Sid = test-2) with NTFS file system for datafiles
    3. Database is up and running, but I am not able to connect it from any client.
    4. I am getting ORA-12514:  TNS:listener does not currently know of service requested in connect descriptor
    5. Database (test2) is registered with grid LISTENER
    5. TNSPING from client machine response is ok
    Am I missing something here, happy to provide more info if requested.
    Thanks,
    PS

    C:\Users\root.test_prod>lsnrctl
    LSNRCTL for 64-bit Windows: Version 11.2.0.2.0 - Production on 23-FEB-2012 11:58:05
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Welcome to LSNRCTL, type "help" for information.
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 64-bit Windows: Version 11.2.0.2.0 - Production
    Start Date 18-FEB-2012 19:51:47
    Uptime 4 days 16 hr. 6 min. 24 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\app\11.2.0\grid\network\admin\listener.ora
    Listener Log File C:\app\11.2.0\grid\log\diag\tnslsnr\IRIS11G-DB-2\listener\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\LISTENERipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.30.0.202)(PORT=1520)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.30.0.215)(PORT=1520)))
    Services Summary...
    Service "+ASM" has 1 instance(s).
    Instance "+asm2", status READY, has 1 handler(s) for this service...
    Service "test-11gRAC.test_prod.internal" has 1 instance(s).
    Instance "test-11gr2", status READY, has 1 handler(s) for this service...
    Service "test-11gRXDB.test_prod.internal" has 1 instance(s).
    Instance "test-11gr2", status READY, has 1 handler(s) for this service...
    Service "irisapps.test_prod.internal" has 1 instance(s).
    Instance "test-11gr2", status READY, has 1 handler(s) for this service...
    Service "test-2" has 1 instance(s).
    Instance "test-2", status READY, has 1 handler(s) for this service...
    Service "test-2XDB" has 1 instance(s).
    Instance "test-2", status READY, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL> service
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER)))
    Services Summary...
    Service "+ASM" has 1 instance(s).
    Instance "+asm2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:1322 refused:0 state:ready
    LOCAL SERVER
    Service "test-11gRAC.test_prod.internal" has 1 instance(s).
    Instance "test-11gr2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:1829 refused:0 state:ready
    LOCAL SERVER
    Service "test-11gRXDB.test_prod.internal" has 1 instance(s).
    Instance "test-11gr2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1022 state:ready
    DISPATCHER <machine: IRIS11G-DB-2, pid: 4496>
    (ADDRESS=(PROTOCOL=tcp)(HOST=IRIS11G-DB-2.test_prod.internal)(PORT=57695))
    Service "irisapps.test_prod.internal" has 1 instance(s).
    Instance "test-11gr2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:1829 refused:0 state:ready
    LOCAL SERVER
    Service "test-2" has 1 instance(s).
    Instance "test-2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    Service "test-2XDB" has 1 instance(s).
    Instance "test-2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1022 state:ready
    DISPATCHER <machine: IRIS11G-DB-2, pid: 9340>
    (ADDRESS=(PROTOCOL=tcp)(HOST=IRIS11G-DB-2.test_prod.internal)(PORT=58653))
    The command completed successfully
    LSNRCTL>

  • Clone multi-node RAC and ASM to single node

    Hi everyone.
    I need clone system with 3 application server and 2 oracle database RAC and ASM to single-node. The operating system is RHEL 5.
    I see some metalink notes, but we can't found nothing. I find notes with multi-node to single-node, but nothing with RAC to non-RAC.
    The eBS version is 11.5.10.2 and database version is 10.2.0.3
    Is possible this clone?
    Thanks very much.

    Hi User;
    Please follow below and see its helpful:
    EBS R12 with RAC and non-RAC
    Re: RAC to single instance ebs R12
    Re: Clone Oracle Apps 11.5.10.2 RacDB to Non-RAC DB
    Re: CLONING R12 RAC to NON RAC CLONING giving error RMAN-05517 temporary file
    [b]Migrating the DB-Tier (DB and CM) to Two node non RAC cluster[/b]
    Also check:
    http://www.oracle.com/technology/pub/articles/chan_sing2rac_install.html
    Regard
    Helios

  • 4 node RAC and services

    Hi All,
    We currently run 5 databases on a 5 node RAC.. 11.2.0.2 GI and a mix of 11.2 and 10.2 databases. Obviously, services are defined for use by the application based on load on each node..
    I am seeing something strange..
    CLV1P_COMMON is a service created to run on CLV1P2 instance but during my tests over the weekend, the service was coming up on different node each time.. Why is this behavior ? Is this expected ? My understanding was that the service should run only on the node it services.. and in the case, where you specifiy PREFFERRED to more than one instance, it uses them randomly.. ( load balancing )
    Can anyone guide me please ?
    Thanks
    /oracle/dba/output/STR1P/rman
    camgmolpdb01 [CLV1P1]-> srvctl status service -d CLV1P
    Service CLV1P1.aaaaaaaaaaaa.com is running on instance(s) CLV1P1
    Service CLV1P2.aaaaaaaaaaaa.com is running on instance(s) CLV1P2
    Service CLV1P3.aaaaaaaaaaaa.com is running on instance(s) CLV1P3
    Service CLV1P4.aaaaaaaaaaaa.com is running on instance(s) CLV1P4
    Service CLV1P_COMMON.aaaaaaaaaaaa.com is running on instance(s) CLV1P2
    /oracle/dba/output/STR1P/rman
    camgmolpdb01 [CLV1P1]-> srvctl config service -d CLV1P -s CLV1P_COMMON.aaaaaaaaaaaa.com
    Service name: CLV1P_COMMON.aaaaaaaaaaaa.com
    Service is enabled
    Server pool: CLV1P_CLV1P_COMMON.aaaaaaaaaaaa.com
    Cardinality: 1
    Disconnect: false
    Service role: PRIMARY
    Management policy: AUTOMATIC
    DTP transaction: false
    AQ HA notifications: false
    Failover type: NONE
    Failover method: NONE
    TAF failover retries: 0
    TAF failover delay: 0
    Connection Load Balancing Goal: LONG
    Runtime Load Balancing Goal: NONE
    TAF policy specification: NONE
    Edition:
    Preferred instances: CLV1P2
    Available instances: CLV1P1,CLV1P3,CLV1P4
    This is the command I used to create the service
    srvctl add service -d CLV1P -s CLV1P_COMMON.aaaaaaaaaaaaaa.com -r "CLV1P2" -a "CLV1P1,CLV1P3,CLV1P4" -P BASIC -l primary -y AUTOMATIC -e SELECT -m BASICThanks in advance
    Edited by: USER101 on Oct 15, 2012 1:59 PM
    Edited by: USER101 on Oct 15, 2012 2:01 PM

    Hi,
    preferred and available is normally only evaluated during startup of the service.
    So if you started you server in the order 1 then 2,3,4 as a result the service will get started on node 1 and not on the preferred node 2. Reason: Service is defined that it should start at least one instance. At the moment of startup there was only server 1 active, hence it is starting there. If node 2 (preferred) started after that, it is not evaluated, since Oracle does not want to move a service simply because of startup.
    If then node 1 is rebooted, the service will get failed over. to the pereferred instance. If you then stop instance on node 2 again it will be started on a different node (not fix).
    Important: The service does not fail to preferred instance, only if it is up.
    As a workaround (if you need the service always to be started on node 2 if available and only run on another instance, when node 2 is not up) you can do this with a FAN Callout script.
    Regards
    Sebastian

  • Application responds FASTER with one of two RAC instances DOWN.

    Anyone in the forum ever had a case where a twon-node RAC database's application responds fast when only one of instances are alive?
    We have performed serveral tests, and the evidence is clear: if both instances are running, the response time is slower than with only one instance up. It doesn't matter which of the two that are up though.
    The application is a GIS tool, which means that there may be lots of calculations in the database (I assume). I tried to increase the sga_target parameter slightly, but there was no change in response time. Unfortunately I cannot increase the memory as much as I want to because of hardware limitations. Currently the database has a sga_target of 1024M on both instances.
    Any idea that could point me in the right direction would be appreciated.
    - Vegard

    Yes I do, confirmed. It is a regular ehternet connection, 1 GB, with a gigabit swich between them as recommended by Oracle.
    We have also confirmed that the application using the RAC database, does not like the concept of RAC - it performs very well with one instance alive. As soon as we open the other one, the response time increases considerably.
    This lead me, too, to believe that there's a problem with the RAC intercommunication. My collegue which is a sysadmin has suggested to look into whether or not "jumbo frames" can be enabled. Our network cards do support this setting, so we might buy some performance gain there.
    The application using the database is a GIS-application, so there is a lot of graphics being generated by the data in the database and a SELECT involves lots and lots of tables. The transactions however, involves only a few tables. So there shouldn't be any I/O issues here, also confirmed when looking at the performance graphs in EM.
    I appreciate your comments.
    - Vegard

  • Single node file system to 3 node rac and asm migration

    hi,
    we have several utl_file and external table applications running on 10.2 single node veritas file system. and we want to migrate to 3 node RAC ASM environment. what is the best practices in order to succeed this migration during this migration. thanks.

    1. Patch to 10.2.0.3 or 10.2.0.4 if not already there.
    2. Dump Veritas from any future consideration.
    3. Build and validate the new RAC environment and then plug in your data using transportable tablespaces.
    Do not expect the first part of step 3 to work perfectly the first time if you do not have experience building RAC clusters.
    This means have appropriate hardware in place for perfecting your skills.
    Be sure, too, that you are not trying to do this with blade or 1U servers. You need a minimum of 2U servers to be able
    to plug in sufficient hardware to have redundant paths to storage and for cache fusion and public access (a minimum of 6 ports).
    And don't let any network admin try to convince you that they can virtualize the network paths: They can not do so successfully
    for RAC.

Maybe you are looking for

  • The TV show could not be used because the original file could not be found

    "The TV show “Blah-blah ep.23” could not be used because the original file could not be found. Would you like to locate it?" I know this problem is listed (and unanswered) from quite a few users in the forums for song files, but I haven’t found any t

  • How can I add a "search" field for web pages content-not blogs or podcasts?

    This seems to be such a basic function, I can't believe I'm having so much trouble. I don't have a blog or a podcast on my new website that I'm in the process of designing. So how do I allow people who'll visit my site to search there for specified c

  • Oracle 32 on Windows  64

    I'm new in Oracle. Today i see that a client have a Oracle 10g 32 bit installed on Windows 64 bit. He say me that oracle is not increase memory, and when it try with value close to 3,5 GB, the oracle give a error. I think that the fact of Oracle is 3

  • TS1702 I love my various Apple products, but "Pages" word processor: not so much

    Just purchased "Pages" because my prior word processor on my new iPad decided to stop sending emails It worked for a few months, then decided to hate me and do strange things. I am already having this problem with Pages, after just 5 minutes of buyin

  • Home Sharing Just Won't Connect

    Good morning all, I just want to add my voice to the carcophony with regards iTunes Home Sharing setup to my iPad and my new ATV2. This past weekend we bought a new ATV2 to go with the new TV. Got home, unboxed it all and plugged it all in. It all se