Question about DBCA generate script o create RAC database 2 node cluster

Question about creating two node RAC database 11g after installing and configuration 11g clusterware. I've used DBCA to generate script to create a rac database. I've set
environment variable ORACLE_SID=RAC and the creating script creates instance of RAC1 and RAC2. My understanding is that each node will represent a node, however there should only be one database with a name of 'RAC'. Please advise

You are getting your terminology mixed up.
You only have one database. Take a look, there are one set of datafiles on shared storage.
You have 2 instances which are accessing one database.
Database name is RAC. Instance names are RAC1, RAC2, etc, etc.
Also, if you look at the listener configuration and if your tnsnames is setup properly then connecting to RAC will connect you to either one of the instances wheras connecting to RAC1 will connect you to that instance.

Similar Messages

  • Oracle not available while creating RAC database

    Hi,
    I have got 2node Oracle 10gR2 RAC installed on solaris 10 and am using NFS for keeping clusterware and database files.
    cluvfy with pre dbinst option ran successfully.
    Now while creating RAC database through DBCA, I am getting Oracle not Available error message. No relevant message written in alert log.
    Can you suggest me as to what to do to resolve the issue please.
    Thanks in advance.

    Do you see any kind of logs under $OH/cfgtool*/dbca/..may be it will help with some pointers. If that doesn't give any useful information, try to startup nomount the instance using a sample init.ora file to see if reports anything in the alert log.
    Thanks
    -Chandra

  • Who can kindly give me the full scripts to create oracle9i database in UNIX

    Who can kindly give me the full scripts to create oracle9i database(and instance) in UNIX Aix?
    Thanks so much

    Check this:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/create.htm#ADMIN002
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/create.htm#1003614

  • Is it possible to create a two node cluster with SQL server 2012 STD on node1 and SQL Server 2008 ENT on node2 on a Windows server 2012?

    Hi All,
    Is it possible to create a two node cluster with SQL server 2012 STD on node1 and SQL Server 2008 ENT on node2 on a Windows server 2012?
    aa

    I think you are confused with the way cluster is installed. Installing SQL on cluster is a two step process. On first node you create a new SQL cluster and on second node you need "AddNode" action.
    Same edition media has to be used in above two operation.
    you can install two separate instances with one enterprise and one standard.
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • A few questions about indesign CS3 scripting

    1.     I often do one thing that pressing a Ctrl + ~, followed by a Ctrl + Shift + E. So I have spent one day trying to write a script today but failed to. I am going to be insane sooner or later.
    I have tried this line "app.menus[0].menuElements[10].menuElements[1].shortcutKey" for "Ctrl + Shift + E". This line is the farthest point I can get. It doesn't work.
    2.     if (app.menuActions.item (5262).name == "Stop BlackLining" || app.menuActions.item (5262).name ==  "Start BlackLining")
    is not equal to
    if (app.menuActions.item (5262).name == ("Stop BlackLining" || "Start BlackLining"))
    why?
    3.     I try this line "app.menuActions.item (5262).name" in ESTK. JavaScript Console reads "Start BlackLining".
    When I select and click the menu "Start BlackLining", the menu's contents changes to "Stop BlackLining". See below.
    Then I try the line refered above. JavaScript Console reads "Start BlackLining" again. As you can see, I consider that it should be "Stop BlackLining". The two different menus use the same index in Indesign.
    But when I only click their parent menu "BlackLining" once and then try the line, JavaScript Console reads "Stop BlackLining". That's normal. But how come? Do I click their parent menu to refresh all the menus to make it normal?
    Thanks in advance.

    Thanks for the tips. When I write a script, I will open all the Help Document, Object Model Viewer, Core JavaScript Classes and ScriptUI Classes.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}There are some reasons to avoid dealing with selections in scripts, but perhaps in this case it is correct to do so. Then you would use app.selection[0].fit(FitOptions.CENTER_CONTENT);
    After reading instruction in OMV, I can't figure it out what exactly "app.selection[0].fit(FitOptions.CENTER_CONTENT);" does.
    As the "Ctrl+Shift+E" is a shortcut customized for starting or stopping the function of the Plug-In "BlackLining" (The  Plug-In's name is BlackLining).
    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}In JavaScript you should use === and !== instead of == and !=, unless you want to be tripped up by weird type coercion problems.
    But anyhow, hwy would you think these would be equivalent?
    First, let's write out your first case parenthesized according to the JS precedence rules, so there is no ambiguity:
    ((app.menuActions.item(5262).name=="Stop BlackLining") || (app.menuActions.item(5262.name == "Start BlackLining"))
    Hopefully that's what you expect. Let's suppose it is the start case. Then that will evaluate to:
    ((false) || (true))
    which evaluates to true.
    But your second case is nothing like that.:
    (app.menuActions.item (5262).name == ("Stop BlackLining" || "Start BlackLining"))
    So first the interpreter evaluates ("Stop BlackLining" || "Start Blacklining"), that is, it takes the logical OR of two strings. This is not a very useful thing to do. It will always return the first one. That is ("a" || "b") always evalutes to "a". So then you have:
    (app.menuActions.item (5262).name == "Stop BlackLining")
    and if we're in the start case, then it is: false.
    I think there is no way to make it short, right?
    In fact, it's hard for me to find material of learning script t just execpt serveral PDFs (about basic of script) was added when the software was installed. I learned the C Language before. I try to remember the similar usage in C Language. Maybe I am wrong.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}As for your third question, well, the language is a bit confused, but menus can change their appearance when they are clicked on. That's a good reason not to use menu names or positions in scripts. Doesn't this blacklining extension (whatever it is) define a stopBlackLining() function somewhere in the DOM? Or someting like that?
    BTW, "BlackLining" is a Plug-In. Is Plug-In equal to extension in English? And DOM is short for document object model? It seems there are a lot more for me to learn.
    I want to tell you what kind of script I want to write. Make it simple. Forgiving my poor English.
    Let's get it started.
    I have to open many documents at the same time and then shut down the plug-in "BlackLining". So I have to press the shortcut "Ctrl+~", which means selecting the next document, and then press the shortcut "Ctrl+Shift+E", which is set by me and means starting or stopping the plug-in.
    When I finished some operions, which can't be proceeding while the plug-in "BlackLining" is on, I have to press the shortcut "Ctrl+~", and then press shortcut "Ctrl+Shift+E" to start "BlackLining".
    I have to do it over and over again day after day. I am almost insane. (Problem one)
    So, I want to write a script, let the computer do it for me. Further more, the shortcut "Ctrl+Shift+E" is used for both starting and stoping "BlackLining". Can't be set separately.
    At the same time, I don't know whether the "BlackLining" is on or not. What if it's off? Maybe old documents are on, some subsequent are off. See below:
    So I have to check the state before I press "Ctrl+Shift+E". (Problem two and three)
    Can you help me out? Thanks.
    If you need "BlackLining", you can download demo at http://www.blacklining.com/.

  • Question about  SAP client setting when create new connection in CR2008

    Dear All,
    I have a question about SAP client setting in Crystal Report 2008 when I try to create a new connection use SAP OpenSQL(SAP Table,Cluster,or Function).
    I have a SAP IDES environment with 5 clients.
    While I try to create a CR standard report use SAP OpenSQL, I entered 800 into Client field in u201CUser logon credentialsu201D. The connection can be created and I can get table list. After I built a report ,I can not get data from IDES client 800, but I can get data from client 000.
    I am sure client 800 has data.I checked client 800 table with Tcord se16.
    I also did other tests and felt confused a lot.
    Even inexistent client, such as u201C00u201Dand u201C8000u201D can be used for creating connection.
    I just want to know how can I get data from client 800.
    Thanks for your kindly help!
    Wayne

    Dear Ingo,
    Thanks for your reply!
    I am not sure about your suggestion clearly. What's your mean all the authorizations to use CR?
    Maybe I should clarify my operations.
    I logon CR2008 as administrator and created two SAP connections with different client.
    There is a table named "/BEV3/CHBALLG" be showed in these connections.
    I checked  clients "000" and "800" both have data in the table.
    I can use client 000 connection create report and get right data, but the report base on client 800 connection could not get data.
    If change to another table,such as "/SAPDMC/LSOFIL", I can get data both form these connections.
    I found one thing is very weird. Client "00" and "8000" do not exist in my IDES environment, but I can use them for creating connection.
    May I have your further suggestions?
    Wayne

  • Create RAC Database Connection in Sql Developer

    Hi All,
    Can you please let me know how to create a new connection for a RAC Database. When we use the scan IP and service name, it always displays the network adapter could not establish the connection, even though the listener and database are up and running. After repeatedly, trying atlease 20 times, then it will connect to the database. There are no issue while connecting to a single instance database.
    Thanks & Regards,
    Krishna

    Hi Krishna,
    You don't give any details about version numbers but, in general, the Basic connection type should work -- there is no need to use TNSNames. If you can connect to the RAC system via SQL*Plus with an EZConnect string, one would hope the same host/port/service works in SQL Developer for a Basic connection type. But that may be just a hope, I suppose, depending on your overall configuration for SCAN. Or perhaps you pass the full TNS descriptor to connect to SQL*Plus?
    In case of long thin RAC JDBC URL, presumably you mean including the full TNS descriptor in the url. I really did not find very much on the forums regarding SCAN, but searching more widely on the internet I note someone resolving a JDBC-specific issue (where SQL*Plus connects just fine) with comments like this: +"The host name in the connectiong string be the same as the init.ora parameter remote_listener and it should also match to the SCAN name. We should not include any domain names with SCAN name , remote_listername and with HOST setting in connecting string"+. So apparently you have to be very careful with the url specification.
    Hope this helps,
    Gary

  • While creating RAC database on IBM AIX 5.3 following errors occur.

    Hi,
    I am creating a Oracle database on following configuration IBM AIX 5.3 box:
    OS: IBM AIX 5.3
    DB: Fresh installed Oracle 9.2.0.1 upgraded to Oracle 9.2.0.7 (Patch)
    While creating a RAC database on the above server i got following errors:
    ORA:00603 : ORACLE SERVER SESSION TERMINATED BY FATAL ERROR
    ORA-27504 : IPC error 380 OSD context
    ORA-27300 : OS system dependent operation : if_not_found failed with status:0
    ORA-27301 : OS failure mesage: error 0
    ORA-27302 : failure occured at:skgxpbaddr9
    Licence high water mark = 0
    Can any 1 help me out.Are the above error related to OS or something is wrong with the OS cluster / RAC. I tried creating single instance database on either of the server which are in cluster, no success.
    Also 1 more thing i would like to add is that iam able to create single instance database on server which are not in cluster.
    Any help regarding the above error is appreciated.

    This is a bug (for patchsets 9.2.0.6 and higher), see metalink:
    UNABLE TO START RAC INSTANCE AFTER APPLYING PATCHSET 9.2.0.6 ON AIX
    Note:300218.1
    Werner

  • Refresh new created RAC databases with expdp dmp got SCN error

    Hi, I did expdp full on a single instance database on AIX and scp to the new created LINUX RAC databases and ran a impdp full.
    However I saw the following error:
    Processing object type DATABASE_EXPORT/SYSTEM_PROCOBJACT/PRE_SYSTEM_ACTIONS/PROCACT_SYSTEM
    Cannot set an SCN larger than the current SCN. If a Streams Capture configuration was imported then the Apply that processes the captured messages needs to be dropped and recreated. See My Oracle Support article number 1380295.1.I checked support.oracle.com, that note is not existed.
    Can anybody help me ? I would like to know if this is the error I can ignore.
    Thanks in advance.

    What user was used to perform expdp and impdp ? Pl note that "/ as SYSDBA" should not be used. Pl see the first "Note" sections here
    http://docs.oracle.com/cd/E11882_01/server.112/e22490/dp_export.htm#i1012781
    http://docs.oracle.com/cd/E11882_01/server.112/e22490/dp_import.htm#i1012504
    HTH
    Srini

  • Creating a Two Node Cluster

    Good afternoon,
    I'm looking to build/create an inexpensive two node cluster. I have a SLES11SP1 server that is running XEN as a virtual hosting server, I run about five servers in a virtual environment. I have three USB drives set up to host my Guest servers, what I would like to do is to purchase another USB drive, so that I can use that as an iscsi/SAN server location, it would be 2TB in size, and then I would build my new servers making them cluster enabled. They should then be able to "see" the SAN/iscsi/storage location.
    Does anyone have any further suggestions?
    Thanks
    -DS

    Originally Posted by gleach1
    while I wouldn't recommend running servers off USB drives (unless this is for testing), I don't see any issue in doing it but the performance may not be fantastic
    I really appreciate your responding back and assisting in this testing. This cluster is for testing only, I have a small server farm in my basement, and I have a customer that is using clustering and I would like to at least be able to have something to test with
    I've actually run a test cluster off a USB drive using vmware workstation before and it seemed to run fine just as a test system
    If you set up your xen host as an iscsi server, use the USB disk as the storage you present to the guests and set them up with iscsi initiators it should work like any other iscsi san would, obviously a touch slower...
    Is there some documentation that explains how to do the iscsi server setup that you described? I have the "Configuring Novell Cluster Services in a XEN Virtualization Environment" but I really don't see anything about the iscsi initiator setup, I was going to add the USB drive as a /storage volume on the XEN host, and then point the cluster to that? I will also be adding a third card to handle the clustering network.

  • Question about swapping Hard-Drive​s/Creating Recovery Discs

    I have a laptop, Toshiba Satellite C655-S5082, with Windows 7 Home Premium 64-Bit OEM Operating System already installed on it so it did NOT come with an Installation or Recovery disc.
    My problem here is two-fold... First I would like to change the hardware on the PC by changing Hard-Drives from the one that came with the laptop to a large capacity one however since the laptop came with the Operating System already installed onto it I can not install it onto the new Hard-Drive (which for all further purposed we will call Hard-Drive B) now I thought that I could create the recovery discs using Toshiba's Recovery Media Center to create the 4 DVDs however I do not even know if this will help at all since Hard-Drive B does not have a recovery partition on it.
    This however is where my second problem comes into play, when I try to create the recovery discs using the Recovery Media Center I insert the DVD and begin the burning process, however about 75% of the way through the first disc the program slows down and a window pops up asking me if I would like to open the disc with Windows Explorer as if it has just recognized the disc again, I exit out of this and it comes up a few minutes later with an error code of 020150-20-0000000 and a message stating it can not read a file located within the ZZImages directory and then crashes, freezes and I have to end the process via the Task Manager then eject the disc via Windows Explorer 'My Computer' link.
    As you can see my problem is two fold so my questions to the Toshiba Support Team/Administration are...
    1. If I insert the new HDD into the laptop and begin using the recovery discs created via the Recovery Media Center will it be able to install the OS to that HDD and allow the OEM Product Key to be used to verify the OS?
    2. If I can do the above process how do I fix the Recovery Media Center application from crashing and effectively ruining my DVD's, so that I may create the proper recovery dics?
    3. If I can't do the above process due to the Recovery Partitions not being located on that new Hard Drive is there a way to copy and or transfer that Recovery Partition to the new Hard Drive so that the recovery discs do work?
    4. If neither of the above processes work will Toshiba be willing to send me a Windows 7 Home Premium 64-Bit OEM Installation disc via the mail or the .iso/.img file of the disc via e-mail so that I may burn them to a disc myself and install the OS onto the new Hard Drive?
    I do have the appropriate Product ID/Product Key for the OEM OS as well as the Serial Number of the specific laptop itself. Please get back to me as soon as possible. Thank you!

    Satellite C655-S5082 
    create the recovery discs ... comes up a few minutes later with an error code
    This sometimes occurs because of the media. Try using a disc from a different source.
    Follow the instructions in the section Creating recovery DVDs/media, which begins on p. 68 of the User's Guide.
       Satellite C640/C650 Series User’s Guide 
    I do not even know if this will help at all since Hard-Drive B does not have a recovery partition on it
    It doesn't make any difference what's on hard drive B. All of it will be replaced.
    For this, see the section Restoring from recovery DVDs/media, which begins on p. 71 of the User's Guide. You want to recover to "out-of-box state."
    After you have restored to the new hard disk, it will contain everything that the original had, including even all the recovery partitions. So you will even be able to burn recovery discs again from the new hard drive.
    ..the OEM Product Key
    The version of Windows which is restored (not installed) to the new hard drive is pre-activated. You won't need to fool around with the product key.
    ..will Toshiba be willing to send me a Windows 7 Home Premium 64-Bit OEM Installation disc
    If all else fails, you can always order recovery discs from Toshiba directly.
       Order Toshiba Recovery Media
    Your questions indicate that you do not understand the procedure above. If my explanation is insufficient, please feel free to ask for clarification.
    questions to the Toshiba Support Team/Administration
    One more thing. There are no Toshiba support folks here. We are all users just like you.
    -Jerry

  • Question about the java files which created by Web Dynpro

    After I create a new project under Web Dynpro, there is no any java file is generated.
    Now I create a new application in the project with the following names:
    application name: QuizApp
    package name: com.sap.tc.webdynpro.tutorials.quiz
    component name: QuizComp
    window name: Quiz
    view name: WelcomeView.
    Now, 5 java files are generated under the package:
    QuizComp.java,
    WelcomeView.java,
    QuizCompInterface.java,
    QuizInterfaceView.java
    QuizCompInterfaceCfg.java
    Can someone tell me what do these file mean? For what purpose?

    1)QuizComp.java -
      this is the source file for whatever you code inside the Component Controller ,
    2)WelcomeView.java -
    you get one java file for each view you create,
    3)QuizCompInterface.java -
    represents the public "face" of your component. If this webdynpro DC is used by another DC, the other DC can only "see" the methods present in this java class
    4)QuizInterfaceView.java    -
    this is to represent your view assembly (window and any views as part of it) when you want to embed UI of this DC in another DC
    5)QuizCompInterfaceCfg.java -
    (advanced concept)
    P.S: A java file is created for each Custom controller you create also. And many other classes get created too (which probably you dont need to bother about) but they require for WebDynpro concept to function properly i.e a framework
    Hope that clears things.
    Regards,
    Rajit

  • About dbca,i can't create database!

    i installed oracle9i(9.2.04) on RHEL4,no error exist.
    but when i have created database with dbca,there are no *.ora file in {ORACLE_BASE}/admin/{db_name}/pfile,and no control file and datafile in {ORACLE_BASE}/oradata/{db_name}/.
    i execute dbca again,there is no database,because there is no configure option,only create database and template manage options.
    i don't know why
    thanks.

    can u check in this path /u01/app/oracle/product/9.2.0/dbs/

  • A question about accessing elements of dinamically created components

    hi, I've created a component called User_Tab. This has a
    label inside called "label_IDUser";
    Now, the problem is that when I dinamically instantiate the
    component (on the root), It seems that I cannot change the text
    property of the label:
    //inside a cicle for (for a=0;a<3;a++){
    this.attachMovie("User_Tab", "mc_UserChannel"+a,
    this.getNextHighestDepth(), {_x:x_Pos, _y:y_Pos});
    this["mc_UserChannel"+a].label_IDUser.text = "Hello";
    //end cicle for
    If i trace the property for the first movie
    trace("ECHO:" + mc_UserChannel0.label_IDUser.text); //
    I get the expected result. But this result DOES NOT DISPLAY
    IN THE MOVIE (which gets attached but whose label remains empty)...
    Thanks in advance!
    Davide

    No, no mask...the problem seems to be that I cannot reach the
    object...If I drag the object "User_Tab" on the stage instead of
    using attachMovie to create it dinamically, it works...When I use
    attach movie, it does not. But i have to put that object on the
    stage dinamically.

  • Question about LabVIEW generated DLL's

    Hello,
    I want to try programming games in either JAVA or FLASH.
    What I want to know is if I can use the LabVIEW generated DDL's for use in my games, without having to need the LabVIEW runtimes installed.
    (in other words, are the LabVIEW generated DLL's, stand alone DLL's as generated in for example C/C++ or other programming languages?) 
    Second, how good is LabVIEW in converting it's code into a DLL. Can I make complicated algorithms, or are just simple functions allowed.
    Hope you guys can spare a few words on this topic.
    Sincerely,
    Heinen  
    The Enrichment Center is required to remind you that you will be baked, and then there will be cake.

    Hello dan_u and thank you for your quick reply.
    If the LabVIEW Runtimes are needed to use the DLL's, that is not a good option for me then. I eventually want to distribute my games over the internet, and having to sent the LabVIEW runtimes with the games is just not an option.
    To bad, I'm better in programming stuff in LabVIEW then in writen C++ like code.
    Sincerely,
    Heinen 
    The Enrichment Center is required to remind you that you will be baked, and then there will be cake.

Maybe you are looking for