Oracle Versions and RAC

We are considering running Oracle 10g and 11g RAC on the same cluster.. wondering if anyone has tried it before ? If yes, any recommendations ?
Thanks,
G

user10255282 wrote:
Cost is the big factor. We have certain environments that have no intention of moving to 11.. but some do. Cost moves around. This is simply trading one kind of cost for another. Especially if all environments are covered by an Oracle Support contract. Then the cost is not Oracle related.
But that ultimately is a PHB decision.
Instead of buying dedicated RAC clusters for the offending ones.. its a thought to run 2 versions on the same servers... ofcourse with the higher CRS.However, yes you can run run a mix ... as Dan says, not necessarily recommended. MUST use highest available CRS and be very careful that the CRS supports all version of the DB.
(And plan on having your interconnect flooded.)
I highly recommend testing the bejazis out of it to verify your shop can indeed handle the configuration.

Similar Messages

  • How to fine the oracle version and bit info?

    I just want to find out the
    Oracle version
    Bit info (32 or 64....)
    and other system configuration about oracle
    Please help

    Duplicate post:
    how to fine the oracle version and bit info?

  • What is difference between Oracle version  and DB version.

    What is the difference between Oracle version and DB Version?
    How we came to know about the installed version through SQL query.

    SQL> select * from v$version;
    BANNER
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    PL/SQL Release 8.1.7.0.0 - Production
    CORE 8.1.7.0.0 Production
    TNS for Linux: Version 8.1.7.0.0 - Development
    NLSRTL Version 3.4.1.0.0 - Production
    SQL>
    Joel P�rez

  • Advis to newbie for Oracle version and tutorial

    Hello All,
    I would like to learn Oracle and had never had the opportunity to use it. I am now deciding to download oracle for educational purpose and train myself.
    I read that the recent release was oracle 11g and noticed more support online for 10g. Can you kindly advise for a new beginner which version will best suit me to learn oracle (interested in dabase and developer).
    Also where can I find easy step by step tutoiral for oracle 11g ?
    Thanks in Advance for your answer and hope your response will not benefit other newbies too.
    Dave

    You can check all the details in Oracle Site itself. Oracle.com
    You can choose 10G it better for learning than 11G as most of them may have 10G.
    By the bye you can check the Oracle by Example for the step step info in the following link
    http://www.oracle.com/technology/obe/10gr2_2day_dba/install/install.htm
    Learn concepts along with lot of documentations available in oracle.com itself
    Pls check below link for documents / Books related to oracle.
    http://tahiti.oracle.com
    Sakthi

  • Problems with JDBC/Oracle version and types.

    Hello all,
    I am having a boring version problem here. We, recently, changed our Oracle 8i (8.1.7) for a Oracle 9i (9.2.0.6).
    We have several Java/J2EE applications running on JBoss and accessing that Oracle Database.
    We haven´t changed the JDBC driver version and we started to notice that a lot of cursors have been stucked and are not been closed.
    Searchin in Google and metalink we´ve decided to update ou JDBC driver version from classes12_8.1.7.1.jar for this ojdbc14.jar (9.2.0.5).
    After this change we started to have a lot of ClassCastExceptions, specially in this case:
    When my app call this procedure:
    MY_PROC(USR IN VARCHAR2, ID OUT NUMBER)
    in my Java app, using such code:
    CallableStatement call = conn.prepareCall("{ call MY_PROC(?,?) }",
    ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
    call.setString(1, user);
    call.registerOutParameter(2, OracleTypes.INTEGER);
    call.executeQuery();
    BigDecimal id = (BigDecimal) call.getObject(2);
    Instead of BigDecimal, the JDBC driver returns me an Integer object, using driver version 9. With the 8i driver it works fine (although we still have the cursor problem).
    The fact is, we have a lot of points to change in our apps if we change the driver version, which is not good.
    Is there any other suitable thing we can do to solve our problem and minimize our work.
    Recall we use Java / JBoss / Oracle 9i.
    Thanks
    Daniel

    Hello all,
    I am having a boring version problem here. We, recently, changed our Oracle 8i (8.1.7) for a Oracle 9i (9.2.0.6).
    We have several Java/J2EE applications running on JBoss and accessing that Oracle Database.
    We haven´t changed the JDBC driver version and we started to notice that a lot of cursors have been stucked and are not been closed.
    Searchin in Google and metalink we´ve decided to update ou JDBC driver version from classes12_8.1.7.1.jar for this ojdbc14.jar (9.2.0.5).
    After this change we started to have a lot of ClassCastExceptions, specially in this case:
    When my app call this procedure:
    MY_PROC(USR IN VARCHAR2, ID OUT NUMBER)
    in my Java app, using such code:
    CallableStatement call = conn.prepareCall("{ call MY_PROC(?,?) }",
    ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
    call.setString(1, user);
    call.registerOutParameter(2, OracleTypes.INTEGER);
    call.executeQuery();
    BigDecimal id = (BigDecimal) call.getObject(2);
    Instead of BigDecimal, the JDBC driver returns me an Integer object, using driver version 9. With the 8i driver it works fine (although we still have the cursor problem).
    The fact is, we have a lot of points to change in our apps if we change the driver version, which is not good.
    Is there any other suitable thing we can do to solve our problem and minimize our work.
    Recall we use Java / JBoss / Oracle 9i.
    Thanks
    Daniel

  • Oracle 9i and RAC

    The client will be using Oracle9i as their database (which has Real Application Clustering), and also Oracle9iAS as their application servers. Their architecture is 3-tier, and development will be done on the J2EE platform. They are using Oracle's JDeveloper for development.
    One of the potential risks that we found is that the client is planning to place most of the business logic (they define it roughly as "anything that requires data manipulation on the database") on the database servers. These will be programmed in PL/SQL. This was advised by Oracle consultants, saying that PL/SQL on the database server will perform better than Java entity beans deployed on the application server. Only very little business logic will be programmed as Java beans on the application servers. The client feels that logically this is still 3-tier and Oracle's Real Application Clustering will ensure scalability of the database servers.
    Looking at this approach, we feel this is not very much 3-tier anymore, because the business logic is tightly coupled with the database. We foresee that there will be issues with independence of business logic and database access layers, flexibility, portability, modularity, maintainability and scalability.
    What we would like to find out is:
    - We'd like to hear your opinions on this approach of placing business logic on the database and using PL/SQL to code it.
    - What are the risks of using this approach?
    - What are the alternatives (entity beans? session beans? Java Data Objects?)
    - How proven is Oracle Real Application Clustering and how much will it help client in this situation?

    The client will be using Oracle9i as their database (which has Real Application Clustering), and also Oracle9iAS as their application servers. Their architecture is 3-tier, and development will be done on the J2EE platform. They are using Oracle's JDeveloper for development.
    One of the potential risks that we found is that the client is planning to place most of the business logic (they define it roughly as "anything that requires data manipulation on the database") on the database servers. These will be programmed in PL/SQL. This was advised by Oracle consultants, saying that PL/SQL on the database server will perform better than Java entity beans deployed on the application server. Only very little business logic will be programmed as Java beans on the application servers. The client feels that logically this is still 3-tier and Oracle's Real Application Clustering will ensure scalability of the database servers.
    Looking at this approach, we feel this is not very much 3-tier anymore, because the business logic is tightly coupled with the database. We foresee that there will be issues with independence of business logic and database access layers, flexibility, portability, modularity, maintainability and scalability.
    What we would like to find out is:
    - We'd like to hear your opinions on this approach of placing business logic on the database and using PL/SQL to code it.
    - What are the risks of using this approach?
    - What are the alternatives (entity beans? session beans? Java Data Objects?)
    - How proven is Oracle Real Application Clustering and how much will it help client in this situation? Oracle consultants are paid to promote the product so the recommendation is not surprising.
    if the app needs to be a 3-tier then it makes sense to put the business logic in app server. the advantage here is
    you can clone the app server to scale for users/sessions (plus the scalability from the oracle RAC) that is a double whammy.
    eventhough pl/sql is advantageous in terms of performance, it constrains you to oracle.
    if the business logic is database independent. so you can switch to any other database.
    the other alternative is writing the java code and publishing it as pl/sql procedures in the database. this is the middle path
    approach, if you want to port the app to another database vendor, you can do with minimal effort (compared to rewriting the pl/sql).
    the predomoinant factor in a web app is how are you going to manage persistance of a user session.
    container managed persistence or database managed persistence, the choice of the level of sophistication at the web app level determines which way you
    want to go. to give persistence feature you might have to put the logic in beans and put the beans in app server.
    why do they need RAC for scalability?? they could create multiple clones of app server and have them work load managed , i guess that would be far cheaper than having to spend money on RAC hardware/software.
    if 99.99% availibility is the concern then RAC makes business sense...
    a few thoughts, which i hope you will find useful.
    Mukundan.

  • Oracle Version and Joining Tables

    Kind of a two-part question here. How can I find out which Oracle database Version I am on first of all? Be it Oracle 8, or Oracle 9, or Oracle 10.
    That being said, Am I not allowed to use the NEW INNER JOIN syntax unless we're on Oracle 9 or later???
    I keep getting this error message...
    [1]: (Error): ORA-00933: SQL command not properly ended
    when attempting to run the following query...
    SELECT *
    FROM SCHEMA.TABLE_1 TABLE1
    INNER JOIN SCHEMA.TABLE_2 TABLE2
    ON TABLE1.KEY = TABLE2.KEY
    WHERE TABLE1.Column_1 = '12345678'
    AND TABLE1.Column_2 = '2008-04-02'
    ORDER BY TABLE1.Column_1,
    TABLE1.Column_2
    /

    [email protected] wrote:
    Kind of a two-part question here. How can I find out which Oracle database Version I am on first of all? Be it Oracle 8, or Oracle 9, or Oracle 10.
    SELECT *
      FROM v$version
    That being said, Am I not allowed to use the NEW INNER JOIN syntax unless we're on Oracle 9 or later???I believe that is the case. SQL 99 syntax support was added in 9.0.1 if memory serves.
    Justin

  • Oracle versions and Windows OS

    Hi,
    I will be getting back into the Oracle/IT business after 5 years.
    When I left we were running Oracle 8i on backend Solaris servers and running Windows 2000 on the desktops/laptops.
    Just curious what Windows OS the DBAs use on the desktops/laptops now ?
    Also, what is Oracle 10g.............and 11i ?
    Many thanks for your help !

    HI,
    Well lots of stuff has changed since 8i. Ying has mentioned already about the Windows o/s.
    The database versions have undergone massive changes since 8i. And the latest flagship is 11g. Before that, it was 10g which was the starting version of the Grid based database systems.
    11i or more reccent version 12i , are the application products commonly known as Oracle Apps Suite. This is for the ERP application.
    As Ying mentioned, check the oralce documentation for getting in touch with the latest happenings.
    HTH
    Aman....

  • Mulitple Oracle Homes and RAC

    I want to install multiple SAP systems (SolMan, ECC, PI, etc) to a DB instance with Oracle RAC so that they can share resources and for High Availability.  The central instances will be running of virtually separate systems using VMWare.
    As per the white paper for doing a SAP installation with RAC, I need to install one SAP system before I install RAC.  But when I do the second SAP system that creates a second Oracle_home, do I need to install RAC again?  Or do I need to complete all the database installations before I install RAC?
    I want to be able to share the hardware but using MCOD is out because of the many problems associated with that.

    Hi Steve,
    ok - I understand.
    According to Oracle Metalink 220970.1 it´s possible to run more than one instance on a RAC but the resource manager will not be able to share load across the instances so one may impact the other.
    That document is quite good and answers a lot of questions, also some of those, you posted in your initial question (such as if the DB software must be installed on all notes or how to convert a single instance into a RAC instance etc.)
    "Note 527843 - Oracle RAC support in the SAP environment" also states, that ASM and Raw devices cannot be used in SAP/RAC-environments
    This is a really nice an interesting project, technically it should be possible to implement but I can´t say, which implications will arise.
    Markus

  • Oracle lite and RAC

    We are experiencing difficulties with installing oracle lite with Oracle RAC 10.2. Does anybody knows if this is possible?
    thank's in advance!

    The problem's were mostly implementation specific. What you need to do for RAC is to configure the mobile server to use the thick client in stead of the thin client. There is a metalink document about this (Doc ID: Note:339108.1).
    How to configure the mobile server with a RAC DB
    Solution
    1) Edit the file $ORACLE_HOME/mobile/server/bin/webtogo.ora
    2) Change this Parameter:
    ADMIN_JDBC_URL=jdbc:oracle:thin:@hostname:port:1521
    TO
    ADMIN_JDBC_URL=jdbc:oracle:thin:@DESCRIPTION=(ADDRESS=(PROTO =TCP)(HOST=clora1vip.aem.torin
    .it)(PORT=1521))(ADDRESS=(PROTO =TCP)(HOST=host_name)(PORT=host_port))(LOAD_BALANCE=yes
    (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=sid_name)(FAILOVER_MODE=(TYPE=SELE
    CT)(METHOD=BASIC)(RETRIES=180)(DELAY=5))))
    3) Save the File and restart the mobile server.

  • Oracle SE and RAC licensing

    Oracle Real Application Cluster (RAC) is provided 'free' with Oracle Database Standard Edition. If RAC is used with this edition, is it licensed as an extra-cost option i.e. do you need to buy extra licenses or is the licensing part of the Standard Edition license?

    yes.it comes free but if you use it you have to pay a license as i remember for every node.you can also ask more about the prices by calling any oracle hub near from you or opena service request.
    Kind regards
    Mohamed

  • Oracle libraries in 10.2.0 and RAC 10.2.0

    hi
    are the libraries different between oracle 10.2.0 and RAC 10.2.0. we are upgarding to RAC and i am trying to findout if i have to recompile my c++ binaries using RAC 10.2.0

    yes we have a standalone version of 10g being converted to RAC mode..
    old version
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    converted to
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    i understand the binaries would be different, but are the libraries different too?

  • Can Oracle 11g R2 RAC and database sit on Windows 2008 R2?

    Thanks.

    2008 32 bit it is certified...
    2008 64 not certified yet.
    the certification matrix within MOS does not indicate 2008 R2 so you might be good for 32 bit.
    NOTE: just double checked the matrix and it is certified for windows 2008 R2 x64
    Product      Oracle Server - Enterprise Edition
    Product Release      11gR2 RAC
    Product Version      11gR2 RAC
    Tier      Server
    Tier Product      N/A
    Tier Product Version      N/A
    Platform      Microsoft Windows x64 (64-bit)
    Platform Version      2008 R2
    Certification Status      Certified
    Expand All | Collapse All
    Expand to view Notes Notes
    Expand to view Certification Notes Certification Notes
    Edited by: rui_catcuddler on Jul 22, 2010 10:02 AM

  • Multiple Oracle home and multiple Oracle database versions on same server?

    Hi all,
    I want to setup a test environment on single Windows XP server with an instance
    of Oracle 10g and Oracle 11g. How can I install both versions without problems?
    Thanks

    Hi,
    I am facing a problem on the same..
    below is the link to my thread.
    Multiple Oracle Home in Windows
    Please reply me how to solve this problem
    Thanks
    Bhavik Fuletra

  • How to get the name, version and path of the oracle suite(s) installed

    Hi,
    I am trying to gather information regarding the Name, Version and Path of Oracle installation(s) on a computer.
    E.g.
    Name = Oracle Database 9i Enterprise Edition
    Version = 9.0.00
    Path = C:\Oracle
    I don't want to do it by querying the system tables. Can anyone please guide me if there is anyway to get these from either registry, WMI or API.
    Any form of help is highly appreciated.
    Thanks in advance.

    Simply invoke installer (OUI).
    Werner

Maybe you are looking for

  • When I get a date field value using the Oracle thin (type 4) JDBC driver...

    ....in 'DD-MMM-YY' format from an Oracle 8i database and pass it in to the java.util.Date() constructor, I get a IllegalArgumentException. This error doesn't occur when I use the type 2 driver, so it is apparently a driver-specific thing. It happens

  • Input conversion

    Which method (if it exists) can i use if I want to convert my hexadecimal input to a binary format that is compatible with DES operations?

  • Can I upload photos taken on my 2760?

    I was the only one with a camera (my Nokia 2760) at a recent event that needed a photo taken. I don't rely on my phone for photography but I was pressed into service unprepared. Can anyone tell me how I upload these shots so I can share with the pers

  • Mail 2.1 Improvements?

    I'm looking for suggested free- or shareware that enhances or "pimps out" Mail 2.1 (like "iphoto buddy" does for "iphoto")! Any recs? Thanks! Crash

  • Motion 5 not exporting Play Range with Compressor

    I've been trying to export portions of certain Motion projects, but I prefer to use Compressor to take advantage of my cluster. However, Compressor insists on ignoring the "Duration" setting. It will only ever export the "Entire Sequence", and if "In