Deployment of objects

Hi,
I am new with the data integrator and have a question regarding deployment. In data integrator you can add new tables and/or constraints e.g. in a target schema. How can I deploy tables/constraints to the database (oracle)? Or must I create those target objects on the database manually and reimport (reverse engineering) them to ODI?
regards
Rainer

For that, you can right-mouse-button on th edata model, and select the "Generate DDL" option. This then asks if you want to include those items not in your ODI Model - so you can ignore those which already exist, and ODI will generate a procedure, for you to execute, which has all the statements required to create the table, indexes, and constraints defined.

Similar Messages

  • 11g R2: not able to deploy any objects

    Hi,
    I've got a huge problem:
    Since today I am no longer able to deploy any objects to our integration server.
    Normally we deploy our objects from our design repository to our integration-db with help of an expert.
    First I thought it would be an error of the expert. But then I tried to deploy a object directly from the controlcenter of the
    integration-repository.
    The problem is, I get no error. The deployment starts and shows all the time that green error in control center.
    Nothing has been changed since the last deployments.
    We only saw a warning, that some passwords of some db-users were expired. So we used the same passwords and
    all user work correctly.
    Anyone got a idea?
    Regards,
    Andre

    Thanks for the tip.
    Now I have the problem, that our last logfile was created on 11/04/2010. Strange...
    I'm sure, we have deployed something since this date.
    I will speak to our admin, to restart the control center service.
    Hopefully a new logfile is created...

  • How to deploy olap object to BIEE

    hello everybody,
    I had build a project use OWB,but I dont know how to deploy this object to BIEE. I only select which table or view in build the BIEE and must setup the dimension which had been setup in OWB. Could I get the dimension information to the BIEE and dont not build it again in the BIEE.
    Could you give me some good advice.
    thinks

    OWB 10g and 11gR1 only deploy to OBISE (Discoverer), the OBIEE deployment directly from OWB is in the OWB 11gR2 release. You will have to build this model in OBIEE.
    There are some interesting posts below on OBIEE and OWB developments here:
    http://www.rittmanmead.com/2008/03/16/re-wiring-obiee-logical-models-to-use-a-data-warehouse-part-1/
    http://www.rittmanmead.com/2008/03/16/migrating-obiee-logical-models-to-use-a-data-warehouse-part-2/
    http://www.rittmanmead.com/2008/03/17/migrating-obiee-logical-models-to-use-a-data-warehouse-part-3/
    Cheers
    David

  • OWB Deployment of Objects

    What are the major steps involved in deploying OWB objects from one OWB Repository that is at the development site to a remote OWB Repository at the customer site. The customer site will have OWB installed
    but no objects.
    Do I have the steps listed below correct?
    At the Development Site:
    1) Create the Project
    2) Develop the project; Test the deployed objects
    3) Export the Project into a *.MDL file
    4) Write a OWB Script, "my_script.tcl", that will
    a) Create a project on the remote customer site
    b) Import the project to the remote customer site
    c) Create a runtime connection
    d) Through OWB scripting command deploy the necessary objects
    Then at the customer site, we will....
    1)Transfer the *.MDL and my_script.tcl to the proper directory.
    2) Invoking OMB Plus run the OWB script,"my_script.tcl", on a server that has the OWB Runtime enviroment installed.
    3) OWB "my_script.tcl" will
    a) Create the project
    b) Import the project
    c) Create the proper runtime connection
    d) Through OWB scripting commands deploy the necessary objects
    .

    Looks good to me. That's what I would roughly do as it is nicely automated.
    Jean-Pierre

  • How to deploy business objects web services on tomcat

    Hi everyone can anyone tell how i need to deploy business objects web services on tomcat, i installed business objects on unix server.what r the steps i need to follow in order to deploy web services on business objects. this web services must be called by a java program externally, that the reason i am deploying web services.
    i downloaded business objects web services portal sample zip file. the wssdkj2eeportal directory is created with ant_scripts,src, dsws.config and wsportalassemblyscripts.bat.
    i am trying to configure the dsws.config, by modifying it to
    <configuration version="1.0">
       <WebService Name="BusinessObjects Enterprise XI 3.1 sp3" Icon="image/java.gif">
          XI 3.1 Web Services
          <Connection URL="http://169.111.33.61:8080/dswsbobje/services/session" Proxy="0" Timeout="120000" />
       </WebService>
       <Proxy Name="Outside" URL="http://http-cache.mycompany.com:3667" />
    </configuration>
    what i need to do in order to deploy
    i am using bo xi 3.1 sp3

    Hi,
    You deploy all the web applications provided by BOE with the use of Wdeploy tool installed with BOE installation, for details please reffer the following document
    [BusinessObjects Enterprise XI 3.1 Web Application Deployment Guide for UNIX*|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000715844%26_SCENARIO=01100035870000000202]
    Regards,
    Ramu.
    Edited by: Gowda Timma Ramu on Nov 9, 2010 8:39 PM

  • Deploy CORBA objects to OAS

    hi,
    where I can found some documentation
    on deploying CORBA object from JDeveloper 3.0 to OAS?
    Should I also configure something on OAS?
    thanks
    filippo

    Forget it! it works now. Thank you.

  • Deployment of objects in OWB10g with Personal Edition Database

    When trying to deploy objects in a Personal Oracle 10g database with OWB10g, the following error occurs:
    RPE-01011: Cannot deploy to target database location because it does not have a compatible version.
    Deployment on the same database but on Enterprise Edition works fine.
    Oracle does not support OWB on Personal Edition, but I found a workaround to use OWB on a Personal Edition database. The problem is that the Deployment Manager checks for the version number from PRODUCT_COMPONENT_VERSION where PRODUCT like 'Oracle%'. It returns the version number, but with this query no rows are returned in Personal Edition because the product name does not begin with 'Oracle' (Personal Oracle Database 10g).
    I found a workaround in redefining the definition of the view SYS.PRODUCT_COMPONENT_VERSION so that it returns 'Oracle Database 10g Personal Edition' for the database component. The deployment manager will then find the correct number, and you can deploy just as you would with Enterprise Edition.
    Statement used to redefine the view:
    create or replace view sys.product_component_version as
    (select
    substr(banner,1, instr(banner,'Version')-1) product,
    substr(banner, instr(banner,'Version')+8,
    instr(banner,' - ')-(instr(banner,'Version')+8)) version,
    substr(banner,instr(banner,' - ')+3) status
    from v$version
    where instr(banner,'Version') > 0
    and
    ((instr(banner,'Version') < instr(banner,'Release')) or
    instr(banner,'Release') = 0))
    union
    (select
    substr(banner,1, instr(banner,'Release')-1),
    substr(banner, instr(banner,'Release')+8,
    instr(banner,' - ')-(instr(banner,'Release')+8)),
    substr(banner,instr(banner,' - ')+3)
    from v$version
    where instr(banner,'Release') > 0
    and
    instr(banner,'Release') < instr(banner,' - ')
    AND BANNER NOT LIKE '%Database%')
    union
    (select
    'Oracle Database 10g Personal Edition',
    substr(banner, instr(banner,'Release')+8,
    instr(banner,' - ')-(instr(banner,'Release')+8)),
    substr(banner,instr(banner,' - ')+3)
    from v$version
    where instr(banner,'Release') > 0
    and
    instr(banner,'Release') < instr(banner,' - '))
    Regards,
    Marko Bikker

    See Oracle Database Express Edition License Agreement

  • Problem working with deployed View Object

    Hi everyone,
    I have developed and deployed the BC4J project. And now I'm writting the client code.
    Connecting to deployed components and then to the database is successfull.
    calling method ViewObject vb = applicationModule.findViewObject("ViewObject") also completes successfully. and then calling the method
    vb.first() ends up with the following error:
    java.lang.ClassNotFoundException: oracle.jbo.domain.Number
    java.lang.Object java.io.ObjectInputStream.readObject(boolean)
    java.lang.Object java.io.ObjectInputStream.readObject()
    void oracle.jbo.common.PiggybackInput.<init>(oracle.jbo.common.ObjectMarshaller, byte[])
    void oracle.jbo.client.remote.ApplicationModuleImpl.processPiggyback(byte[])
    int oracle.jbo.client.remote.ApplicationModuleImpl.syncIterator(int, int, int, boolean, boolean)
    int oracle.jbo.client.remote.RowSetIteratorImpl.syncIterator(int, int, boolean)
    oracle.jbo.Row oracle.jbo.client.remote.RowSetIteratorImpl.first()
    oracle.jbo.Row oracle.jbo.client.remote.RowSetImpl.first()
    oracle.jbo.Row oracle.jbo.client.remote.ViewUsageImpl.first()
    void tester.BC4J_Client_test.main(java.lang.String[])
    Error: oracle.jbo.PiggybackException: JBO-28300: Piggyback read error
    oracle.jbo.PiggybackException: JBO-28300: Piggyback read error
    void oracle.jbo.client.remote.ApplicationModuleImpl.processPiggyback(byte[])
    int oracle.jbo.client.remote.ApplicationModuleImpl.syncIterator(int, int, int, boolean, boolean)
    int oracle.jbo.client.remote.RowSetIteratorImpl.syncIterator(int, int, boolean)
    oracle.jbo.Row oracle.jbo.client.remote.RowSetIteratorImpl.first()
    oracle.jbo.Row oracle.jbo.client.remote.RowSetImpl.first()
    oracle.jbo.Row oracle.jbo.client.remote.ViewUsageImpl.first()
    void tester.BC4J_Client_test.main(java.lang.String[])
    Can anyone help me, please!
    Thanks ahead,
    Eka

    Hi,
    You need to use :
    vb.getRowSet().first()
    null

  • RPE-02150 - Deploy  Intelligent Objects

    Hi!
    I had followed this tutorial, but I use OWB 11g.
    I derived the end user metadata from my design. then I created a new user:eul_from_owb from Global Explorer->Security->User.
    When I try to deploy the Intelligent Objects, I get a error:
    "RPE-02150: Failed to connect with user EUL_FROM_OWB, password ***, connection null. Disco export file 4044.eex written to directory owb/deployed_files."
    I use the same user password : eul_from_owb
    Do I have to install OracleBI Discoverer Administrator to create EUL (eul_from_owb) ? I say that because in Global Explorer->Security->User, I can create DB user: eul_from_owb.
    Edited by: user10381875 on 1/Abr/2009 4:08

    Hi
    Apparently direct deployment does not work in OWB 11gR1, and the workaround is to take the generated EEX file and manually import into Discoverer Admin.
    You can either take the generated file from
    4044.eex written to directory owb/deployed_files
    or generate the objects from the client and save the generated file there.
    Cheers
    David

  • Best practices for deploying common object services

    Hi,
    Our team has broken out from our main application around 10 services that largely are used to return objects from 10 common tables in the database. We are thinking that these services should be reusable amongst the 5 or so applications that we are going to have in the near future. We're now trying to decide what the best way to make these common services available to the applications is and after considering several ideas, these are the options we've come up with:
    1. Putting jars for all of the services in each application and adding entries to the sessions.xml for any Toplink project mappings that are in the jar files. Also are considering having just one many services jar.
    2. Exposing the services through web services and only giving the client apps the client side code to invoke the web service. Realize this may mean a performance hit, but would mean less code on the client.
    3. Stateless session EJB's.
    4. parent-application tag or some other way to make these jar's be available to all applications on the app server through classloading
    5. Some sort of messaging service
    Would appreciate some input on this, as this seems like it would be a fairly common problem.
    Thanks,
    Mark

    DBA2008 wrote:
    Is this good idea to put RPM recovery catalog & OID schema in OEM Repository DB? I am thinking just to consolidate all these schema's in one db.Unless you are really starved for resources, I would not recommend storing the OID and OEM repositories in the same database. Both of these repositories support different products, and you risk creating unnecessary dependencies when patching or upgrading. As a completely fictitious example, what if your OID installation has a critical issue that requires a repository database upgrade to version 10.2.0.6, and the Grid Control repository database is only certified for version 10.2.0.5?
    Regards,
    John P.
    http://only4left.jpiwowar.com

  • Deployment B.Objects

    Hi people,
    I´m reading the differents guides of B.O (Enterprise, integration kit, deployment planning) but I´m very doubtful.
    In the server part, I´ve to install the B.O Enterprise with its default tomcat and MySQL.By default.
    The sap integration Kit in what side have to go ? Server or Client?

    Ruben Torres wrote:
    > ....
    > In the server part, I´ve to install the B.O Enterprise with its default tomcat and MySQL.By default.
    > ....
    Ruben, I don't know how many users are going to be developing reports and using your data on this environment, but I strongly recommend you to install on a more scalable database like Oracle or SQL Server, and not on MySQL.

  • Error while deploying objects from Control Center Manager

    I got the error "The Network Adapter could not establish the connection"
    while deploying my objects (dimensions, cubes, mappings etc) from Control Center Manager Oracle 10g R2.
    Any idea to ressolve it..........

    Some more details would be helpful ...

  • How many objects to deploy at a time

    I am writing a script to deploy all the objects in an environment. We will use this script when setting up a new environment from scratch. Is there a recommended maximum number of objects to deploy at a time? Writing the script to deploy one object at a time is perhaps the simplest, but what are the overeheads in this?
    Thanks,
    Gavin

    Hi Gavin,
    there is no general rule. For maintenance reasons it can be helpful to split the mappings into logical groups if you have more than 30-50 or even hundred or more mappings. You may group on types like staging, dimension and fact mappings or on business contexts. If some mappings fail to deploy it may be too time consuming to redeploy everything. If you have smaller groups, restarting the deployment will be faster.
    Regards,
    Carsten.

  • Deployment of any object not possible with OWB11gR2

    Hi,
    i recently did a Upgrade to 11.2 but while i'm trying to deploy the object i get a
    RPE-01008: Recovery of this request is in progress
    even trying with deleting and then deploying didnt work. neither replace.
    could anyone help please.
    thx,
    alex

    2010/12/16-10:31:38-CET [C5C3AC][] Platform Service for null
    2010/12/16-10:31:42-CET [C5C3AC][] Connection Manager - OCI fix performed
    2010/12/16-10:31:44-CET [C5C3AC][] Thin driver connection time - 1499 millisecond(s)
    2010/12/16-10:31:44-CET [C5C3AC][] Connection Manager - property user.timezone value is Europe/Berlin
    2010/12/16-10:31:44-CET [C5C3AC][] Connection Manager - connection.timezone not set. Defaulting to value SERVICE
    2010/12/16-10:31:44-CET [C5C3AC][] Connection Manager - using service timezone Europe/Berlin
    2010/12/16-10:31:44-CET [C5C3AC][] Connection Manager - defaultimg session timezone offset to +01:00
    2010/12/16-10:31:44-CET [C5C3AC][] Free Memory(bytes)=9802568 Total Memory(bytes)=14417920 Used Memory(bytes)=4615352 Used Memory(percent)=33%
    2010/12/16-10:31:44-CET [C5C3AC][] Control Center Service Version 11.2.0.1.0 starting
    2010/12/16-10:31:44-CET [C5C3AC][] Startup due to manual request
    2010/12/16-10:31:44-CET [C5C3AC][] Control Center Repository Name OWBSYS on Service
    2010/12/16-10:31:44-CET [C5C3AC][] Explicit garbage collection - every 1 execution(s)
    2010/12/16-10:31:44-CET [C5C3AC][] Initializing Platform
    2010/12/16-10:31:44-CET [C5C3AC][] Recovery starting
    2010/12/16-10:31:44-CET [C5C3AC][] Service startup complete
    2010/12/16-10:32:50-CET [C5C3AC][] AuditId=84: Processing unit deployment request
    2010/12/16-10:32:50-CET [C5C3AC][] Free Memory(bytes)=8158816 Total Memory(bytes)=14417920 Used Memory(bytes)=6259104 Used Memory(percent)=44%
    2010/12/16-10:32:50-CET [10FFB38][] Connection Manager - off
    2010/12/16-10:32:51-CET [10FFB38][] Thin driver connection time - 35 millisecond(s)
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] Attempting to create adapter 'class.Oracle Database.10.2.DDLDeployment'
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] Thin driver connection time - 39 millisecond(s)
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] Creating target schema synonyms for target schema
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] Assigning grants to target schema
    2010/12/16-10:32:51-CET [10FFB38][OWB.WORKSPACE] script_run_begin auditId=86 operation=9001
    2010/12/16-10:32:52-CET [10FFB38][OWB.WORKSPACE] script_run_end auditId=94 scriptRunStatus=15002
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] oracle.wh.runtime.platform.adapter.InfrastructureException: RPE-01003: An infrastructure condition prevented the request from completing.
    - ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:366)
    at oracle.wh.runtime.platform.adapter.odb.OdbDeploymentAdapter.deploy(OdbDeploymentAdapter.java:594)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:216)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3530)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4718)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1062)
    at sqlj.runtime.ExecutionContext$OracleContext.oracleExecuteUpdate(ExecutionContext.java:1570)
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:223)
    ... 5 more
    java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3530)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4718)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1062)
    at sqlj.runtime.ExecutionContext$OracleContext.oracleExecuteUpdate(ExecutionContext.java:1570)
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:223)
    at oracle.wh.runtime.platform.adapter.odb.OdbDeploymentAdapter.deploy(OdbDeploymentAdapter.java:594)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:216)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] oracle.wh.runtime.platform.service.controller.RecoveryInProgress: RPE-01008: Recovery of this request is in progress.
    at oracle.wh.runtime.platform.service.controller.AdapterContextImpl.initialize(AdapterContextImpl.java:1745)
    at oracle.wh.runtime.platform.service.controller.DeploymentContextImpl.initialize(DeploymentContextImpl.java:682)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.initialize(DeploymentController.java:69)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:208)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:229)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] Attempting to create adapter 'class.Oracle Database.10.2.DDLDeployment'
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] Thin driver connection time - 451 millisecond(s)
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] Creating target schema synonyms for target schema
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] Assigning grants to target schema
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] oracle.wh.runtime.platform.adapter.InfrastructureException: RPE-01003: An infrastructure condition prevented the request from completing.
    - ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:366)
    at oracle.wh.runtime.platform.adapter.odb.OdbDeploymentAdapter.deploy(OdbDeploymentAdapter.java:594)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:216)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:229)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3530)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4718)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1062)
    at sqlj.runtime.ExecutionContext$OracleContext.oracleExecuteUpdate(ExecutionContext.java:1570)
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:223)
    ... 6 more
    java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00216: invalid character 252 (0xFC)
    Error at line 9
    ORA-06512: at "XDB.DBMS_XMLPARSER", line 191
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 510
    ORA-06512: at "OWBSYS.WB_RTI_OBJECT_CATALOG", line 732
    ORA-06512: at "OWBSYS.WB_RT_DEPLOYMENT_FEEDBACK", line 134
    ORA-06512: at line 1
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3530)
    at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4718)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1062)
    at sqlj.runtime.ExecutionContext$OracleContext.oracleExecuteUpdate(ExecutionContext.java:1570)
    at oracle.wh.runtime.platform.service.controller.ObjectDefinitionImpl.setFinalStatus(ObjectDefinitionImpl.java:223)
    at oracle.wh.runtime.platform.adapter.odb.OdbDeploymentAdapter.deploy(OdbDeploymentAdapter.java:594)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:216)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:229)
    at oracle.wh.runtime.platform.service.controller.DeploymentController.deploy(DeploymentController.java:41)
    at oracle.wh.runtime.platform.service.DeploymentManager.run(DeploymentManager.java:51)
    at java.lang.Thread.run(Thread.java:595)
    2010/12/16-10:32:53-CET [10FFB38][OWB.WORKSPACE] deploy_unit_done auditId=84
    2010/12/16-10:32:53-CET [C5C3AC][] Free Memory(bytes)=16367640 Total Memory(bytes)=23592960 Used Memory(bytes)=7225320 Used Memory(percent)=31%
    2010/12/16-10:32:53-CET [C5C3AC][] AuditId=84: Request completed

  • Automate objects deployment (9.0.4)

    I am looking for ideas how to best automate the deployment of objects, that is otherwise done manually through the Deployment Manager (Action: Create, Replace, Update, Drop, None). I see that OMBPLUS includes an OMBDEPLOY command, but haven't used OMBPLUS yet.
    I suppose there is the option to generate the ddl and pl/sql code, save it to a file and then execute everything. I hope there is a better way to do this.
    Does anybody have any experience with the OMBDEPLOY command?
    Any suggestions will be appreciated.
    Best Regards,
    Julian

    By using OMBPLUS you can accomplish most of the things that you would usually do through the UI. It does not generate pl/sql files but deploys directly the objects as when you use the Deployment Manager. You would use scripting usually to avoid repetitive manual (maintenance) operations from the UI.
    You can take a look at the OMBPLUS guide (including the OMBDEPLOY command) by downloading it from http://download.oracle.com/otn/nt/warehouse/doc/OWB904ScriptingReference.zip .
    Regards:
    Igor

Maybe you are looking for

  • HP Pavilion a1560n : Sysem recovery disk gives error

    I have a HP Pavilion a1560n Desktop PC with Windows XP. I got a laptop so I quit using the desktop. I stored it were it would not get damaged but when I turned it back on it said     ( Hard Drive not found wires may have come loose  or damaged)   so

  • Illustrator cs6 frequent crashes

    After reading several conversations about this subject ... it appears it is common that Illus. cs6 crashes. I have been trying to see if there is one perticular action that causes the crash.  So far  I noticed; 1)     I f I open multiple files  ... l

  • Adobe Mastersuite CS4 - Concerned About Moving To Windows 8.1

    I have Adobe Mastersuite CS4 on Windows XP and it works just fine for my needs.    Since Microsoft has discontinued support of Windows XP I am moving to Windows 8.1.  Right now I simply don't have the money to upgrade my suite and from a functional p

  • Weird Error Messages

    What's up with these error messages? I have been syncing my iPhone and Shuffle to my Mac Book Pro without a problem for several months. This morning the iPhone would not sync--iTunes said it did not recognize the iPhone and I needed to restore. The S

  • Customize Reports by XML

    Hi all, i am using developer 6i with oracle 8i, and want to rearrange report fields by using XML but i failed and every time the report fields appears as it in the Query statment, Could I rearrange the fields without changing the query please i need