Error Installing OWB Repository

I exported a 9.2.0.1 Database and imported the user into a new Database Instance.
However, not all the runtime and repository components were reimported into the new schema.
I dropped and reinstalled the runtime successfully.
I also dropped the repository but have been unable to reinstall the repository.
OWB Client NT Client Version: 9.0.3.36.2
DB OS: Sun Solaris
DB Version 9.2.0.1.0
The following is the error in the repository error log:
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility: java.sql.SQLException: ORA-00904: "OWM_VIEW_UTILITIES"."CLASSIFIED_OBJ_TYPE": invalid identifier
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility: ORA-06512: at line 2
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility: [ at runSqlScript(RuntimeInstaller.java ) ].
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility: this is SQL error
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility: java.sql.SQLException: ORA-00904: "OWM_VIEW_UTILITIES"."CLASSIFIED_OBJ_TYPE": invalid identifier
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility: ORA-06512: at line 2
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility: java.sql.SQLException: ORA-00904: "OWM_VIEW_UTILITIES"."CLASSIFIED_OBJ_TYPE": invalid identifier
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility: ORA-06512: at line 2
Sat Jun 21 17:50:12 VET 2003
oracle.wh.util.DebugUtility:

Kirt,
Are you rerunning the repository assistant, or are you trying to restore from a dump? Officially we do not support restoring from a dump (not yet, at least) ... but there are some notes on metalink on how to do it anyway:
Repository, note 228918.1:
http://metalink.oracle.com/metalink/plsql/ml2_documents.showFrameDocument?p_database_id=NOT&p_id=228918.1
Runtime, note 235658.1:
http://metalink.oracle.com/metalink/plsql/ml2_documents.showFrameDocument?p_database_id=NOT&p_id=235658.1
Mark.

Similar Messages

  • Java Error installing OWB Repository

    Hi All,
    I'm attempting to install the repository owner using OMBPlus:
    OMBINSTALL OWB_REPOSITORY OWB_OWNER/$OWNER_PASSWORD DATA_TABLESPACE \'OWB_REPOSITORY' INDEX_TABLESPACE 'OWB_REPOSITORY' TEMPORARY_TABLESPACE 'TEMP' \
    But I'm getting this error 10 minutes into the install:
    oracle.wh.service.impl.assistant.ProcessEngine.display(ProcessEngine.java:1413): [processSPAWN]: A spawned program error.
    Exception = java.lang.Exception: Error : java.sql.SQLException: ORA-29532: Java
    call terminated by uncaught Java exception: java.io.IOException
    At exactly the same time the database is producing this trace error:
    java.io.IOException
    at java.io.UnixFileSystem.createFileExclusively(Native Method)
    at java.io.File.createNewFile(File.java:828)
    at oracle.wh.runtime.server.KeyManagement.getRtrProperties(KeyManagement
    .java:867)
    at oracle.wh.runtime.server.KeyManagement.setKey(KeyManagement.java:249)
    at oracle.wh.runtime.server.KeyManagement.set_key(KeyManagement.java:75)
    Any suggestions please? Many thanks in advance!
    Bill

    Got it...!
    The table OWBRT_SYS.OWBRTPS had been created with the wrong value for the Oracle Home. Now working with the correct path.
    The error message could have been a bit more specific though!
    Thanks
    Bill

  • INS0017: Error while installing OWB Repository.

    Hi All,
    I am trying to install OWB 9.0.2.56 on windows NT env.
    Steps followed are.
    1> I managed to install OWB client.
    2> Selected Oracle9i Warehouse Builder Repository Assistant to install Repository. After installing the repository upto 31 % it displays following error message.
    'INS0017:Installation of the seeded data failed.'
    Does someone know moare about it ?
    Please note that objects are created in schema specified while installing OWB Repository.
    Thanks in Advance.
    Regards,
    Vidyanand

    Hi All,
    I managed to get rid of this error. It was due to Roll Back Segment.
    I managed to install OWB 9i Repository successfully.
    Thanks & Regards,
    Vidyanand

  • Error installing OWB 10.2.0.1 repository on for AIX

    Hi!
    I'm trying to install OWB repository on AIX with repository assistant, but I'm stuck with the following error included on the log file generated:
    INS0017: Installation of the seeded data failed.
    oracle.wh.util.parser.ParseException:
    Internal Error: id generation error. Please contact Oracle Support with the stack trace and details on how to reproduce it.
    I read several posts and workaround about dropping schemas and roles, but none was effective.
    Also tried using "thin" user jdbc driver.
    This would be the first repository for OWB 10.2.0.1.
    Any help?
    Thanks in advance!
    Rgrds,
    Eduardo

    Hi,
    Thanks. I have the version that's available for download on OTN.
    I believe I have both the 32 and 64bit versions of rpms.
    jck.

  • Cannot Install OWB Repository objects.

    I use OWB Repository Assistant after finished Installing BO 10.1.0.2.0.
    I filled the User Name field as SYS and surely another fields are correct. But I got the result as
    INS0003: OWB Repository Installation cannot continue without DBA privileges. Connect as DBA and use option Create a New Warehouse Builder Repository to continue the process.
    How should I do to solve this problem.

    This appears to be a locking issue and looking at our Support database it is resolved in 10gR1 and 10gR2 versions of the database but remains on 9i although a warning dialog should be shown. Even so the installation should continue and should be successful.
    Do you have AQ running? This sometimes causes this error to occur. I think in the 10gR1 documentation this locking issue was documented and it was supposed to be added to the 10gR2 doc (I need to check to this).
    To figure the lock from Repo Asst code, use the following:
    select distinct
    s.sid,
    s.serial#,
    s.username,
    x.kglnaobj as objectname
    from
    dba_kgllock l,
    v$session s,
    x$kgllk x
    where
    l.kgllktype = 'Pin' and
    s.saddr = l.kgllkuse and
    s.saddr = x.kgllkuse and
    x.kglnaobj like '%DBMS_LOCK%';
    If this returns rows, display the warning with a suggestion to connect to SQLPlus and issue the following statement (where SID, Serial are what came back from the query)
    ALTER SYSTEM KILL SESSION 'SID, Serial';
    e.g.
    ALTER SYSTEM KILL SESSION '13, 8'
    That might solve the problem.
    Hope this helps.
    Keith Laker
    Data Warehouse Solution Architect
    Oracle EMEA Consulting
    BI Blog: http://oraclebi.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Beans http://www.oracle.com/technology/products/bib/index.html
    Discoverer: http://www.oracle.com/technology/products/discoverer/
    BI Samples: http://www.oracle.com/technology/products/bi/samples/

  • Java Error Installing OWB Reviewers Guide

    I've installed OWB 10g from the Reviewers guide CD and am now setting up the repository. The import of the REVIEW schema has finished and I believe it is now at the stage of running RunInstall.tcl. I am getting the following errors - any ideas???
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/ewt/lwAWT/BufferedFrame
    at oracle.wh.ui.install.reposinst.ReposInstService.validateServerInfoPage(ReposInstService.java:1395)
    at oracle.wh.ui.install.reposinst.ReposInstService.doValidation(ReposInstService.java:1344)
    at oracle.wh.ui.install.reposinst.ReposInstService.createDesigntimeRepository(ReposInstService.java:251)
    at oracle.owb.scripting.FoundationCmdExecuter.installDesignRepository(FoundationCmdExecuter.java:380)
    at oracle.owb.scripting.FoundationCmdParser.parseInstallDesigntimeCommand(FoundationCmdParser.java:503)
    at oracle.owb.scripting.FoundationCmdParser.parseCommand(FoundationCmdParser.java:115)
    at oracle.owb.scripting.OMBFoundationParserCmd.executeCommand(OMBFoundationParserCmd.java:73)
    at oracle.owb.scripting.OMBCommand.cmdProc(OMBCommand.java:42)
    at tcl.lang.Parser.evalObjv(Parser.java:810)
    at tcl.lang.Parser.eval2(Parser.java:1209)
    at tcl.lang.Interp.eval(Interp.java:2042)
    at tcl.lang.Interp.evalFile(Interp.java:2140)
    at tcl.lang.TclShell.run(TclShell.java:109)
    at oracle.owb.scripting.OMBShell.main(OMBShell.java:41)

    Sorry, I was more after directories... The reviewersguide tries to automate setup of a system. So it runs things from a certain set of locations (using parameters but these are hardcoded).
    The error looks like it is not finding some stuff on the machine in order to execute the script. Is your home and directory according to the setup documents??
    Thanks,
    Jean-Pierre

  • Error Installing preconfigured repository on NT

    Hi
    Please suggest.
    I installed Oracle 8.05 Enterprise edition on Windows NT 4.0. Then I installed the Designer 6.0 client on this box.
    Now when I try to install Preconfigured repository on this box, it says local copy of Oracle 8 Enterprise edition is not installed and the installation stops.
    Please suggest what I am doing wrong?
    Thanks
    Taiyeb
    null

    Designer 6.0 is no longer a supported product and as such is not certified for XP. You can verify supported platforms for Designer 6i and 9iDesigner on http://metalink.oracle.com/
    Regards
    Sue

  • Error installing 6i repository

    I am having problems installing a 6iR2 repository ... I read what was replied to the other posting (such and such privs must be granted), but the problem wasn't directly addressed. The IS no V$PARAMETERS view in a 8.1.6 or 8.1.7 database, only V$PARAMETER and V$PARAMETER2. Is this just a bug or what? I have to get the db back up for the developers quickly ...

    Kenneth,
    The script in ckrorole.sql had a typo, which was fixed in 6.5.30.10
    v_$parameters should read v_$parameter
    You also require select privs on v$parameter.
    Repository 6i Release 3 is available in shipping.
    David
    null

  • INS0003 OWB Repository Installation cannot continue without DBA privileges

    Hi:
    I´ve installed oracle database 10120 and today installed oracle warehouse builder 10.1, the installation haven´t problems, but when i try to execute OWB Repository Assistant i have the follow message error:
    INS0003 OWB Repository Installation cannot continue without DBA privileges
    If i connect me to OEM and check the privileges for sys or system user don't have any problem if i connect me as sysdba.
    I created a new user with all privileges and the error is the same.
    How could i fix my problem?
    Thanks for your help.
    Alex.

    This issue is normally caused because you have not setup sys to connect as sysdba per newer database setup procedures, test with connect "/ as sysdba" in sql*plus.
    If you cannot connect from SQLPlus by just the '/ as sysdba' login, then check the Note 50507.1 via Metalink as this describes the different ways you can connect to Oracle as an
    administrative user.
    Hope this helps,
    Keith
    Product Management
    Oracle Warehouse Builder

  • OWB Repository Performance, Best Practice

    Hi
    We are considering installing OWB repository in its own database, designed solely to the design repository to achieve maximum performance at the design center.
    Does anyone have knowledge of best practice in setting up the database to OWB repository? (db parameters, block size and so on).
    We are currently using Release 11.1.
    BR
    Klaus

    You can found all this informations in the documentation. Just here:
    http://download.oracle.com/docs/cd/B31080_01/doc/install.102/b28224/reqs01.htm#sthref48
    You will find all Initialization Parameters for the Runtime Instance and for the design instance.
    Success
    Nico

  • Error installing ODB+OBIEE in one machine and OWB in another one

    Hello,
    I have two machines with Oracle Linux 5:
    Machine 1 --> Oracle Linux 5 (64 bits) + Oracle DB 11g R2 + OBI 11g R1
    Machine 2 --> Oracle Linux 5 (32 bits) + I would like to have here OWB 11g
    To install OWB in the machine 2 to have access to ODB in the other machine I have followed:
    http://download.oracle.com/docs/cd/E11882_01/owb.112/e17130.pdf --> Chapter 4: Configuring Oracle Warehouse Builder for Linux (I have done these steps over Machine 1):
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/cat_owb.sql USERS
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/reset_owbcc_home.sql/u01/app/oracle/product/11.2.0/dbhome_1/owb
    alter user owbsys identified by owbsys account unlock;
    alter user owbsys_audit identified by owbsys_audit account unlock;
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/remote_owb_install.sql /u01/OWB_RemoteOver Machine 2 I have tried to create the repository:
    /reposinst.shBut in the section "Creating first workspace in the Repository on Linux" in the "OWBSYS Information" screen I have the following error:
    "*El software OWB con la versión compatible se debe instalar localmente en la máquina servidor de base de datos. Si ya está instalado, obtenga las credenciales de usuario de DBA y ejecute el script SQL owb/UnifiedRepos/remote_owb_install.sql. en la máquina servidor de bases de datos. Esto creará un directorio de bases de datos denorminado 'OWB_REMOTE_ADMIN' al que accederá la instalación remota para leer el directorio de servidores de datos OWBHOME/owb/bin/admin. Vuelva a iniciar el Asistente de Respositorios o ejecute el comando de script OMBSEED de OWB para iniciar el repositorio*"
    (OWB with Software-compatible version should be installed locally on the server machine database. If already installed, obtain the user credentials and run the script DBA SQL OWB / UnifiedRepos / remote_owb_install.sql. on the server machine database. This will create a database directory denorminado 'OWB_REMOTE_ADMIN' that will access the remote installation to read the data directory server OWBHOME / OWB / bin / admin. Start the Wizard repositories or run the script command to start OMBSEED of OWB repository)
    Is necessary to install OWB before to run reposinst.sh? Because I can't:
    Error al llamar al destino 'ntcontab.o' del archivo make '/home/oracle/product/11.1.0/OWB/network/lib/inst_net_client.mk'.
    (Failed to call destination 'ntcontab.o' of makefile '/ home/oracle/product/11.1.0/OWB/network/lib/inst_net_client.mk'.)
    I am not about the procedure to follow to install OWB in a different machine over a DB that isn't in local machine.
    I aprreciate any idea to solve it.
    Thank you in advance.
    Regards,
    Mónica.

    Hello,
    I have two machines with Oracle Linux 5:
    Machine 1 --> Oracle Linux 5 (64 bits) + Oracle DB 11g R2 + OBI 11g R1
    Machine 2 --> Oracle Linux 5 (32 bits) + I would like to have here OWB 11g
    To install OWB in the machine 2 to have access to ODB in the other machine I have followed:
    http://download.oracle.com/docs/cd/E11882_01/owb.112/e17130.pdf --> Chapter 4: Configuring Oracle Warehouse Builder for Linux (I have done these steps over Machine 1):
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/cat_owb.sql USERS
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/reset_owbcc_home.sql/u01/app/oracle/product/11.2.0/dbhome_1/owb
    alter user owbsys identified by owbsys account unlock;
    alter user owbsys_audit identified by owbsys_audit account unlock;
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/remote_owb_install.sql /u01/OWB_RemoteOver Machine 2 I have tried to create the repository:
    /reposinst.shBut in the section "Creating first workspace in the Repository on Linux" in the "OWBSYS Information" screen I have the following error:
    "*El software OWB con la versión compatible se debe instalar localmente en la máquina servidor de base de datos. Si ya está instalado, obtenga las credenciales de usuario de DBA y ejecute el script SQL owb/UnifiedRepos/remote_owb_install.sql. en la máquina servidor de bases de datos. Esto creará un directorio de bases de datos denorminado 'OWB_REMOTE_ADMIN' al que accederá la instalación remota para leer el directorio de servidores de datos OWBHOME/owb/bin/admin. Vuelva a iniciar el Asistente de Respositorios o ejecute el comando de script OMBSEED de OWB para iniciar el repositorio*"
    (OWB with Software-compatible version should be installed locally on the server machine database. If already installed, obtain the user credentials and run the script DBA SQL OWB / UnifiedRepos / remote_owb_install.sql. on the server machine database. This will create a database directory denorminado 'OWB_REMOTE_ADMIN' that will access the remote installation to read the data directory server OWBHOME / OWB / bin / admin. Start the Wizard repositories or run the script command to start OMBSEED of OWB repository)
    Is necessary to install OWB before to run reposinst.sh? Because I can't:
    Error al llamar al destino 'ntcontab.o' del archivo make '/home/oracle/product/11.1.0/OWB/network/lib/inst_net_client.mk'.
    (Failed to call destination 'ntcontab.o' of makefile '/ home/oracle/product/11.1.0/OWB/network/lib/inst_net_client.mk'.)
    I am not about the procedure to follow to install OWB in a different machine over a DB that isn't in local machine.
    I aprreciate any idea to solve it.
    Thank you in advance.
    Regards,
    Mónica.

  • OWB repository login error

    Hi,
    While connecting to the OWB design repository from OWB client the following errors are occured. This happens intermittently. Pls suggest how this can be rectified. we are using OWB 10g (10.1) and oracle 10g database.
    AP10420:Error Message: Listener refused the connection with the following error
    ORA-12516, TNS:listener could not find available handler with matching protocol stack.
    followed by the host name and connection string
    Regards
    Kishan

    I'm not sure I can help you, but I have some questions....
    Is OWB the only software getting this error message?
    If it's not, does this gives you any clue?
    When you say interminttently, I understand that sometimes you can connect to database, sometimes don't. Is it true?
    Does this happens since you have installed OWB or is it something recent?
    Have you asked the DBA if he/she has recently changed something about db configuration? It might be related to dispatchers (multi threaded servers)...
    Maybe looking for ORA-12516 in database general forum and you'll find answeres for your question.
    Good luck.
    Marcos

  • INS0029 error when installing OWB Design Repo

    Hi,
    I tried to install design repository(OWB 10g) on database 10.1.0, I created separate tablespaces for a new user, at 11% of installation proccess I get INS0029 error, repoassist log gives the following listing:
    oracle.wh.util.DebugUtility: [getOCIorThinConnection]:connectInfo = (DESCRIPTION=(ADDRESS=(HOST=localhost)(PROTOCOL=tcp)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=db1)))
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: [getOCIorThinConnection]:userName = owb_rep
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: [getOCIorThinConnection]: Asst: Trying with oci
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: [getOCIorThinConnection]: Asst: using oci
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: =========== enter file: ../../reposasst/SnapshotGenerated.pks
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: java.lang.NullPointerException
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: java.lang.NullPointerException
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at java.lang.String.<init>(String.java:166)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.sql.CharacterSet.UTFToString(CharacterSet.java:792)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.DBConversion.CharBytesToString(DBConversion.java:520)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:621)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.T2CStatement.execute_for_describe(T2CStatement.java:853)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.T2CStatement.execute_for_rows(T2CStatement.java:1002)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1028)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1451)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.wh.ui.install.reposinst.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:340)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.wh.ui.install.reposinst.ReposInstMain.processSQLToken(ReposInstMain.java:2592)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.wh.ui.install.reposinst.ReposInstMain.processDriverFile(ReposInstMain.java:2326)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.wh.ui.install.reposinst.ReposInstMain$2.runTask(ReposInstMain.java:1824)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.thread.TaskScheduler.runTask(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.thread.TaskScheduler.processTask(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.thread.TaskScheduler$TaskQueue.run(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.timer.Timer.doRun(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.timer.Timer.run(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at java.lang.Thread.run(Thread.java:534)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: java.lang.NullPointerException
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: java.lang.NullPointerException
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at java.lang.String.<init>(String.java:166)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.sql.CharacterSet.UTFToString(CharacterSet.java:792)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.DBConversion.CharBytesToString(DBConversion.java:520)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:621)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.T2CStatement.execute_for_describe(T2CStatement.java:853)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.T2CStatement.execute_for_rows(T2CStatement.java:1002)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1028)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1451)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.wh.ui.install.reposinst.RuntimeInstaller.runSqlScript(RuntimeInstaller.java:340)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.wh.ui.install.reposinst.ReposInstMain.processSQLToken(ReposInstMain.java:2592)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.wh.ui.install.reposinst.ReposInstMain.processDriverFile(ReposInstMain.java:2326)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.wh.ui.install.reposinst.ReposInstMain$2.runTask(ReposInstMain.java:1824)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.thread.TaskScheduler.runTask(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.thread.TaskScheduler.processTask(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.thread.TaskScheduler$TaskQueue.run(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.timer.Timer.doRun(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at oracle.ewt.timer.Timer.run(Unknown Source)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility:      at java.lang.Thread.run(Thread.java:534)
    Tue Nov 08 01:50:47 CET 2005
    oracle.wh.util.DebugUtility: Assistant operation is unsuccessful ...
    Could anyone feed back with a workaround, I tried using thin driver, different tablespaces sizes - these are hints from INS0029 related posts, but did not solved the problem. On database, where I tried to install repository, default locale is pl_PL.

    I found a sollution, reinstallation of OWB, installation of design repo in default tablespaces. Besides I don't know if setting default language to English which was used during installation of OWB has helped.

  • Error while installing OWB

    Error while installing OWB
    after 50% install.. it says
    "Error in writing to file c:\oracle\ora9201\bin\oci.dll
    The process cannot access the file because it is being used by another process"
    Apparently I have restarted the workstation and closed all oracle related services in services and no other program is running expect the installer.
    Can any one help in resolving the issue. Or can I hit the ignore button and continue installing?

    Always install OWB into a new ORACLE_HOME unless the Installation and Configuration Guide states otherwise. This has only happened twice. OWB 9.0.2.62.3 was the last version to allow installation into an existing ORACLE_HOME. Another thing you can do is go to www.sysinternals.com and download the utility LISTDLLs. It is great. From a command prompt, start it with the syntax: listdlls >log.txt
    This will output the DLLs in use and which executable is using it. Search for the DLL in the log.txt and scroll up until the double line. The executable name locking the DLL will be above the double line. If you have the Microsoft Distributed Transaction Coordinator Service running on the client, it will lock Oracle DLLs. This has been a common issue in the past, going back to the days of Data Mart Suite. This was documented in the Release Notes for it and may still be in the system in a note somewhere. It is in: DMS: Unable To Install; Filesopen/Service Running On Compaq Server Doc ID: Note:1080977.6 and Certain Files which need to be Reinstalled are Being Used Doc ID: Note:117672.1
    The first note I wrote back before 2000.
    Barry

  • Error in starting OWB repository browser listener

    Hi,
    I got the following error when starting owb repository browser listener on Solaris with startOwbbInst.sh
    Exception in thread "main" java.lang.NoClassDefFoundError: javax.servlet.Servlet
    at com.evermind.server.ApplicationServer.class$(ApplicationServer.java:297)
    at com.evermind.server.ApplicationServer.checkDependencies(ApplicationServer.java:297)
    at com.evermind.server.ApplicationServer.launchCommandline(ApplicationServer.java:498)
    at com.evermind.server.OC4JServer.launchOC4JCommandline(OC4JServer.java:171)
    at com.evermind.server.OC4JServer.main(OC4JServer.java:306)
    Is this caused by something with the configuration?
    Jeffrey

    Hi ,
    What is your OWB version ?
    If it is 10.2 then read the following
    With Warehouse Builder 10.2.0.X, the Repository Browser Listener is only supported on Windows x86-32bit and linux x86-32bit client machine.
    So start the Warehouse Builder Repository Browser Listener on Windows/Linux x86-32bit client machine
    For 11g refer MOS Note 469422.1
    Thanks,
    Sutirtha

Maybe you are looking for

  • JMS Adapter (for DI) does not allow passing username and password to JMS connection

    Post Author: PLed76 CA Forum: Data Integration JMS Adapter (for DI) does not allow passing username and password to JMS connection. It has those fields only for MSMQ. Our Production environment does not allow us to connect to JMS (we use Tibco EMS) a

  • IPhone 5 Glitch - Text Messages and E-mails

    So basically when I have any application open that uses sound, such as a game for example, if I turn down the volume within the application, when I exit the application the volume of my text messages and e-mails are set to the same level as whatever

  • How to create a propeller on multisim?

    Hi all... Can anyone help me on how to create a P8X32A-D40 or P8X32A-Q44 propeller on Multisim??  I have included an example on P8X32A-Q44 propeller. Your help is appreciated!! -Thanks in advance Attachments: P8X32A-Q44.png ‏12 KB

  • Error occured during the "test of the interface"

    Hi,everybody where I do the "Test Configuration" in the ID(Tools->Test Configuration),an error occured. Internal Error                      HTTP connection to ABAP Runtime failed.             Error:403ForbiddenURL:http://NEUESDNWXI01:8001/sap/xi/simu

  • Microsoft documents and Macbook Pro

    Hi, I have recently got a new macbook pro and am trying to transfer my microsft documents file onto it using a protable hardrive, I have downloaded microsoft office for mac but I can't seem to open 'my documents' from the hard drive.  How do I do thi