ORACLE 10g and ORACLE 9i on same machine

Hi All,
I want to install oracle 10g and oracle9i database on same windows machine.
As far as i know i have install oracle10g and 9i on different oracle_home.
Any thing is required.
Regards,
Umair

umair,
Install 9i into an ORACLE_HOME.
Install 10g into an other ORACLE_HOME.
Nothing more is required, only the Oracle requirements for each version.
Your attention when you will connect, set always the good ORACLE_HOME before connection.
Nicolas.

Similar Messages

  • Will Oracle 10g and Oracle XE happily co-exist on same machine?

    I can't seem to find anything specifically saying that Oracle 10g and Oracle XE can be installed on the same Windows machine. The only reason I'd want to do this is that I originally had the free version on my Windows machine. The uninstaller nevers seems to run a complete job and always leaves bits over. So I'd like to install Oracle 10g alongside Oracle XE.
    Wondered if anybody had done this already?

    to uninstall Oracle, do the following:
    1. Uninstall all Oracle components using the Oracle Universal Installer (OUI).
    2. Run regedit.exe and delete the HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE key. This contains registry entires for all Oracle products.
    Delete any references to Oracle services left behind in the following part of the registry:
    HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Ora*
    It should be pretty obvious which ones relate to Oracle.
    4. Reboot your machine.
    5. Delete the "C:\Oracle" directory, or whatever directory is your ORACLE_BASE.
    6. Delete the "C:\Program Files\Oracle" directory.
    7. Empty the contents of your "c:\temp" directory.
    8. Empty your recycle bin.
    At this point your machine will be as clean of Oracle components as it can be.
    Remember, manually editing your registry can be very destructive and force an OS reinstall so only do it as a last resort.

  • Is it possible to install Oracle 9i and SQL server on same machine

    1. Is it possible to install Oracle 9i and SQL server on same machine ?
    2. If yes, what are the problems i may encounter during installation
    3. What should be hardware configuration for installing both databases in same machine like hard disk space, RAM speed etc,

    Hi,
    1. Yes you can do it.
    2. There shouldn't be any problems
    3. Depends on your needs
    Jarek

  • What are the major differences between oracle 10g and oracle express 10g

    Hi
    Can anyone tell, What are the major differences between[b] oracle 10g and oracle express 10g.
    Or if you know any URL, then please do let me know.
    Advance Thanks
    JC

    Dear sir,
    here it is.
    http://www.oracle.com/database/product_editions.html

  • Can Oracle 10g and Oracle 9i coexist and run together in one machine

    Dear Friends,
    I have installed Oracle 10g on my machine which already had Oracle 9i - 9.1.2.0 Release. Now the problem is that when i try to create a service name it gives me this error- ORA-12514: TNS:listener does not currently know of service requested in connect descriptor. To overcome this what i have done is that i have stopped the Oracle 9i listner and started the Oracle 10g listner, it is working after this but Oracle 9i service stpooed. Does this mean that Oracle 9i & 10g listner can't run together ? Or one has to stop the listner for one version to start another. The port number is same 1521 for both the listner. When i tried to change the port number still the same error comes as described above.
    Kindly enlighten me,
    Thanks & Regards,
    Vinay

    if you want to configure both listener (oracle 9i and 10g listener)
    then u configure
    listener9i on 1521 port
    and other
    listener10g is on 1522 port
    also make changes in tnsnames.ora file
    as
    ora9i =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.16.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ora9i)
    ora10g =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.16.1 )(PORT = 1522))
    (CONNECT_DATA =
    (SERVICE_NAME = ora10g)
    thanks
    Kuljeet pal singh

  • Installing Both Oracle 10g and oracleXE on the same computer

    Hi,
    Good Morning to ALL,
    Can any of you tell me whether we can Install both the Oracle10g Version and OracleXE on the same computer. In my work computer, I have oracle and Toad installed. Now I wanna install OracleXE and Oracle SQL Developer to do some hands on practise when I find time at work.
    Could we Install both these versions on the same computer? Your answer will help me a lot. Please advice............
    Thanks a lot.............. Have a good day.

    Yes, you can. On my laptop, in a virtual machine with Oracle Linux 5, I have 10g, 11g and XE.
    BTW, 11g includes Sql Developer by default...

  • Oracle 10g and 11g on the same computer....

    Hi ,
    Just for confirmation.... i 'd like to ask if this is possible.....without migrating the existing Oracle 10g v.2 database to Oracle 11g......
    I want to keep them working both (not of course simultaneously.....)
    Thanks....
    Sim

    Assuming you load everything into separate 10.2 and 11.1 Oracle Homes, sure. You can even have both running at the same time if you'd like.
    Depending on your setup, you may want to spend a bit of time figuring out whether you want to run separate listeners or have one listener for both databases (in which case you'd probably want just the 11g listener running). And whether you want separate tnsnames.ora files or whether you want to use the TNS_ADMIN environment variable to point both Oracle Homes at a single file.
    Justin

  • Xpath difference between Oracle 10g and Oracle 11g

    All,
    I'm working on moving our existing stored functions from Oracle 10g (10.2.0.4.0) to Oracle 11g (11.2.0.1.0) and so far, everything has worked just fine on Oracle 11g...execpt for one xpath statement.
    The statement below works fine in Oracle 10g (10.2.0.4.0):
    extractValue(inv_dtl_img, '/service//ground/sortKeyCode') AS "srt_key_cd",
    Please note: I need to use the double slash "//" in order to ignore the two different elements in the schema.
    However, in Oracle 11g (11.2.0.1.0), when this statement is executed in the stored function, I get this:
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected - got -
    The extractValue command is pulling data out of an XMLType column, and the corresponding XML schema looks like:
    <service>
    <trans>
    <ground>
    <sortKeyCode>
    </sortKeyCode>
    </ground>
    </trans>
    <nontrans>
    <ground minOccurs=0>
    <sortKeyCode>
    </sortKeyCode>
    </ground>
    </nontrans>
    </service>
    Please note: In the XML message, the "trans" and "nontrans" elements are exclusive, so both will never be populated at the same time. A typical XML message would look like this:
    <service><trans><ground><sortKeyCode>3</sortKeyCode></ground></trans></service>
    or this:
    <service><nontrans><ground><sortKeyCode>5</sortKeyCode></ground></nontrans></service>
    In the schema, the sortKeyCode has been defined in both places as "string maxlen=3", so the datatype of that element is exactly the same in both the "trans" and "nontrans" sections of the schema. The only difference in the schema (outside of the trans and nontrans tags) is the fact that the second "ground" tag is defined with a "minOccurs=0". Could Oracle 11g be treating the schema differently than Oracle 10g, resulting in the error?
    Any thoughts would be appreciated.

    The only way to get an quick answer to that one is to file a service request with Oracle support. It could be a bug or a correct change regarding W3C behavior. Despite this, you moving to 11.2, the extract/extractvalue etc propriety Oracle solutions are deprecated from 11.2 and onwards. The more sensible way to move forward, although, I know more work intensive, is to apply the XQuery alternatives like xmlexist, xquery or xmltable functions.
    Moving to EXTRACT is a bad idea, because this alway will be treated as an XML fragment. If you unlucky then Oracle will deal with this in memory via DOM (the standard solution regarding XML parsing if every smart thing within Oracle can not be applied) and this will result in a performance downgrade due to high CPU and Memory consumption/overhead...
    Your pick...

  • Difference between Oracle 10g and Oracle 11g when using Distinct in SQL

    Hi All,
    When I use Distinct in Oracle 10g, the result would be sorted in ascending order automatically, while there is no sorting in the result set in Oracle 11g.
    I was using plsql developer to run my sql.
    May I know if anyone have the same experience before?
    Is there any kind of setting in 11g that I can make the result in order? Thanks!
    Edited by: user5810051 on 2011/4/6 下午 8:47

    As acadet says, if you want your result ordered you must specify an ORDER BY clause in your query. Just because previous versions of oracle included some ordering as part of the processing of a query, that was not a guaranteed ordering, but just a side-effect. Now that Oracle have improved the internal workings, they've removed the side-effect, and that's why you're not getting the ordering you want, because you were relying on that side-effect rather than explicitly stating the order you wanted.

  • DB Link between Oracle 10g and Oracle 9i for CLOB data type

    How do I transport XMLType or CLOB from oracle 9i to Oracle 10G using DBLink?
    Is any restrction to DBLink, while transfering CLOB with XML data from oracle 9i to Oracle 10G?
    Please let me know how i resolve this issue.
    Thanks in advance.
    DK

    Well... it depends on what type of link you wish to create.
    If you have same user with same password on both databases (9i and 10G), then you can create a public database link as
    CREATE PUBLIC DATABASE LINK dblink USING 'dbalias';
    Note: dbalias is the value from your TNSNAMES.ORA. The database from which you are creating the db link has to have the entry in TNS for other database.
    Other method is to create a private db link
    CREATE DATABASE LINK dblink CONNECT TO user IDENTIFIED by pwd using 'dbalias';
    The number of open connections from a particular database is governed by init parameter DB_LINKS (this was in 8i.. not sure about higher versions)
    HTH...
    Message was edited by:
    satishkandi

  • Can I install OBIEE 10g and 11g on the same machine?

    While I'm waiting for new hardware, I wanted to get started on installing OBIEE 11g on my laptop. Can I do this if I already have 10g installed?
    I want to make sure if I install it that it will not impact my current 10g setup. I'm not sure if it overrides certain files and folders or if I can do a separate installation to have both.

    Hello everyone.
    I have OBIEE 10g on my Production box pointing to the Oracle Database 11g R1 which is also having OWB integrated in it.
    Now, I am planning to upgrade OBIEE 10g to 11g and Oracle Database from 11g R1 to 11g R2, so that OWB will also be upgarded, as it is integrated in 11gR2.
    I am confused about, how to run RCU on the database, as OBIEE 10g schemas and packages will already be there in the database.
    If I run RCU again, what will it do???
    Has anyone done this before? or any good document available ?
    Many Thanks,
    Ahsan.

  • DB Link between Oracle 10g and Oracle 9i

    Hi all,
    Please help me to set the dblink between oracle9i and oracle10g.
    Thanks in advance
    Regards
    K. Mahipal Reddy

    Well... it depends on what type of link you wish to create.
    If you have same user with same password on both databases (9i and 10G), then you can create a public database link as
    CREATE PUBLIC DATABASE LINK dblink USING 'dbalias';
    Note: dbalias is the value from your TNSNAMES.ORA. The database from which you are creating the db link has to have the entry in TNS for other database.
    Other method is to create a private db link
    CREATE DATABASE LINK dblink CONNECT TO user IDENTIFIED by pwd using 'dbalias';
    The number of open connections from a particular database is governed by init parameter DB_LINKS (this was in 8i.. not sure about higher versions)
    HTH...
    Message was edited by:
    satishkandi

  • Differences between oracle 10g and 9i

    where do we differe in oracle 10g and oracle 9i
    when we will be working with SQL and PL/SQL
    Please help me

    http://download.oracle.com/docs/cd/B14117_01/server.101/b10750/toc.htm
    is what you are looking for.

  • USER_DEPENDENCIES view in oracle 11g and oracle 10g are different?

    I have tested oracle 10g and oracle 11g. And I found some different behavior in the user_dependencies view between two oracle version.
    In the oracle 10g, whatever referenced object is populated in the user_dependencies view. In the oracle 11g, however, only valid referenced objects are populated in it.
    For example, a package, pac_1, references table, ref_tab_1, and package, ref_pac_2. After ref_tab_1 is dropped and ref_pac_2 is invalid, I query to user_dependencies.
    sql> select referenced_name, referenced_type from user_dependencies where name = 'pac_1'.
    In oracle 10g, the result is like the following,
    < referenced_type > , < referenced_name >
    non-existent , ref_tab_1
    package , ref_pac_2
    In oracle 11g, the result is not showing non-existed object nor invlid object like the following,
    no rows selected
    Is that the TRUE or do I missed some when I installed database or created database in 11g?
    Is there a way to make the behavior of user_dependencies like it in 10g which shows all the referenced objets?
    Edited by: user7436913 on Mar 10, 2010 5:48 AM
    Edited by: user7436913 on Mar 10, 2010 5:51 AM
    Edited by: user7436913 on Mar 10, 2010 5:52 AM
    Edited by: user7436913 on Mar 10, 2010 5:53 AM

    can you post your query with explain plan for both 9i version and 10g version.
    Thanks,
    karthick.

  • SQL performance slow -- oracle 10g to oracle 11g

    Hi,
    We are have two development server, here we can call server10 and server11.
    Server’s having same hardware and OS, but different oracle version, server 10 and server 11 having oracle 10g and oracle 11g respectively.
    Problem, when you run sql query in oracle 11g it’s very slow compare to oracle 10g server.
    Here I have checked
    1)     sga size – comparatively 11g size is big
    2)     no full table scan
    OS – SUN
    DB: 11.1.0.7.0, 10.2.0.4.0

    mmee wrote:
    Hi,
    We are have two development server, here we can call server10 and server11.
    Server’s having same hardware and OS, but different oracle version, server 10 and server 11 having oracle 10g and oracle 11g respectively.
    Problem, when you run sql query in oracle 11g it’s very slow compare to oracle 10g server.
    Here I have checked
    1)     sga size – comparatively 11g size is big
    2)     no full table scan
    OS – SUN
    DB: 11.1.0.7.0, 10.2.0.4.0If the query is running slow, the sga size should not be the first thing to check. PLease post the execution plans of the queries from both the servers. Please try to post the tkprof output of the trace of both. The reason for this that explain plan may lie to us about what has happened but trace would be the real picture only.
    HTH
    Aman....
    PS: Don't forget to use the code tag and using the Preview tab to see how the code looks. A better formatted post would most likely get better attention and response.

Maybe you are looking for

  • Setting up local host

    I am trying to set up a local host for testing PHP per David Powers book. I am doing something wrong because I keep getting a 404 error. I am probably screwing up the locations of my site folders and/or the url address. Can someone help me out?

  • Oracle 10g Client and ODAC Side-By-Side

    Hi there, I was unable to find an answer to my query by using search, but apologies if this is a double-post. I'm having some issues with a ASP.NET application running on a Windows XP Pro machine. The machine has Oracle 10g client installed (oraClien

  • Customer ##1 Enter a valid time interval error while generating customer BP

    Dear Experts, I am getting the following error when I am auto generating Customer while creating Business Partner in BP transaction code. Customer ##1: Enter a valid time interval Message no. CMD_API087 Had anybody faced this problem? Regards Komal

  • How to change Goods Supplier for GR against PO in MIGO or MB01

    Dear Experts, We have maintained 3 different Goods Supplier for a Vendor Master. While craeting PO, we are not aware who will be the Goods supplier (Partner Functons) for the Vendor and hence we have selected one of the Goods Suppliers from Pop Up. I

  • Billing for shipment cost

    hi all, can anyone tell me how will add the calculated shipmet cost in to my billing,so that i adds to hte net value in the billing. please do guide me if any configuration is required. thanks.