Two versions oracle on my pc

Hi ,
I have two version of oracle in my computer : 9i,10g, but i have my db only in 10g. others use 9i.
the problem is that when i want to launch a batch on 10g , the DOS launch 9i , and i don't know what to do .
exemple
I want to execute this script : sqlplus user/pwd@db @creation.sql
the DOS display that message :
SQL*Plus: Release 9.0.1.3.0 - Production on Me Nov 11 15:40:56 2009
+(c) Copyright 2001 Oracle Corporation. All rights reserved.+
ERROR:
ORA-12541: TNS : pas de module d'Úcoute (listener)
Entrez le nom utilisateur :
NB my user is in 10g

Hi,
1. Check the ORACLE_HOME variable in the registry / your environment variable list. If it is pointing 9i DB, change to 10g DB.
2. Check your PATH environment variable. I suppose it has your 9i ORACLE_HOME\bin prior to 10g ORACLE_HOME\bin.
-Arun

Similar Messages

  • Can I install two versions of SOA suite using same Oracle database

    Condition:
    I installed Weblogic server(10.3.5) and SOA Suite(11.1.1.5), and
    I used RCU 11.1.1.5 to create the schemas(Oracle DB 11g-111170) for it.
    Plan:
    Now I plan to install another Weblogic server(10.3.6) and SOA Suite (11.1.1.6)
    and I will used RCU 11.1.1.6 to create the schemas for it.
    Question:
    Can I use same database(Oracle DB 11g-111170) for the two versions of SOA Suite? that is
    Can I Run the RCU 11.1.1.6 to create the schemas for SOA Suite (11.1.1.6) on the oracle database server I already used for SOA Suite 11.1.1.5?
    If I can use same database for the two versions of SOA Suite, how can I resolve schame name conflict?

    Hi
    1. YES. You can absolutely use SAME DB to have multiple Versions of SOA Schemas.
    2. Any SOA/BPM will need basically 4/5 schemas like SOAINFRA, MDS, ORABAM, ORASDPM etc. based on what you choose. And each of these Schemas can be Prefixed. Default prefix is like DEV, so schemas are like DEV_SOAINFRA, DEV_MDS etc
    3. Very Simple. When you Run RCU 11.6 and give the same old db details, in next screen it will automatically show the new Prefix for the schemas it will create. If DEV is used, it will show DEV1 like that. So just choose a Different Prefix and you are good to go.
    I have the same thing on my side. Single Database. Multiple RCU for SOA 11.5 and SOA 11.6 with different Prefixes:
    SOA 11.5 -> DEV115_SOAINFRA, DEV115_MDS, DEV115_ORABAM etc
    SOA 11.6 -> DEV116_SOAINFRA, DEV116_MDS, DEV116_ORABAM etc
    I Used the Prefixes like DEV115, DEV116 so that I know exactly which version of RCU schema they refer to.
    For QC, UAT, PROD we used prefixes like QC_*, UAT_*, PROD_* etc.
    NOTE: When you drop the schemas for some reason, make sure to give the appropriate prefixes so that only they are dropped and not others.
    Thanks
    Ravi Jegga

  • Same SQLs different in two versions of Oracle 12c RDF Developer's Guide

    There are two versions of Oracle 12c RDF Developer's Guide, one has the SQL insert as
    INSERT INTO articles_rdf_data VALUES (2,
    SDO_RDF_TRIPLE_S ('articles','http://nature.example.com/Article1',
    'http://purl.org/dc/elements/1.1/creator',
    'Jane Smith'));
    the other one has the change highlighted:
    INSERT INTO articles_rdf_data VALUES (2,
    SDO_RDF_TRIPLE_S ('articles','<http://nature.example.com/Article1>',
    '<http://purl.org/dc/elements/1.1/creator>',
    '"Jane Smith"'));
    Which one is correct?
    Thanks.

    The second one is correct. It is from the latest version of the user guide.
    http://docs.oracle.com/cd/E16655_01/appdev.121/e17895/toc.htm
    Thanks,
    Matt

  • Execution of Immediate SQL in compiled package in two versions of SQL*PLUS

    A peculiar problem has risen in our database.
    Execution of Immediate SQL in compiled package in two versions of SQLPLUS gives different results
    We have a compiled package with two procedures that contain immediate SQL statements, and these are:
    +PROC_DELETE_ROWS+
    +     -- This immediate sql deletes unreferenced Document Types from the DOC_REF_TYPE table+
    +     delete from doc_ref_type t where exists (select 1 from PROARC_DOC_REF_TYPE_VW d where d.doc_ref_type = t.doc_ref_type)+
       +     and not exists (select 1 from doc_ref d where d.doc_ref_type = t.doc_ref_type)+
       +     and doc_ref_type not in (select doc_ref_type from eis_doc_ref_type)+
       +     and doc_ref_type not in (select eis_doc_ref_type from eis_doc_ref_type)+
    +PROC_ADD_NEW_ROWS+
    +     -- Drop the temporary table+
    +     drop table TMP_PROARC_DOC_REF_TYPE+
    +     -- Create a temporary table+
    +     create table tmp_PROARC_DOC_REF_TYPE as+
    +     select DOC_REF_TYPE, substr(DOC_REF_TYPE_DESC,1,100) as DOC_REF_TYPE_DESC+
    +     from PROARC_DOC_REF_TYPE_VW+
    +     -- Insert document types that do not exist in the DOC_REF_TYPE table+
    +     insert into doc_ref_type t (DOC_REF_TYPE, DOC_REF_TYPE_DESC)+
            +     select distinct DOC_REF_TYPE, DOC_REF_TYPE_DESC from tmp_PROARC_DOC_REF_TYPE s+
            +     where not exists (select 1 from doc_ref_type t where t.doc_ref_type = s.doc_ref_type)+
    I am using the following test script:
    +Exec mypackage.proc_delete_rows;+
    +Commit;+
    +Select count(*) from DOC_REF_TYPES;+
    +Exec mypackage.proc_add_new_rows;+
    +Commit;+
    +Select count(*) from DOC_REF_TYPES;+We have a Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit
    I am using SQL*Plus: Release 8.1.7.0.0
    The test script is working as expected.
    Count after delete =155
    Count after insert = 511
    but when I use another computer with SQL*Plus: Release 10.x
    The Test script returns the following
    Count after delete =155
    Count after insert =155
    The same is happening when I am running the scripts as a scheduled job.
    QUESTION:
    I believe I have found a fix for the problem though. By changing tmp_PROARC_DOC_REF_TYPE in the insert statement to all upper case, the script is running in both environments apparently. But how is this possible? I am executing a compiled package in the database. The session shell should have no impact on the behaveour of the procedure I am calling. What causes this?
    Edited by: Reon on Jun 16, 2011 4:44 AM

    1) I am using the same user (PANDORA)
    2) (PANDORA) for both
    3) I am actually not handling any errors. Just skipping any error altogether. I'll check to see what exceptions are raised, and come back.
    I have also noticed that SQL/PLUS is not the culprit here. If I use SQLTools 1.5 to run the script, the same thing happens. So it has to do something with the connection or session environment that is inheritet to both clients.
    The CODEZ:_
      procedure add_doc_types IS
      sqlstr     VARCHAR2(2000);
      begin
      BEGIN
           sqlstr := 'drop table TMP_PROARC_DOC_REF_TYPE';
         EXECUTE IMMEDIATE sqlstr;
        EXCEPTION
          WHEN OTHERS THEN
            null;
        END;
      BEGIN
           sqlstr := 'create table tmp_PROARC_DOC_REF_TYPE as select DOC_REF_TYPE, substr(DOC_REF_TYPE_DESC,1,100) as DOC_REF_TYPE_DESC from PROARC_DOC_REF_TYPE_VW';
         EXECUTE IMMEDIATE sqlstr;
        EXCEPTION
          WHEN OTHERS THEN
            null;
        END;
        BEGIN
            sqlstr := 'insert into doc_ref_type t (DOC_REF_TYPE, DOC_REF_TYPE_DESC)
                    select distinct DOC_REF_TYPE, DOC_REF_TYPE_DESC from TMP_PROARC_DOC_REF_TYPE s
                    where not exists (select 1 from doc_ref_type t where t.doc_ref_type = s.doc_ref_type)';
         EXECUTE IMMEDIATE sqlstr;
            sqlstr := 'update doc_ref_type t set DOC_REF_TYPE_DESC = (
                    select DOC_REF_TYPE_DESC from tmp_PROARC_DOC_REF_TYPE s
                    where t.doc_ref_type = s.doc_ref_type)
                    where exists (select 1 from tmp_PROARC_DOC_REF_TYPE s where t.doc_ref_type = s.doc_ref_type)';
         EXECUTE IMMEDIATE sqlstr;
        EXCEPTION
          WHEN OTHERS THEN
            null;
        END;
      end add_doc_types;
      procedure delete_doc_types IS
      sqlstr     VARCHAR2(2000);
       BEGIN
            sqlstr := 'delete from doc_ref_type t where exists (select 1 from PROARC_DOC_REF_TYPE_VW d where d.doc_ref_type = t.doc_ref_type)
            and not exists (select 1 from doc_ref d where d.doc_ref_type = t.doc_ref_type)
            and doc_ref_type not in (select doc_ref_type from eis_doc_ref_type)
            and doc_ref_type not in (select eis_doc_ref_type from eis_doc_ref_type)';
          EXECUTE IMMEDIATE sqlstr;
         EXCEPTION
           WHEN OTHERS THEN
             null;
      end delete_doc_types;Edited by: Reon on Jun 16, 2011 2:01 AM

  • Two versions of Developer, same machine

    I need to use a single machine to access two different applications, one using Developer 2000 v4x and one using Developer v6. What is Oracle's support stance for a machine that has two different versions of Developer loaded on it? Can it work efficiently and/or effectively? How? Thanks for any help.
    Paul

    Originally posted by Deepak Rai, Oracle Support Services ([email protected]):
    Paul,
    You can install different versions of Developer on a same machine. Some of the Developer versions supports multiple ORACLE_HOME installations also.
    eg: Forms/Reports 6i can be installed in a separate ORACLE_HOME.
    The Release notes lists all the Developer versions which are supported on same ORACLE_HOME.
    Following are the versions of Developer which can be installed on the same ORACLE_HOME as Developer 6.0,
    1. Developer 1.6.1
    2. Developer 2.1
    Best Regards,
    Deepak Rai
    Hi Rai,
    Sorry about my previous message. Anyways As I was saying I'm trying to Install Developer 2.1 and Developer 6.0 in the Same machine. By default both installations are install in the same Oracle Home Directory C:\ORANT and the same registry Key ORACLE. For Develop 2.1 I have to make some changes to the Registry under the ORACLE key. How can I make this two version coexist in the same machine? What version I have to install first to have a succesfull installation?
    Is there any instrucion I can reference to in the Web?
    your reply will be greatly appreciated..
    Carlos
    null

  • I have two versions of Pr, one is the latest 2014 and when trying to open a Pr2014 session, I get an error message saying the project was saved in a newer version and cannot be opened. Help

    I have two versions of Pr, one is the latest 2014 and when trying to open a Pr2014 session, I get an error message saying the project was saved in a newer version and cannot be opened. Could there be an issue with an older Pr application on the computer? Please help!

    You need to be very careful which project you open in which version.
    For 2014 make sure its on 2014.1 build 81.

  • Itunes two versions of the same album?

    Hello,
    I have two versions, high res audio and CD quality, of the same album of an artist located in two folders "Album Title" and "Album Title HD".
    By adding the two folders to the iTunes mediathek, all tracks are merged under "Album Title" in iTunes. Do I have to manipulate the meta data to avoid this behavior in iTunes? Interestingly the views on the Mac and via iOS Remote App are different:
    Mac:
    Track 1
    Track 1 HD
    Track 2
    Track 2 HD
    etc.
    Rmote App:
    Track 1
    Track 2
    Track Last
    Track 1 HD
    Track 2 HD
    I disabled the automatic handling option for iTunes import. So still two folders in the iTunes music folder exist.
    Any ideas?
    Andreas

    If you want them to appear as separate albums you will have to change the metadata for one of the albums.  There are many ways to do this and which one you use will depends upon your preferences.
    You can make it obvious by doing something such as adding a descriptor to the album name e.g., Album Name [CD quality]
    You can "hide".  If you do not normally use the album artist field and you add an album artist to that field for one of the versions it will cause that to sort separately.  Similarly if you add a number to the disc number field that should normally get it to display separately.
    Alternatively you can come up with a smart playlist to sort according to kind.

  • I have two versions of Lightroom installed on my computer, can I uninstall the older version?

    While looking at the "Programs and Features" folder on my Windows 7 computer I discovered that I have two versions of Adobe Lightroom installed on my system. One is Lightroom 5.2, installed on 9/19/2013, and the other is Adobe Photoshop Lightroom 5.5 64-bit, installed on 7/5/2014
      - Can I uninstall the older version?
      - Will uninstalling the older version cause any problems with the newer version?
      - If yes to either question, is there anything I need to do before doing the uninstall (i.e. deactivating, etc.)
    Any advice on how to correct this problem is gratefully appreciated.
    PS; I have the same issue with Muse CC. See: I have two versions of Muse CC installed on my computer, can I uninstall the older version?

    Jim,
    I thought it was odd that I had two versions of Lightroom installed as well. I have been able to track the issue back to an apparent "bug" in the Lightroom 5.2 update that installed a second version of Lightroom in addition to updating the existing version on my computers. At the time, I posted about it at Lightroom 5 installed twice on my laptop. While I never got an answer to my question, which was "Is this normal?" I did hear from others in the forum the experienced the same problem and had the same question. As time passed, later releases updated one of the two installations, but did not effect the second. Hence, two different versions of Lightroom 5 installed on the same computer.
    Uninstalling the older version solved the problem. Thanks

  • HT1766 How can I keep two versions of backup of the same IOS device in iTunes?

    HI,
    I wish to keep two versions of the same iPad backup in iTunes.
    Is it possible? Pl. advice. Thanks. K.V.Ramani 

    Hi Diavonex,
    Pl. see screen shot of iTunes backup.
    I have one iPhone and  one iPad back up only. Pl. advice. Rgds, Ramani

  • Can I have two versions of firefox at the same time?

    Hi,
    Probably a dumb question but can I have two versions of Firefox on my system at the same time?
    The reason is because of Add Ons that are not compatible with v4. I'd like to be able to close v4 when I need to use an Add On in v3.
    Thanks.

    You can install them both but there are a few steps to take.
    When you install Firefox 4 use the custom installation option and choose a different location to install Firefox.
    In order to use both versions, you need to create a new profile for Firefox 4 (Firefox stores user data in the profile). Using the same profile with different versions can cause problems. Once you create a new profile you can copy certain data such as bookmarks and passwords between them. You can also use Firefox Sync to keep the profiles synchronized. Finally, you will need to set up shortcuts to launch the correct profile for each version.
    The following links show how to do this:
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    * https://addons.mozilla.org/firefox/addon/firefox-sync (only needed for Firefox 3.6, it is built into Firefox 4)

  • How can I retain two versions of my iPad backup in iTunes?

    HI,
    When I backup my iPad on iTunes, the previous backup is automatically deleted and a new back is created.
    How can I retain two versions of my iPad bacup in iTunes?
    Thanks, Ramani

    Backup the device. Immediately restore the backup. The restored backup is now archived and a new rolling backup set is created. You can repeat as needed and clear older backups from Edit > Preferences > Devices.
    tt2

  • Creative Cloud & Creative Suite 6 - Will I have two versions of InDesign, Illustra, etc?

    I have Creative Suite 6 installed on my Windows 7 laptop.  I joined Creative Cloud and started downloading.  Apparently two versions of Illustrator and InDesign.  Oh my - that's a lotta disc space.
    I'm uncomfortable uninstalling my Creative Suite 6.
    I'm worried if I download the Creative Cloud versions of PHOTOSHOP & DREAMWEAVER - I'll lose all my plugins and web site definitions.  YIKES!
    I searched all the FAQ, etc., found no answer.  Maybe I missed something.  I bet this is a really common question. 
    So is that the deal?  We have two versions of Adobe software?  What happens if I install Cloud versiosn of Dreamweaver and Photoshop?
    Thanks for your help.
    April

    There aren't many differences between the Creative Cloud version of Photoshop and Dreamweaver at the moment.  You are welcome to uninstall or you can even go to Help>Deactivate.  Once you have deactivated when you open the software again you maybe given the option to License this Software.  If so you can enter your Adobe ID tied to your subscription and the software will begin using the licensing for your Creative Cloud subscription.

  • How can I fix this "Adobe two-version" problem, so only the latest version stays enabled, the old version stays DISABLED, and/or uninstall the old version?

    I went to my add-ons tab, and I DO, in fact, have two versions of shockwave flash, an 11.9...version, and a 13.9..., which, if I'm not mistaken, is the latest version. There is a "ask to activate, always activate, never activate" button for EVERY add-on. I clicked never activate on the older version, and closed the tab. I then tried to play a video off of the Web. It would not play, I tried another site with the same result, so I went back to my add-on tab, and the button for the older version had changed back to "always activate" by itself. It continues to repeat this, and WILL NOT stay on "never activate". Every few times I return to the add-ons page, THE NEW VERSION IS DISABLED, AS WELL AS THE OLD ONE. I've tried to uninstall the old version, but when I go through control panel, and bring up the folder contents, the old version isn't even there! I've done start, find, and typed in "Adobe", and the old version is NOT FOUND! Both versions keep changing back and forth on the activate button, and they both will disable on their own, no matter how many times I fix it! smh!!

    @jscher2000: Didn't mean to lose contact. I still don't have my playback problem solved, if you can believe that. I've downloaded the uninstaller / installer links with someones help that's on this forum, used them in the exact same order. It did nothing to help. However, I was in the process of attempting your solution. I made sure all browsers were closed; in fact, I went offline before this procedure. When I used find, and typed in Shockwave, it came back..."no search results". I recalled a path I had previously used, and had to use it instead of find, C:/ Acer/ Windows/SysWOW64/ Macromed/ and here there were files for Shockwave AND Flash. I opened Shockwave, says " this folder is empty". Flash Player and Flash Util plugin, Util32 Active X, NPSWF32_13_0_0_214.dll...all files appear correct, BUT why aren't there ANY files in the Shockwave folder? NONE of the buttons you describe in your steps to let Firefox "clean up" the pluginreg.dat file show in my window...if I am in the right window. My username is at the top, and it's drop-down is "3 button"+sign out. One says settings, but it doesn't take me to any "help", Trobleshooting info, "show folder", nor any way to exit Firefox or to start it back up. Settings goes to "edit settings", and has a list of checkboxes...all with something to do with threads in one aspect or another, and one concerning private messages. Sounds to me like I don't know what I'm doing, am on entirely the wrong Mozilla /Firefox page, and I'm NEVER, EVER going to get this damn video playback crap fixed once and for all. Some sites will let a video play, but they are rare. Vikings.com is the one that has me red-faced. NOTHING plays there. Except ads, of course. You can't get those to STOP.

  • I have my library in AIFF format on my iMac. I want to converte all in Apple less loss on my macbook pro. how can i do? becouse if i converte the files, i find on library the two version, AIFF and Apple lessloss....

    about 300 CD imported on my IMAC in AIFF version.
    I want to create the same library on my macbook pro, but Apple lessloss to use for ipod and other device.
    I import on the finder'S macbook pro all the library ( many gigabyte in AIFF version). I open Itunes, add to library the folder, on preference i set Apple lessloss, but itunes import AIFF version.
    If i converte on itunes the files, i find all the two version: AIFF and Apple lessloss. I cannot remove manually all the file AIFF....
    Duplicate files is impossible to remove with 11 version...

    Select 'Songs' then 'List'. Click on the top of the 'Kind' column to sort by type of file, thus bringing all the AIFF files together. (If you don't have a 'Kind' column, enable it in View>View Options).
    Click on the top AIFF file in the list, then shift click on the bottom one to select them all. Hit the delete key. At the prompt, be sure to choose to move them to the Trash or they will disappear from the list but remain in the actual Library in the Finder.

  • Is it possible to have two versions of Muse on one Machine?  WhenI open Muse from my program menu in WIndows 7 it comes up the way I am used to.  I did an upgrade a week or so ago and now I have an Adobe Muse CC 2014 on my desktop.  WhenI open the applica

    Is it possible to have two versions of Muse on one Machine?  WhenI open Muse from my program menu in WIndows 7 it comes up the way I am used to.  I did an upgrade a week or so ago and now I have an Adobe Muse CC 2014 on my desktop.  WhenI open the application that way the GUI interface looksw totally different, more like Illustrator.  What is that all about?

    Since posting the above, I have resolved a sensible work-around in regard to ebookstores which prefer us to have separate accounts for our separate Adobe IDs.
    However, I really would appreciate it if anyone here can confirm that a DRM controlled book does actually become associated with a particular Adobe ID account at the time of first download to Digital Editions on that PC/device.
    Two large book stores have said using my account with them to download books to our two separate Adobe IDs is OK, but I don't want to find my husband is unable to open his downloaded books.
    Thank you folks for any advice you can give,
    Sue

Maybe you are looking for

  • Importing m2ts files but having problems with the audio layer

    Hi all, I'm new to the whole video editing side of things and so would appreciate some help. I've just bought myself a Canon HF200 HD camcorder, and a Sony Vaio notebook which came with Premiere Elements 7.0 pre-installed. For the last month I've bee

  • BC4J/JSP: Missing navigation values in table tag

    We are using BC4J view objects, overriding the native functionality of the view object to call PL/SQL APIs plus JSPs with UIX/Cabo tags to render output for BC4J. Within the JSP the dataSource/view object rangesize is set to 6 and we are using the ta

  • Sync time duration

    Hi, I have a question concerning the sync time. Our current application uses 5 (developed) SyncBOs, each sync we have all in all about 500 records that are moved splitted on these syncbos. Currently a sync action takes about 1min which seems quite lo

  • .mov exif data problem - Time is off by hours

    I have the same problem that SD_Christina posted 2010: "I import my photos and videos taken on my iPhone using "Image Capture", then I sort them using Adobe Bridge CS5. When I take a video (.mov file), the exif data shows the "Date Created" at 7 hour

  • Impliment nvl on a date search

    Hi , 1. How can I implement to run the report when there is no date selected. I have the below query and with a date it runs fine. (if user doesn’t select a date and want to run for all) Please guide me how to implement NVL to the to_date(get_date1 (