Installing Designer 6i

I just downloaded Oracle 8.1.6 and Designer 6i. I installed the database on a Win2000 station and all seems to work well. Then I installed Designer 6i on a Win98SE station. I tried to connect to the DB with SQL*Plus 8 and all work. Now, I want to use Designer. I can't because "the user does not have an installed Repository". So I open the Repository Administration Utility to create it and I click on Install button. A window appears where I can choose for a Small, Medium or Large Repository Size. I choose Medium, I click on Start and this error msg appears:
CDR-21207: Executable File Not Found.
Does someone have the same problem?
null

I have this same setup as you, but I did not get the error. Did you download the install documentation? It is actually very good in the 6i version. Did you create the correct tablespaces or just lumping them all together? Follow the Oracle Designer 6i Installation Guide, if you aren't already doing so.
I had no problems.
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Grizzzly:
I just downloaded Oracle 8.1.6 and Designer 6i. I installed the database on a Win2000 station and all seems to work well. Then I installed Designer 6i on a Win98SE station. I tried to connect to the DB with SQL*Plus 8 and all work. Now, I want to use Designer. I can't because "the user does not have an installed Repository". So I open the Repository Administration Utility to create it and I click on Install button. A window appears where I can choose for a Small, Medium or Large Repository Size. I choose Medium, I click on Start and this error msg appears:
CDR-21207: Executable File Not Found.
Does someone have the same problem?<HR></BLOCKQUOTE>
null

Similar Messages

  • Can I install Design Standard on more than one computer?

    Can I install Design Standard on more than one computer?

    Yes, your license provides for installing and activating the software on two machines.  Any application within the suite can only be in use on one of the machines at any given time.

  • Adobe acrobat pro will not open 3 weeks after installing design web pro?

    I installed Design web premium on my computer and all programs work and adobe acrobat pro worked for 3 weeks and now it will not open.  I am at a loss. Help!!!

    If Acrobat will open, go to Help>Repair to try to fix it. If not, go to Control Panel>Programs & Preferences and update from there. After the update, go back to the help menu and do the updates.

  • Installing Designer 6i on Oracle 9i in W2K

    I am trying to install Designer 6i into 9i Database. I received
    an error when RAU procced to CKGLBWRK.SQL. The error message is
    the following:
    ORA-04068: existing state of packages has been discarded
    ORA-04063: package body "REPO_OWNER.JR_ACC_RIGHTS" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 108
    I have tried to follow Mr. Sosnicki's insturction to correct the
    reserved words errors already.
    I am sorry that I have to use 9i and Designer 6ibecause we are
    setting up new servers and we don't want to invest too many time
    on 8i.
    Thank you.
    Philip

    Hi,
    Unfortunately the Oracle9i database is not yet supported on
    available versions of Designer 6i.
    See the following post:
    database connectivity problem
    for details on a version supporting the Oracle9i database.
    Brian

  • Trouble installing Designer Repository under XE

    I have installed Oracle 10g XE on another PC (as a test system), and I have the XE Client on my own laptop. I also have SQL Designer installed, and both can talk to the copy of XE just fine. However, when I try to install the Designer Suite, I've run into a couple of major problems, primarily with the repository.
    I seem to be able to create the repository ok, but when I try to install it, I get the error messages (shown below) when I get to the step called "cksysfol.sql". I let the Repository installation process continue, and no other errors were raised.
    I tried to research this on Oracle's discussion forums, and found very little that addresses anything like this. Several posts suggest that creating a Designer Repository is not possible under XE. Other posts seem to indicate that other people have been successful in installing a Designer repository. I also found references that said I needed to enable "Fine-Grained Access Control" as part of the original database installation process, but I didn't see any place where that was even an option.
    I need to install Designer because I need access to the Entity Relationship Diagram feature for a project I'm working on.
    What do I need to do to get the Repository installed correctly?
    ================================================================================
    Message
    ORA-04063: package body "REPOS_MANAGER.JR_REG_IO" has errors
    Message
    ORA-06508: PL/SQL: could not find program unit being called: "REPOS_MANAGER.JR_REG_IO"
    Message
    ORA-06512: at "REPOS_MANAGER.JR_FOLDER", line 535
    Message
    ORA-06512: at "REPOS_MANAGER.SDD_FOLDERS_I", line 136
    Message
    ORA-04088: error during execution of trigger 'REPOS_MANAGER.SDD_FOLDERS_I'
    Message
    ORA-06512: at line 1270
    Message
    RME-02124: Failed to execute SQL statement:
    DECLARE
    ar_irid number;
    wkarea_irid          number;
    dummy_wrkarea boolean := FALSE;
    folder_irid number;
    folder_ivid number;
    org_irid number;
    org_ivid number;
    max_default_value_types number;
    rtn_id number;
    vat_type number;
    comment varchar2(100);
    ps1_irid number;
    ps1_ivid number;
    l_SUPPORTS_DESIGNER varchar2(1);
    l_SUPPORTS_JDEVEE varchar2(1);
    TYPE t_Value_Type is record
    ( name varchar2(20)
    , datatype varchar2(20)
    , lob_flag varchar2(1)
    , derived_from binary_integer -- index number of source record
    , irid number -- store irid for later use
    Type tt_Value_Type is table of t_Value_Type index by binary_integer;
    init_value_types tt_Value_Type;
    BEGIN
    dbms_output.enable(1000000);
    -- Added for Bug 1326447
    update ck_installed_objects
    set ci_created = 'N'
    where ci_stage='CKSYSFOL';
    -- End addition for Bug 1326447
    select SUPPORTS_JDEVEE
    , SUPPORTS_DESIGNER
    into l_SUPPORTS_JDEVEE
    , l_SUPPORTS_DESIGNER
    from rm$repositories;
    -- Check Global Shared Workarea exists
    dbms_output.put_line('* Checking if Global Shared Wokrarea exists' );
    begin
    select irid
    into wkarea_irid
    from I$sdd_workareas
    where name = 'GLOBAL SHARED WORKAREA';
    exception when no_data_found then
    dummy_wrkarea := TRUE;
    -- Create a dummy workarea to put the SYSTEM FOLDER in
    wkarea_irid := jr_workarea.create_workarea( user,
    'SYSTEM WORKAREA',
    'Temporay WorkArea used to create the SYSTEM FOLDER');
    end;
    -- Set workarea context
    jr_context.set_workarea(wkarea_irid);
    -- Now create a FOLDER called SYSTEM FOLDER
    dbms_output.put_line('* Creating SYSTEM FOLDER');
    -- USBUG 1006132 CREATION OF SYSTEM FOLDER RESULTING IN DANGLINGS RM DATA CAUSING FP TO HANG
    -- USBUG 989215 NEED TO IDENTIFY SYSTEM FOLDER AND ALL ITS CONTENTS BY GUID
    folder_irid := 1773150433009805186156169550188005433;
    folder_ivid := 1773150433009809908522652419833219129;
    insert into SDD_FOLDERS ( IRID
    , IVID
    , DATE_CREATED
    , CREATED_BY
    , OWNING_USER
    , ELEMENT_TYPE_NAME
    , CONTAINER_SUBTYPE
    , REMARK
    , NAME
    , OS_TIMESTAMP
    , ROOT_FLAG
    , SYSTEM_ELEMENT_FLAG )
    values ( folder_irid
    , folder_ivid
    , SYSDATE
    , USER
    , USER
    , 'CEL'
    , 'FOL'
    , 'SYSTEM FOLDER'
    , 'SYSTEM FOLDER'
    , SYSDATE
    , 'Y'
    , 'Y');
    -- USBUG 1006123 NEED TO PREVENT USERS UPDATING CONTENTS OF THE SYSTEM FOLDER
    -- USBUG 1103313 CHANGES TO ALLOW SYSTEM FOLDER TO BE VERSIONED
    -- create the appropiate access rights
    dbms_output.put_line('* Creating access rights for SYSTEM FOLDER');
    insert into sdw_access_rights ( IRID
    , IVID
    , GRANTEE_REFERENCE
    --------------------------------------------------------------------------------

    This is a bit late, but in case you were still interested, I have successfully installed Designer repositories on XE. Just make sure the repository owner has the correct db privileges as well as quota on the repository tablespaces.
    Thanks,
    Dan

  • Unable to install design studio add-on onto BI Platform

    I try to install design studio add-on onto bı platform 4.0 sp9 and version of design studio is 1.2. because i can not use design studio client tool without installing add- on for deploy application server.here.By the way, login credentials are correct,  you can find errors details in the attachment.
    anybody help me about this issue?, thanks in advance,

    Hi Tammy,
    First of all, thanks for quick respond
    second image is no matter i will choose third ones.However, the next step, i try to get pass cmc login within the first image but i could not, i can login cmc with these login credentials which i used add-on process side, i do not think that this issue is related to login credentials,
    another way that i can deploy analisys application server within CMC ?

  • Installing Design Standard CS3 without Flash Player 9...?

    Hi,
    I hope someone can advise me here?
    I would love to be able to install Design Standard CS3 without the Flash Player 9 Plugins... Both Active X and Plug-In versions.
    Is this at all possible?
    I have scanned through the various XML files on the install DVD and have seen entries for both Active X and Plugin versions of Flash Player 9 in the setup.xml file.
    Removing these lines from the XML doesn't make any difference and Flash Player is still installed as part of the CS3 install.
    I have also tried renaming the folders containing the Flash MSI's and the installation fails at the 'Shared Components' stage.
    I'm obviously missing a trick here but hoped someone might know the answer?
    Many thanks,
    Gav

    I'm sure there are deployment instructions and tools for CS3 somewhere in the Dev Center. If this is only for your own perusal, then don't bother. any isntall of a newer version of Flash Player will superceed the old one.
    Mylenium

  • Error installing Designer's Repository

    I try to install designer 10 R2 123 . When I try to create a new application_system I have and error RME with an associated error ORA 06508 could not find the program unit;
    When I looked with view objects two package bodies fail to compile, JR_REG_IO and RM_DBG
    error:PLS 201 identifier UTL_file must be declared.
    Can somebody help me?

    First of all, use the repository owner's username and password only to install the repository, and do administrative tasks, like granting a new user access to the repository, or upgrading the repository. Don't use it for day to day work, including installing the tutorial.
    Second, did you set the registry variables EXECUTE_EXP and EXECUTE_IMP to point to the versions of your EXP.EXE and IMP.EXE that go with your database? This will be in a different Oracle Home from your Designer installation. This is very important both when installing or upgrading the repository, and when importing or exporting data to and from the repository. A mismatch between the IMP version and the database version can be a problem.
    A TNS error can be many things. Can you give us the text of the error and the full error code?

  • Problems installing Designer 6.0 on Oracle 8.1.7

    I'm trying to install Designer 6.0 for NT on an Oracle 8.1.7 database running on Win2K. When compiling the package cioue_element_type the server "hangs". I have to shutdown the database to get rid of the process.

    Marcel,
    I had the same problem. Oracle gives as an answer that Designer 6.0 is not supported against 8.1.7. In the specified package a statement is issued which is a problem for 8.1.7. I changed that package and now it works fine.
    Comment as below and replace with the delete statement, then it compiles fines.
    I don't know if any problem can occur after that, but a Migration from a 1.3.2 repository to 6i works fine through this repository. Hope this helps.
    Kind Regards
    Jan Boersma
    Email: [email protected]
    see here:
    -- Remove Reserved Names entry and comment
    -- delete from sdd_reserved_names
    -- where (rn_res_name, rn_type) in ((upper(view_name), 'VIEW')
    -- ,(upper(pack_name), 'PACKAGE')
    -- ,(upper(pack_name), 'PACKAGE BODY')
    -- ,(upper(app_view_name), 'VIEW BODY'));
    delete from sdd_reserved_names
    where ((rn_res_name = UPPER(view_name) AND rn_type = 'VIEW') OR
    (rn_res_name = UPPER(pack_name) AND rn_type = 'PACKAGE') OR
    (rn_res_name = UPPER(pack_name) AND rn_type = 'PACKAGE BODY') OR
    (rn_res_name = UPPER(app_view_name) AND rn_type = 'VIEW BODY'));
    null

  • Installing Designer 6i onto Oracle 9.2.0.1.0

    I am trying to install Designer 6i on Oracle 9.2.0.1.0. The trouble is I receive an error telling something like (i'm translating from spanis into english) 'a key value for getvalue is not found' and it offers me to retry, continue or abandon.
    If i choose continuing, the installer says:
    'You can't not install to the same home as Oracle Designer, please enter a new Oracle home name and path.'
    But i have no designer product installed yet.
    Can you help me, please?

    Hello Jose,
    Unfortunately, Designer 6i is not currently supported on
    the 9.2 version of the database. Only 9i Designer is
    supported.
    The latest available version of 6i, Release 4.5, is supported on 9.0.1.3 though.
    Therefore, I'm unable to really help, as we have not completely tested a 6i/9.2 configuration.
    All the latest certification information is as ever
    available from Metalink (http://metalink.oracle.com).
    Sorry I cannot be of more help.
    Regards,
    Dominic
    Designer Product Management
    Oracle

  • Problems Installing Designer 6.0 over Oracle 8i (Linux SUSE 8.0)

    I have problems installing Designer 6.0 over Oracle 8i (Linux SUSE 8.0). When I try to create the repository the installation hang up. I try over Oracle 8i (WIndows 2000) and the problems remain.
    Please any body can help?
    Is it possible to install Designer 6i and generate forms 6.0 (I mean for using Developer 6.0 (NOT 6i))?
    Best regards,
    JAGC

    Marcel,
    I had the same problem. Oracle gives as an answer that Designer 6.0 is not supported against 8.1.7. In the specified package a statement is issued which is a problem for 8.1.7. I changed that package and now it works fine.
    Comment as below and replace with the delete statement, then it compiles fines.
    I don't know if any problem can occur after that, but a Migration from a 1.3.2 repository to 6i works fine through this repository. Hope this helps.
    Kind Regards
    Jan Boersma
    Email: [email protected]
    see here:
    -- Remove Reserved Names entry and comment
    -- delete from sdd_reserved_names
    -- where (rn_res_name, rn_type) in ((upper(view_name), 'VIEW')
    -- ,(upper(pack_name), 'PACKAGE')
    -- ,(upper(pack_name), 'PACKAGE BODY')
    -- ,(upper(app_view_name), 'VIEW BODY'));
    delete from sdd_reserved_names
    where ((rn_res_name = UPPER(view_name) AND rn_type = 'VIEW') OR
    (rn_res_name = UPPER(pack_name) AND rn_type = 'PACKAGE') OR
    (rn_res_name = UPPER(pack_name) AND rn_type = 'PACKAGE BODY') OR
    (rn_res_name = UPPER(app_view_name) AND rn_type = 'VIEW BODY'));
    null

  • Where to install designer.sar on ITS

    Hi,
    I have ITS 6.20.
    Can any one let me know the procedure to install designer.sar, which is used for style sheet generation.
    Provide me also with rele4vant note/documentation.
    Please reply to me urgently.
    Regards,
    Harish
    (Useful answers will definately be rewqarded)

    Hi
    service.sap.com/patches -> SAP WORKPLACE -> SAP WORKPLACE 2.11 -> Binary Patches -> WORKPLACE 2.11 ITS PACKAGE -> OS independent -> DESIGNER_5-10000951.SAR).
    If you log onto http://service.sap.com/patches
    Click Search & Search for all categories
    Search for DESIGNER_5-10000951.SAR
    You can then add to download basket and download...
    Or this link may work.... https://websmp205.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002474952002D

  • I'm trying to install Design sutie 5.5 but lost theserial number. It is on an older computer that is crash and i need to put it on a newer computer how can i get it.

    I'm trying to install Design sutie 5.5 but lost theserial number. It is on an older computer that is crash and i need to put it on a newer computer how can i get it?

    If you registered the software when you first installed it then you should be able to find the serial number available thru your Adobe account online.

  • Setup fails while installing DESIGNER 9204

    Hi all,
    I am trying to install Designer 9204 over existing DS 902 and Designer 9202 in Windows XP with Oracle 9203.
    I got the following error:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x77f52109
    Function name=stricmp
    Library=C:\WINDOWS\System32\ntdll.dll
    Current Java thread:
         at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(Native Method)
         at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(OiipwWin32NativeCalls.java:496)
         at oracle.sysman.oii.oiix.OiixRegistryOps.RegSetValue(OiixRegistryOps.java:270)
         at ssRegSetValuew32.installAction(ssRegSetValuew32.java:91)
         at oracle.sysman.oii.oiis.OiisCompActions.doActionWithException(OiisCompActions.java:1536)
         at oracle.sysman.oii.oiis.OiisCompActions.doActionImpl(OiisCompActions.java:1303)
         at oracle.sysman.oii.oiis.OiisCompActions.doAction(OiisCompActions.java:736)
         at Components.oracle.repository.cktl61.v9_0_2_91_10.CompActions.doAction(Unknown Source)
         at Components.oracle.repository.cktl61.v9_0_2_91_10.CompInstallPhase2.doActionP3RegSetValue44(Unknown Source)
         at Components.oracle.repository.cktl61.v9_0_2_91_10.CompInstallPhase2.stateChangeActions(Unknown Source)
         at Components.oracle.repository.cktl61.v9_0_2_91_10.CompActions.stateChangePhase2Actions(Unknown Source)
         at oracle.sysman.oii.oiif.oiifw.OiifwInstallPhaseWCCE$OiifwComponentIP2WCCE.performStateChangeActions(OiifwInstallPhaseWCCE.java:1054)
         at oracle.sysman.oii.oiif.oiifw.OiifwInstallPhaseWCCE$OiifwComponentInstallPhaseWCCE.doOperation(OiifwInstallPhaseWCCE.java:608)
         at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:137)
         at oracle.sysman.oii.oiif.oiifw.OiifwInstallPhaseWCCE.doOperation(OiifwInstallPhaseWCCE.java:260)
         at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:137)
         at oracle.sysman.oii.oiif.oiifw.OiifwActionsPhaseWCDE.doOperation(OiifwActionsPhaseWCDE.java:417)
         at oracle.sysman.oii.oiif.oiifb.OiifbLinearIterator.iterate(OiifbLinearIterator.java:109)
         at oracle.sysman.oii.oiic.OiicInstallSession$OiicSelCompsInstall.doOperation(OiicInstallSession.java:939)
         at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:137)
         at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:702)
         at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:194)
         at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:367)
         at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:841)
    Dynamic libraries:
    0x00400000 - 0x00405000      C:\DOCUME~1\ikarp\LOCALS~1\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\javaw.exe
    0x77F50000 - 0x77FF7000      C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F46000      C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E5D000      C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x78086000      C:\WINDOWS\system32\RPCRT4.dll
    0x77D40000 - 0x77DCC000      C:\WINDOWS\system32\USER32.dll
    0x77C70000 - 0x77CB0000      C:\WINDOWS\system32\GDI32.dll
    0x77C10000 - 0x77C63000      C:\WINDOWS\system32\MSVCRT.dll
    0x6D420000 - 0x6D4EE000      C:\DOCUME~1\ikarp\LOCALS~1\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\hotspot\jvm.dll
    0x76B40000 - 0x76B6C000      C:\WINDOWS\system32\WINMM.dll
    0x6D220000 - 0x6D227000      C:\DOCUME~1\ikarp\LOCALS~1\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\hpi.dll
    0x6D3B0000 - 0x6D3BD000      C:\DOCUME~1\ikarp\LOCALS~1\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\verify.dll
    0x6D250000 - 0x6D266000      C:\DOCUME~1\ikarp\LOCALS~1\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\java.dll
    0x6D3C0000 - 0x6D3CD000      C:\DOCUME~1\ikarp\LOCALS~1\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\zip.dll
    0x6D020000 - 0x6D128000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\awt.dll
    0x73000000 - 0x73023000      C:\WINDOWS\System32\WINSPOOL.DRV
    0x76390000 - 0x763AC000      C:\WINDOWS\system32\IMM32.dll
    0x771B0000 - 0x772D1000      C:\WINDOWS\system32\ole32.dll
    0x5AD70000 - 0x5ADA4000      C:\WINDOWS\System32\uxtheme.dll
    0x6D1E0000 - 0x6D21B000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\fontmanager.dll
    0x69000000 - 0x69211000      C:\WINDOWS\System32\atioglxx.dll
    0x10000000 - 0x1000D000      C:\WINDOWS\system32\PGPhk.dll
    0x08EE0000 - 0x08F04000      C:\WINDOWS\System32\Hook98.dll
    0x08F20000 - 0x08F3E000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\JavaAccessBridge.dll
    0x6D2C0000 - 0x6D2DB000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\jre\bin\jpeg.dll
    0x095C0000 - 0x095D5000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\oui\lib\win32\oraInstaller.dll
    0x77C00000 - 0x77C07000      C:\WINDOWS\system32\VERSION.dll
    0x09C50000 - 0x09C5C000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\ClusterQueries.dll
    0x71AB0000 - 0x71AC5000      C:\WINDOWS\system32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71B20000 - 0x71B31000      C:\WINDOWS\system32\MPR.dll
    0x09D70000 - 0x09D7F000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\WindowsGeneralQ.dll
    0x0A1A0000 - 0x0A1B4000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\NtEnv221.dll
    0x0A2D0000 - 0x0A2E2000      C:\Documents and Settings\ikarp\Local Settings\Temp\OraInstall2003-03-21_11-23-41AM\WindowsFolders21041.dll
    0x773D0000 - 0x77BC7000      C:\WINDOWS\system32\SHELL32.dll
    0x70A70000 - 0x70AD4000      C:\WINDOWS\system32\SHLWAPI.dll
    0x71950000 - 0x71A34000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.10.0_x-ww_f7fb5805\comctl32.dll
    0x77340000 - 0x773CB000      C:\WINDOWS\system32\comctl32.dll
    0x76FD0000 - 0x77048000      C:\WINDOWS\System32\CLBCATQ.DLL
    0x77120000 - 0x771AB000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77050000 - 0x77115000      C:\WINDOWS\System32\COMRes.dll
    0x76670000 - 0x76757000      C:\WINDOWS\System32\SETUPAPI.dll
    0x75A70000 - 0x75B15000      C:\WINDOWS\system32\USERENV.dll
    0x71C20000 - 0x71C6E000      C:\WINDOWS\System32\netapi32.dll
    0x76980000 - 0x76987000      C:\WINDOWS\System32\LINKINFO.dll
    0x76990000 - 0x769B4000      C:\WINDOWS\System32\ntshrui.dll
    0x76B20000 - 0x76B35000      C:\WINDOWS\System32\ATL.DLL
    0x76C90000 - 0x76CB2000      C:\WINDOWS\system32\imagehlp.dll
    0x6D510000 - 0x6D58D000      C:\WINDOWS\system32\DBGHELP.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\System32\PSAPI.DLL
    Local Time = Fri Mar 21 11:25:20 2003
    Elapsed Time = 96
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.3.1_01 mixed mode)
    How to fix this?
    BR, Igor Karp

    Simon,
    it passes the copying phase and fails at the setup.
    From the install logs i see that the last things setup was doing were:
    Starting install Install Phase 2 of component Oracle Repository Command Line Tool
    Calling Query areasQueries2.3.0.1.0 getProductHome
    name = oracle.swd.jre
    startVersion = 1.3.1.0.0
    endVersion = 1.3.1.0.0
    acceptCompatible = true
    Query Returned: C:\Program Files\Oracle\jre\1.3.1
    Setting variable 'JRE_HOME' to 'C:\Program Files\Oracle\jre\1.3.1'. Received the value from a code block.
    Setting variable 'JVM_CLASSPATH_DEFAULT_THIN_JDBC' to '-Djava.class.path=C:\oracle\ora92ids\REPADM61\JAVA\jr_cmd.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_cws.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_dep.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_diff.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_ia.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_jol.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_vhv.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_file.jar;C:\oracle\ora92ids\REPADM61\JAVA\jgl3.1.0.jar;C:\oracle\ora92ids\REPADM61\JAVA\xmlparserv2.jar;C:\oracle\ora92ids\FORMS90\JAVA\f90jdapi.jar;C:\oracle\ora92ids\REPADM61\JAVA\jrapi.jar;C:\oracle\ora92ids\jdbc\lib\classes12.zip;C:\oracle\ora92ids\jlib\jewt4.jar;C:\oracle\ora92ids\jlib\share.jar;C:\oracle\ora92ids\jlib\help4.jar;C:\oracle\ora92ids\jlib\oracle_ice5.jar;C:\Program Files\Oracle\jre\1.3.1\lib\i18n.jar'. Received the value from a code block.
    Calling Action w32RegActions2.3.0.0.0 RegCreateKey
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
    Calling Action w32RegActions2.3.0.0.0 RegCreateKey
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPADM61
    Calling Action w32RegActions2.3.0.0.0 RegCreateKey
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPADM61\DEFAULT_JVM_PARAMS_THIN_JDBC
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = CKTL61
         data = C:\oracle\ora92ids\REPADM61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1
         value = CKTL61
         data = C:\oracle\ora92ids\REPADM61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = RMMSGS61
         data = C:\oracle\ora92ids\REPADM61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1
         value = RMMSGS61
         data = C:\oracle\ora92ids\REPADM61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = CDRMSG61
         data = C:\oracle\ora92ids\REPADM61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1
         value = CDRMSG61
         data = C:\oracle\ora92ids\REPADM61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = CDAMSG61
         data = C:\oracle\ora92ids\REPADM61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1
         value = CDAMSG61
         data = C:\oracle\ora92ids\REPADM61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = CDA_UTILITY_MSG_DATA
         data = CDA,RMMSGS61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = CDA_UTILITY_MSG_DATA
         data = CDA,RMMSGS61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = CDR_UTILITY_MSG_DATA
         data = CDR,CDRMSG61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = CDR_UTILITY_MSG_DATA
         data = CDR,CDRMSG61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = RME_UTILITY_MSG_DATA
         data = RME,RMMSGS61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = RME_UTILITY_MSG_DATA
         data = RME,RMMSGS61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = ORA_UTILITY_MSG_DATA
         data = ORA,RDBMS
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = ORA_UTILITY_MSG_DATA
         data = ORA,RDBMS
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = PLS_UTILITY_MSG_DATA
         data = PLS,PLSQL
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = PLS_UTILITY_MSG_DATA
         data = PLS,PLSQL
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = IWP_UTILITY_MSG_DATA
         data = IWP,IWPMSG61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = IWP_UTILITY_MSG_DATA
         data = IWP,IWPMSG61
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = SERVER_API_DEPENDENCY_MANAGER61
         data = 4.0.12.91.9
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPADM61
         value = SERVER_API_DEPENDENCY_MANAGER61
         data = 4.0.12.91.9
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = SERVER_API_COMMAND_LINE61
         data = 4.0.12.91.9
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPADM61
         value = SERVER_API_COMMAND_LINE61
         data = 4.0.12.91.9
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = IAMAP61
         data = C:\oracle\ora92ids\REPADM61\java\iamappings.pmf
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = IAMAP61
         data = C:\oracle\ora92ids\REPADM61\java\iamappings.pmf
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = IADTD61
         data = file:/C:/oracle/ora92ids/REPADM61/JAVA/IA.DTD
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = IADTD61
         data = file:/C:/oracle/ora92ids/REPADM61/JAVA/IA.DTD
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetNumValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = DEPIMP_BATCH_SIZE
         data = 1
    Calling Action w32RegActions2.3.0.0.0 RegSetNumValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = DEPIMP_BATCH_SIZE
         data = 1
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = DEPIMP_VALIDATE_XML
         data = N
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPCOM61
         value = DEPIMP_VALIDATE_XML
         data = N
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = JVM_CLASSPATH_DEFAULT_THIN_JDBC
         data = -Djava.class.path=C:\oracle\ora92ids\REPADM61\JAVA\jr_cmd.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_cws.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_dep.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_diff.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_ia.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_jol.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_vhv.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_file.jar;C:\oracle\ora92ids\REPADM61\JAVA\jgl3.1.0.jar;C:\oracle\ora92ids\REPADM61\JAVA\xmlparserv2.jar;C:\oracle\ora92ids\FORMS90\JAVA\f90jdapi.jar;C:\oracle\ora92ids\REPADM61\JAVA\jrapi.jar;C:\oracle\ora92ids\jdbc\lib\classes12.zip;C:\oracle\ora92ids\jlib\jewt4.jar;C:\oracle\ora92ids\jlib\share.jar;C:\oracle\ora92ids\jlib\help4.jar;C:\oracle\ora92ids\jlib\oracle_ice5.jar;C:\Program Files\Oracle\jre\1.3.1\lib\i18n.jar
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\REPADM61\DEFAULT_JVM_PARAMS_THIN_JDBC
         value = JVM_CLASSPATH_DEFAULT_THIN_JDBC
         data = -Djava.class.path=C:\oracle\ora92ids\REPADM61\JAVA\jr_cmd.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_cws.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_dep.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_diff.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_ia.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_jol.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_vhv.jar;C:\oracle\ora92ids\REPADM61\JAVA\jr_file.jar;C:\oracle\ora92ids\REPADM61\JAVA\jgl3.1.0.jar;C:\oracle\ora92ids\REPADM61\JAVA\xmlparserv2.jar;C:\oracle\ora92ids\FORMS90\JAVA\f90jdapi.jar;C:\oracle\ora92ids\REPADM61\JAVA\jrapi.jar;C:\oracle\ora92ids\jdbc\lib\classes12.zip;C:\oracle\ora92ids\jlib\jewt4.jar;C:\oracle\ora92ids\jlib\share.jar;C:\oracle\ora92ids\jlib\help4.jar;C:\oracle\ora92ids\jlib\oracle_ice5.jar;C:\Program Files\Oracle\jre\1.3.1\lib\i18n.jar
         updateType = null
    Calling Action w32RegActions2.3.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = Software\ORACLE\HOME1\CKTL61
         value = IAFILTER61
         data = C:\oracle\ora92ids\REPADM61\JAVA\IAFILTERS.FIL
         updateType = null
    BR, Igor Karp
    PS. Should I switch to different forum with this issue?

  • Installing Designer

    I have installed Oracle 8i Personal Edition (OraHome81) and created some database. On the same machine I installed Designer 2000 (Orant). I really don't know how to connect in the Designer to my database. It always tells me some TNS error. I tried to create repository on my database but it change nothing in my connection to database via Designer.
    I am just a beginner. Can ayone help me ?

    You need to have the TNS entry for the database you have created on the machine in the designer home.True you have installed both on same machine, but still you need to give the tns entry of the Oracle Home in the Designer Home Net80/Admin.
    Give these details and you will be ablt to run the designer properly.
    Get back if you need any specifics.
    Thanks
    Vishal

Maybe you are looking for

  • Setting the DNS Suffix in Windows-2000:

    This is a solution for the frequent problem that arises during installation of iPlanet Application Server on Windows-2000 platform. <b>Problem:</b> After installation completes, the installation directory remains empty, there is no entry of iAS in "W

  • MAP R3 to CRM  Material Master  -- Urgent

    Hi all, I have currently using BADI PRODUCT_CUSTOMER2 with method MAP_R3_TO_CRM_MATERIAL. I have done the coding and required configuration. I suppose to be able to see the changes done in COMMPR01 in CRM from MM02 in R3. However, I fail to see the c

  • No actual line items were selected

    Hi Experts, i am trying to view accounting document for delivery by vl03n, system shows errors as 'No actual line items were selected'. All the authorizations are on place, SU53 screen shows 'The last authorization check was successful' Please advice

  • Importing an image from photoshop into FCP7

    Hello I have some images in photoshop that I need to bring into FCP7...I need them to look transparent so the image (video) can be seen. The images are coffee stains .I need to know how I import them. Any help would be great. I have imported images b

  • Repeating numbers in a sequence as n=many times as the number

    I gave myself a small puzzle, to try to get the numbers 1-5 repeating as many times as their values: 1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5 My first attempt was quite simple. But i do not understand the results. Can someone explain to me why the