Integrity constraint not found parent key, insert master and detail records

Hello world

I'm creating a master and a detail to record simultaneously, using a managed bean method. I am populating the sequences of db using EL, not database triggers. So:

(1) Insert main record, the new return ID.

(2) Insert detail associated with the previous record

It works well, unless they select a foreign key between the main table and details, so I me "ORA-02291: integrity (XXXX_FK) violated constraint - key not found kinship", as it seems that the book of the child is inserted before the parent.

I would not disable the FK, but can give you advice on this topic?

Thanks in advance,
Jose.

Try without defining the status of the Row.STATUS_INITIALIZED...

Timo

Tags: Java

Similar Questions

  • Try to install settlers 3 gold edition. I get a message "the settlers edition Gold 3 CD not found.» Please insert the CD and try again. »

    Original title: settlers 3 troubleshooting

    I had the settlers 3 gold edition installed on windows 7 Home premium 32-bit. After having extracted the files now, I try to run the game by autorun icon, a new window opens with options 'install new/edit' and a few others, but everything by clicking on one of the icons I get the same error of "settlers edition Gold 3 cd not found.» Please insert the cd and try again. »
    Please guide me how to solve the problem if you have any solution for this.

    Thank you

    Hi Bulech,

    Settlers 3 gold edition is not listed in the Windows 7 Compatibility Web site. It may or may not be compatible. Take a look. Clickhere .

    However, you can follow these steps and check if it helps to solve the problem for you.

    Step 1:

    I suggest, instead of just click on icons, you right click on the .exe file and run as administrator.

    Step 2:

    If it is little help, you can run settlers 3 gold edition in Windows Vista compatibility mode .

    Step 3:

    Alternatively, you can run the game in compatibility problems solving

    To run the troubleshooting program compatibility Troubleshooter

    a. open the resolution of the problems of compatibility of programs by clicking the Start button, then Control Panel. In the search box, type troubleshooting, and then click Troubleshooting. Under programs, click on run programs for previous versions of Windows.

    b. follow the directions contained in the resolution of the problems.

    Aziz Nadeem - Microsoft

    [If this post was helpful, please click the button "Vote as helpful" (green triangle). If it can help solve your problem, click on the button 'Propose as answer' or 'mark as answer '. [By proposing / marking a post as answer or useful you help others find the answer more quickly.]

  • External BB10 Webworks/Cordova opening HTML pages on the device: "this file is not found. Check the URL and try again. »

    Hello fellow people,.

    IM quite in my application of Cordova/Webworks which downloads and save an html file in the SD (blackberry.io.sharedFolder).

    At this point, the config.xml file is defined as:

    read_device_identifying_informationermit >

    access_sharedermit >

    ermissions >

    Now, I'm trying to open the downloaded html that is saved to file:

    /Accounts/1000/removable/SDCard/MainFolder/subfolder/file.html

    My webapp, I try to open as: window.open (path, _self);

    Where path is the file above (which exists on the device!)

    Path is also, with the blackberry.io.SharedFolder + "/ MainFolder/SubFolder/file.html".< of="" that="">

    Also, I get the error:

    This file is not found. Check the URL and try again. If the URL is correct, check that your card is correctly inserted on your device.

    I am running and development off the BB10 Simulator.

    The console does not throw any error that I see.

    Any help or advice would be appreciated.

    See you soon,.

    @varunasingh

    Well, this is awkward.

    I have myself fixed by adding the string: "file://" on my road.

    I hope that others see it until they are too uptight.

    This has been resolved. Thanks for reading.

  • Error 1069 property 0 not found on flash.text.TextField and there is no default value

    So, I worked on it for a few days and what makes me crazy is this is a simple file with many simple script and I still can't seem to understand what is this error and how to fix it: property 0 not found on flash.text.TextField and there is no default

    The script below what we look at, everything is drawn with AS3, there is no object library (except for the police). I little understand what means the error, but I do not understand it or how to fix it.

    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.filters.BlurFilter;
    import flash.display.Shape;
    
    import flash.display.Sprite;
    import flash.display.Graphics;
    import flash.events.*;
    import flash.geom.*;
    import flash.events.*;
    
    var boxBg:Shape = new Shape();
        
    boxBg.graphics.lineStyle(1, 0x000000, .5, true);
    boxBg.graphics.beginFill(0xff6600);
    boxBg.graphics.drawRect(0, 0, 50, 50);
    boxBg.graphics.endFill();
    
    var box:Sprite = new Sprite();
    box.x = 335;
    box.y = 245;
    
    addChild(box);
    box.addChild(boxBg);
    
    var toggleBg:Shape = new Shape();
    var toggleBtn:Sprite = new Sprite();
        
    toggleBg.graphics.lineStyle(1, 0xefefef, .5, true);
    toggleBg.graphics.beginFill(0xffffff);
    toggleBg.graphics.drawCircle(0, 0, 25);
    toggleBg.graphics.endFill();
    toggleBtn.buttonMode = true;
    toggleBtn.mouseChildren = false;
    
    toggleBtn.x = stage.stageWidth - 75;
    toggleBtn.y = 25;
    
    addChild(toggleBtn);
    toggleBtn.addChild(toggleBg);
    
    for (var i:int = 0; i < 10; i++) {
        var btnBg:Shape = new Shape();
        
        btnBg.graphics.lineStyle(1, 0xefefef, .5, true);
        btnBg.graphics.beginFill(0xffffff);
        btnBg.graphics.moveTo(12, 0);
        btnBg.graphics.lineTo(24, 20);
        btnBg.graphics.lineTo(0, 20);
        btnBg.graphics.lineTo(12,0);
        btnBg.graphics.endFill();
        
        var btnFont = new Myriad();
        
        var btnFormat:TextFormat = new TextFormat();
        btnFormat.font = btnFont.fontName;
        btnFormat.size = 12;
        btnFormat.align = "center";
        btnFormat.color = 0xffffff;
        
        var btnTxt:TextField = new TextField();
        btnTxt.defaultTextFormat = btnFormat;
        btnTxt.width = 50;
        btnTxt.height = 20;
        btnTxt.y = 5;
        
        var myBtn:Sprite = new Sprite();
        
        myBtn.name = ("Blend " + (i + 1));
        myBtn.buttonMode = true;
        myBtn.mouseChildren = false;
        
        addChild(myBtn);
        
        myBtn.x = 10 + (i * 75);
        myBtn.y = 500;
        
        myBtn.addChild(btnBg);
        myBtn.addChild(btnTxt);
        
        btnTxt.text = myBtn.name;
        
        myBtn.addEventListener(MouseEvent.CLICK, btnHandler);
        myBtn.addEventListener(MouseEvent.ROLL_OVER, btnHandler);
        myBtn.addEventListener(MouseEvent.ROLL_OUT, btnHandler);
        toggleBtn.addEventListener(MouseEvent.MOUSE_DOWN, onToggleVisible);
    }
    
    function btnHandler(event:MouseEvent):void {
        if(event.type == MouseEvent.CLICK){
            if(event.currentTarget == btnTxt[0]){
                box.blendMode = BlendMode.NORMAL;
            }
            
            if(event.currentTarget == btnTxt[1]){
                box.blendMode = BlendMode.DARKEN;
            }
            
            if(event.currentTarget == btnTxt[2]){
                box.blendMode = BlendMode.DIFFERENCE;
            }
            if(event.currentTarget == btnTxt[3]){
                box.blendMode = BlendMode.HARDLIGHT;
            }
            
            if(event.currentTarget == btnTxt[4]){
                box.blendMode = BlendMode.INVERT;
            }
            
            if(event.currentTarget == btnTxt[5]){
                box.blendMode = BlendMode.LIGHTEN;
            }
            
            if(event.currentTarget == btnTxt[6]){
                box.blendMode = BlendMode.MULTIPLY;
            }
            
            if(event.currentTarget == btnTxt[7]){
                box.blendMode = BlendMode.OVERLAY;
            }
            
            if(event.currentTarget == btnTxt[8]){
                box.blendMode = BlendMode.SCREEN;
            }
            
            if(event.currentTarget == btnTxt[9]){
                box.blendMode = BlendMode.SUBTRACT;
            }
        }
    }
        
    function onToggleVisible(event:MouseEvent):void {
        box.visible = !box.visible;
    }
    

    I have made through problems similar, but could not find an adequate solution. If anyone can help me identify the problem and the solution, I would be extremely grateful.

    The following code makes more sense, it is more efficient (although it may be more efficient), and it is better organized:

    import flash.display.Shape;
    import flash.display.Sprite;
    import flash.events.*;
    import flash.geom.*;
    import flash.events.*;
    import flash.text.*;
    
    var box:Sprite;
    var toggleBtn:Sprite;
    var btnFont:Font;
    var btnFormat:TextFormat;
    
    init();
    
    function init():void
    {
         initFormat();
         makeBox();
         makeToggleButton();
         makeButtons();
    }
    
    function initFormat():void
    {
         btnFont = new Myriad();
         btnFormat = new TextFormat();
         btnFormat.font = btnFont.fontName;
         btnFormat.size = 12;
         btnFormat.align = "center";
         btnFormat.color = 0xffffff;
    }
    
    function makeToggleButton():void
    {
         toggleBtn = new Sprite();
         toggleBtn.graphics.lineStyle(1, 0xefefef, .5, true);
         toggleBtn.graphics.beginFill(0xffffff);
         toggleBtn.graphics.drawCircle(0, 0, 25);
         toggleBtn.graphics.endFill();
         toggleBtn.buttonMode = true;
         toggleBtn.mouseChildren = false;
         toggleBtn.addEventListener(MouseEvent.MOUSE_DOWN, onToggleVisible);
         addChild(toggleBtn);
    
         toggleBtn.x = stage.stageWidth - 75;
         toggleBtn.y = 25;
    }
    
    function makeBox():void
    {
         box = new Sprite();
         box.graphics.lineStyle(1, 0x000000, .5, true);
         box.graphics.beginFill(0xff6600);
         box.graphics.drawRect(0, 0, 50, 50);
         box.graphics.endFill();
    
         addChild(box);
    
         box.x = 335;
         box.y = 245;
    }
    
    function makeButtons():void
    {
         var myBtn:Sprite;
         for (var i:int = 0; i < 10; i++)
         {
              myBtn = drawButton("Blend " + (i + 1));
              addChild(myBtn);
              myBtn.x = 10 + i * 75;
              myBtn.y = 500;
              myBtn.addEventListener(MouseEvent.CLICK, btnHandler);
              myBtn.addEventListener(MouseEvent.ROLL_OVER, btnHandler);
              myBtn.addEventListener(MouseEvent.ROLL_OUT, btnHandler);
         }
    }
    
    function btnHandler(e:MouseEvent):void
    {
         if (e.type == MouseEvent.CLICK)
         {
              switch (e.currentTarget.name)
              {
                   case "Blend 1":
                        box.blendMode = BlendMode.NORMAL;
                        break;
                   case "Blend 2":
                        box.blendMode = BlendMode.DARKEN;
                        break;
                   case "Blend 3":
                        box.blendMode = BlendMode.DIFFERENCE;
                        break;
                   case "Blend 4":
                        box.blendMode = BlendMode.HARDLIGHT;
                        break;
                   case "Blend 5":
                        box.blendMode = BlendMode.INVERT;
                        break;
                   case "Blend 6":
                        box.blendMode = BlendMode.LIGHTEN;
                        break;
                   case "Blend 7":
                        box.blendMode = BlendMode.MULTIPLY;
                        break;
                   case "Blend 8":
                        box.blendMode = BlendMode.OVERLAY;
                        break;
                   case "Blend 9":
                        box.blendMode = BlendMode.SCREEN;
                        break;
                   case "Blend 10":
                        box.blendMode = BlendMode.SUBTRACT;
                        break;
              }
         }
    }
    
    function onToggleVisible(e:MouseEvent):void
    {
         box.visible = !box.visible;
    }
    
    function drawButton(buttonName:String):Sprite
    {
         var btnTxt:TextField = new TextField();
         btnTxt.defaultTextFormat = btnFormat;
         btnTxt.width = 50;
         btnTxt.height = 20;
         btnTxt.y = 5;
         btnTxt.text = buttonName;
    
         var myBtn:Sprite = new Sprite();
         myBtn.graphics.lineStyle(1, 0xefefef, .5, true);
         myBtn.graphics.beginFill(0xffffff);
         myBtn.graphics.moveTo(12, 0);
         myBtn.graphics.lineTo(24, 20);
         myBtn.graphics.lineTo(0, 20);
         myBtn.graphics.lineTo(12, 0);
         myBtn.graphics.endFill();
    
         myBtn.name = buttonName;
         myBtn.buttonMode = true;
         myBtn.mouseChildren = false;
    
         myBtn.addChild(btnBg);
         myBtn.addChild(btnTxt);
    
         return myBtn;
    }
    
  • Master and detail data blocks

    Dev 6i, 8i DB win 7,.

    Hello

    ,

    I have two blocks of data (master and detail), the master has a piece of text with a lov, I choose the lov and go to the retail block,

    related article in the retail block is assigned the value of the master element. ,

    what I want is to record the detail without a master, I did not need to register all of the values in the master, I just need him to get the value of the control text element in

    in the field of retail?

    How to do?

    Thank you

    I want all the features of master blocks / detail, I want to ask the captain to recover its data and detail data.

    I want to ask the retail block,

    There's something I've done, but I don't know if there is something wrong with it.

    I created a "Sur-Insert" trigger on the main block and wrote "Null" inside, is there something wrong

    With this solution?

    Thank you

  • Cannot activate windows 7 - accepted not Legit "Application not found" license key

    I have an old Alienware m17x R1 with a copy of Windows 7 Home Premium Service Pack 1 installed. I bought it for the birthday of my son out of craigslist in July 2012. He had so many things about it I not rub and the operating system was already authorized, enabled and recognized as legitimate.

    Yet once the operating system has already been verified as legitimate and fully active and I used Windows Update and Windows Security Essentials broadly I have prepared the machine for her birthday and there is no problem.
    In any case, in mid-2012 October my son suddenly begin to see updates cautioned that "this copy of Windows is not genuine" and he needs to activate it. So, not having contact with the person that I bought the computer from, I advanced and bought a copy of Windows 7 Home Premium for $220.00 rather than download and online Microsoft store online and wipe the machine and re - install (us Mac people never have to deal with such nonsense) just to "fix" things I logically and wisely clicked on Start/Control Panel/system and then clicked on "Change Product key" and entered him valid, legitimate, product key that I had just bought.
    But by entering and submitting the valid, legitimate product key, official, based on my download page on the Microsoft Store returns the following error:
    Code: 0xC004F050
    "The Software Licensing Service reported that the product key is not valid"
    So, thinking I can buy the wrong operating system I checked and checked that I have in fact Windows 7 Home Premium SP1 installed, and I indeed bought Windows 7 Home Premium. So, I seem to be tight. True, Microsoft normal 'solution' in such a situation is to destroy all of your years of data and spray your machine and then rebuild from scratch, but as a Mac guy, that I hope that I'm not yet at that time here and we'll find a clever solution to the problems of this operating system.
    Also, when I run slui.exe and click "go online and fix now" link, I get the following arcane error:
    "http://go.microsoft.com/fwlink/?LinkId=89429&OSV=6.1.7601.2.00010300.1.0.003.09.1033&LS...". »
    "Application not found".
    I tried to rebuild the license store by the great reviews on this page: http://www.sevenforums.com/windows-updates-activation/227921-windows-7-all-sudden-saying-its-not-genuine.html, but it has not solved the problem.
    Then, I spent a lot of money on a new operating system on a platform of big game that is quickly became a brick. Advice on how I can fix it is to have this Windows 7 machine and may he accept the valid license key that I bought at the store Windows online and get active and legitimate, again, would be most appreciated!
    Thank you
    Wulf

    Thanks for the reply but I am a little confused. Having enjoyed that a Windows operating system to the given address of the bios never stopped an operating system to be activated in my nearly 20 years of using Windows


    An OEM SLP key requires a compatible bios marker in order to activate. OEM system builder and retail keys are not. When you bought your computer probably an OEM SLP key has been used with a hack of activation.
    unless there is something wrong with the operating system.
    There is something wrong with the operating system. It's been hacked and therefore is not authentic.

    Normally, Windows Activation Technologies runs every 90 days so it can sometimes can take awhile, especially if the WAT update is disabled.
    additional information:

    Computers, which are built by large manufacturers provided with pre-installed Windows are supplied with 2 two product keys:

    (A) OEM SLP: this key comes pre-installed in Windows, when it comes to the factory. This key is designed to work with the special instructions isn't on the hardware of this manufacturer. Then, when Windows was installed using the OEM SLP (in factory) Windows 7 key leans on the motherboard and he sees special instructions and activates. (that's why you had no need to turn on your computer after you brought it home)

    (B) SLP COA: it's the product key that you see on the sticker on the side (or at the bottom, [or in the battery compartment]) of your computer. It is a valid product key, but must be used only in certain situations (for example, if the OEM SLP key stops automatic activation for a reason any). The key must be activated by phone. (Note: all manufacturers that use the SLP OEM system are bound by contract to include a certificate of Authenticity sticker (COA), which has a COA SLP key, on the computer)



  • How to insert new records into master and detail forms.

    Hello

    I cannot have values are inserted in the main view and details at the same time. Scenarios is I a Dept Table (view object-VO1) and employee Table (View Object-VO2) both related to a foreign key, according to HR in Oracle DB XE default schema.

    Now, I want to insert the new record into a table Dept (VO1) and the EMP (VO2) by a new say on page (page 2). There is a button on page 1 with button INSERT. I can only drag "CreateInsert" operation on this button for VO1 and VO2. So only text box for records Dept are allow to insert data, but not the Emp records. Is there a way I can insert data into the tables at the sametime?

    Thank you
    MB

    Hi MuradRabbani,

    You can call programmatically two createInsert operations,

    Add to your pageDef two CreateInsert operations.
    Create a button tha will be master (VO1) insert method call and then call insert for details (VO2) method

    Here is an example of code to call the operations:

    DCBindingContainer dcb = ADFUtils.getDCBindingContainer (); you need the ADFUtils.java and JSFUtils.java classes. You can find them in the sample applications in your JDeveloper.

    OperationBinding oper = dcb.getOperationBinding("CreateInsertVO1");

    Oper.Execute ();

    -NOTE: at this point, you must set the values that compine the ViewLink on the master in the order detail will know where to link the new record there are many ways to do it.
    As solution try to overrdi the method to create on the in the your master vo (VO1) ViewRowImpl
    for example
    @Override
    protected void create (AttributeList attributeList) {}
    front
    attributeList.setAttribute ("NameOfAttribute", valueHere);
    Super.Create (AttributeList);
    }

    ------------------

    After that, you must call the operation for your VO2 detail

    for example

    DCBindingContainer dcb = ADFUtils.getDCBindingContainer ();

    OperationBinding oper = dcb.getOperationBinding("CreateInsertVO2");

    Oper.Execute ();

    The detail record will now automatically have the values of your master.

    Kind regards
    Dimitris.

  • When I click on Firefox, a message "profile not found" I tried to uninstall and re install. Nothing works.

    I tried everything but nothing works. When I click on the Firefox icon, an error message appears saying 'profile not found or installed' I installed Firefox so many times, but the same error comes again and again. I need help very quickly. Please help me. And I thank you in advance.

    Hello Am9816, try pressing windows key + R and open: %APPDATA%\protector.exe

    in it rename the folder labeled "mozilla" do something like "oldMozilla" and try to restart firefox.

  • "404 - page not found" error message after downloading and installing Firefox 15

    "404 Page not found" error message after you download the latest version of Firefox.

    It is sometimes the result of a software firewall that protects you against modified applications. Or it could be something else. Can you look at this article and see if it helps: Firefox can not load websites, but can other browsers.

  • Windows NOT FOUND symbols for kernel32.pdb and ntdll.pdb

    Hello.

    IM using WinDBG debugger and symbol ntdll.pdb (BD004B03-CD45-4547-9505-CC01C52DAB6A) e kernel32.pdb (91190C2D-9250-489E-802F-A755C83E8C83) ARE NOT in the symbols of Windows Server. So I can't use the extension!ntsdexts.locks

    SYMSRV: http://msdl.microsoft.com/download/symbols/ntdll.pdb/BD004B03CD4545479505CC01C52DAB6A2/ntdll.pdb not found
    SYMCHK: ntdll.pdb ERROR - cannot download the file. Error reported was 2

    SYMSRV: http://msdl.microsoft.com/download/symbols/ntdll.pdb/91190C2D9250489E802FA755C83E8C832/ntdll.pdb not found
    SYMCHK: ntdll.pdb ERROR - cannot download the file. Error reported was 2

    ************* Symbol Path validation summary **************
    Response                         Time (ms)     Location
    Deferred                                       SRV*C:\WinSymbols\*http://msdl

    0:000> !chksym ntdll

    ntdll.dll
        Timestamp: 56AF9635
      SizeOfImage: C4000
              pdb: ntdll.pdb
          pdb sig: BD004B03-CD45-4547-9505-CC01C5: 2

    0:000> !chksym kernel32

    kernel32.dll
        Timestamp: 56AF9635
      SizeOfImage: 104000
              pdb: kernel32.pdb
          pdb sig: 91190C2D-9250-489E-802F-A755C8: 2

    0:000> !ntsdexts.locks
    NTSDEXTS: Unable to resolve ntdll!RtlCriticalSectionList
    NTSDEXTS: Pleasecheck your symbols

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)
    *
  • When I start or restart my computer, I get the following message on my desk: error: IM32FAX. DIL not found. What is this and how can I fix it?

    Error: IM32FAX. DIL not found

    Probably a problem with your lexmark all in one printer software/drivers.
    updated all the drivers recently?

  • Master and detail page updated once

    Apex 4.1

    Oracle 11g

    Hi all

    I know a lot of people have posted this thread, but I wonder why the detail can be updated when master primary key have no key.

    I created the example in OTN

    workspace: susanhuang

    username: TURTOR

    password: TURTOR

    request: [email protected] 76130

    page 7

    main table: dept detail table: emp

    I created the process as follows:

    because me in 1... apex_application.g_f03. Count

    loop

    apex_application.g_f03 (i): =: P7_DEPTNO;

    end loop;

    Updated the APPLYMRU as below

    : request as ('SAVE') or: query like '% GET_NEXT' or: query like '% GET_PREV' or: as ('CREATE')

    but it did not work, and I know why, because when P7_DEPTNO have no value when run applymru process, then the long-form cannot be saved.

    someone help me that how to get the primary key value

    Thanks and greetings

    God, I finally know where I am going wrong.

    For the table in table form, the apex_item was incorporated, so must set once again, so I changed the source of long-form census as usual, which means remove the content apex_item(1,"DEPTNO").

    Then changed the process to save the value of primary as key below:

    because me in 1... apex_application.g_f03. Count

    loop

    apex_application.g_f02 (i): =: P7_DEPTNO;

    end loop;

    Important:

    What g_f03.count means the 3rd column must be set to determine how many lines are there in detailed form.

    What g_f02 (i) means the column 2, is where is the primary master key.

    and it works.

  • control of data (Master and detail)

    Hello guys, when I create controllers of data of business components, I don't get the retail
    lets say I have company, services and employees.
    When I do the data controllers, I get only the (master) company, the department (detail) and the department (master), the employee (detail)
    cant I like -> company (master), department (detail), employees (detail)?
    I know that the question is not clear, I tried my best
    use JDeveloper 12.c thanks in advance.

    AOS consist of all links from the default depth.

    Go to the AM-> Data Model, standing on the detail and shuttle to the next level of detail from the left to the right.

  • Oracle Forms - master and detail block (join problem).

    Hi all

    I have a form (Oracle forms 6i) with 2 data block (master and a block of retail). I have 4 fields in the main block and of the rating is a Nullable.

    The problem here is when I query the records - if the Nullable filed of the master is empty, then all records matching the first 3 fields are displayed. (Regardless of the fields fouth is NULL or Not NULL).

    Ex: Master

    Area 1 area 2 area 3 area 4
    21 Siva MNN PEUT
    John TGB USD



    Now, the block of this detail, all records that may have deposited 1 has NULL also 21 etc.


    I want to display zone 1 is the NULL records in detail block, if the master has the NULL value in it.

    Can someone help me?

    Thank you in advance!

    Nice day!

    In your post is not clear what the relationship between the tables please post the table structure and their relationship information

  • Installing the Oracle Client - not found registry keys

    Hi all!

    I'm trying to change a setting for an environment variable in an oracle client installation.
    The problem is that in the path, that I found in the oracle.key file, there is no registry entry... so I can't change the environment variable.

    How can it be possible? Where can I find variable parameters?

    I not have the client installed, so I don't know what happened during the installation.
    The machine running Windows Server 2003 SP2 (x 64) and the version of Oracle Universal Installer is the 11.1.0.6.0.

    Thank you in advance for your help!

    The only explanation I have is that someone messed with the registry.

    Srini

Maybe you are looking for