Delpoyment of OWB project in separate environment

I have created an OWB project with multiple sources (Oracle DB) and target (Oracle DB) in the development environment. Now I want to do an MDL export of my whole project and deploy it on the production environment. It will have similar set of sources and targets with different schema names for sources and targets.
Also in my project there is a separate delpoyment team which will do the deployment in producion environment based on the Release Notes and set of the development code files (E.g. MDL export files).
I would like to know which is the best way to deploy my project in the production environment? And what care needs to be taken while deployment?
Thanks,
Kanak Chavda

I presume you are using OWB 9.0.4 or higher.
The practice you mention to keep a development and test environments separate and sync them by MDL export-import of the design is a good practice. In theory you could actually deploy to a dev environment and a production environment from the same design repository (by creating two runtime connections in your project), but this would assume that you phisical configuration (tablespaces, indexes, partitions etc.) are exactly the same in both environments. If they are not (which is usually the case), you might be better off proceeding as you mention.
As for the deployment, when you deploy the project to production, all you will have to do (apart from changing the configuration parameters in the design project as appropriate) is to re-register the locations (i.e. provide the physical parameters for the sources and targets).
Some customers prefer to automate the deployment process by using scripting. Take a look at this whitepaper to understand what it is and how you might benefit from it:
http://otn.oracle.com/sample_code/products/warehouse/files/How_to_deploy_from_file1.zip
Regards:
Igor

Similar Messages

  • Reloading OWB Projects after an Instance Rebuild

    I am working in an environment where we have one Design Repository and three Runtime Repositories. Each of the Runtime Repositories is on a different Oracle DB instance (DEV, TEST, and PROD). We will periodically ‘destroy’ and ‘rebuild’ these instances until we are satisfied with our installation. When we do a ‘rebuild’ on an instance it doesn’t affect my Design Repository because it is separate from the three DB instances. The metadata that was in the Design Repository before the rebuild is still there after the rebuild.
    What are affected are the Runtime Repository and the Target Schema that resided in the DB instance before the rebuild. Our DBA has written scripts to reinstall both of these after a rebuild but of course they are missing all of the code for the packages etc. that were deployed to them from my OWB project.
    As it stands now, after each rebuild I have to manually register the Source and Target Locations, redeploy the code for all deployable objects (Custom Transformation Operators etc.), open each mapping and do an ‘Inbound Reconcile’ on the Source and Target tables, and then regenerate and redeploy the code for the mappings. What we would like to do is find some way to automate all of these tasks.
    In reading through the forum threads I see that others are trying to accomplish the same thing or something very similar. There are multiple mentions of ‘.tcl’ files or scripts. What are these and what tool/utility is used to create them? Where can I read up on this? There are also multiple mentions of ‘Snapshots’. Is this an OWB utility?
    I think it would solve my problem if I could capture the state of both the Runtime Repository and the Target Schema before the rebuild and then use that to restore both of them to their original state after the rebuild. Does anyone know how to do this? What documentation exists to describe the tools/utilities needed and how to use them?
    Thanks in advance for your help.

    Good morning Don,
    You can automate tasks by using scripting. This consists of something called OMBPlus/OMB (Oracle MetaBase => repository-DML-language) and TCL.
    Tcl is a scripting language which is designed to be embedded in applications.
    The Warehouse Builder scripting language, known as OMB Plus, is an extension of the Tcl programming language. With OMB Plus, you can write the syntactic constructs
    such as variable support, conditional and looping control structures, error handling, and standard library procedures.
    Check http://www.oracle.com/technology/products/warehouse/sdk/scripting%20pages/Scripting_home.htm to get an overview from Oracle on the entire subject.
    Check the OWB Scripting Reference for commands to manipulate the Repository: http://download.oracle.com/docs/pdf/B12152_01.pdf
    Also check http://www.oracle.com/technology/products/warehouse/pdf/OWB_Scripting_Paper.pdf
    A snapshot is related to repository objects. It contains all the information (metadata) about object(s) and the relationships for the object(s). It is used for Change Management.
    For a full description see the "Metadata Change Management" chapter in the User Guide.
    Good luck, Patrick

  • Deploying an OWB project

    Hi,
    I have created an OWB project in my development environment, and want to deploy this onto my production database. What are the minimum OWB components that I need to install on the production server? Is it enough if I only install the OWB Runtime server? And how do I deploy the project on that server?
    Thanks,
    Mani

    Mani,
    There is a wealth of information on these basic questions in Oracle Warehouse Builder Self-service Education http://www.oracle.com/technology/products/warehouse/selfserv_edu/self_service_education.html. Specific to your questions, see Installation and Deployment sections.
    Nikolai Rochnik

  • Need solution to make changes in existing project sites in Project Server 2010 environment

    Dear Folks,
    Hope you all are doing good and ready to give a way for this requirement. :)
    In project server 2010 environment, I am using InfoPath documents library, Issues, Risks etc in each and every project sites.
    Say, after creation of 100 projects/project sites, I have got a requirement to make some changes in the InfoPath document library and in Issues, Risks list, so I have decided to use the following solution which is actually weird:
    Make the changes in InfoPath document library, Issues/Risks list for 1 of the project site and save that site as template and associate it with running EPT.
    Then, delete the existing project sites (after taking backup) and start recreating it from PWA/Server Settings/ Operational Policies/ Project Sites, so that it will take the latest template. But, seems like it is time taking and handy and actually it's not
    working for some of the projects.
    Request all of you to provide some solution for this.
    Ask more, if my explanation is not clear.
    Regards,
    Shravan

    Hello,
    Regarding mass deleting and recreating Project Sites via the PSI, firstly delete the project sites then run the following PowerShell script to bulk create project sites:
    https://gallery.technet.microsoft.com/Bulk-create-Server-Sites-784f7b29
    I have got a script that bulk deletes projects but this is not published as this could be a dangerous script to run if you did know what to update etc. To give you an idea of how to delete project sites via the PSI see a code snippet below:
    $EPMTYGUID = [system.guid]::empty
    $projectOwnerID = 'd6a0a720-12ac-e211-93f9-00155d153dd4'
    $ProjectList = $svcPSProxy.ReadProjectStatus("$EPMTYGUID","PublishedStore","", "0").Project | format-table proj_uid -hidetableheaders | out-string -stream
    foreach ($projectUid in $projectList)
    if ($projectUid -ne "")
    $projectsforDeletions = $svcPSProxy.ReadProject($projectUid, "PublishedStore").Project | where {$_.projectOwnerID -eq $projectOwnerID} | format-table proj_uid -hidetableheaders | out-string -stream
    foreach ($projUid in $projectsforDeletions)
    if ($projUid -ne "")
    $svcWSSProxy.DeleteWSSSite($projUid)
    Write-host 'Project UID for deleted site' $projUID
    That particular example deletes the project sites for a particular project owner, you could easily modify that to remove the project owner filter if needed.
    Regarding your query about having to delete the project sites to get the changes to take affect, there is no easy option to get the issues and risks list changes to filter though, this would either be manual on each existing site or using code to iterate
    through each existing site and apply the changes programmatically. Depending on if you used site collection content types to set up the Issues and Risks lists, it might be simple to add a new column etc. as you could do this centrally and it will cascade
    down. If you didn't use content types and or its view changes etc. this is a per site change that can be manual or programmatically done. The same applies to the document library, if this was set up using a site collection content type, the changes can
    be modified on the content type and cascaded down. If the library was set up with just a library that used local columns / templates then it will be a per site change - the same as the issues and risks.
    The company I work for (CPS) does have a site sync tool that will programmatically update existing sites based on a specified site so I know it is all possible to do in code!
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP

  • Problem in Exporting OWB Project

    Hi all,
    I was trying to export an OWB Project.But it gave the following error message in the log file :
    <
    MDL1256: Error occurred exporting LOCATION with physical name <ODSLOC>, business name <ODSLOC>.
    Detailed Error Message:
    MDL1255: Error exporting CONNECTOR <UIIDRACONN/UIIDRACONN> for LOCATION <ODSLOC/ODSLOC>.
    Error in SQL Statement. Please contact Oracle Support with the stack trace and details on how to reproduce it.
    >
    I could not understand the problem.I have checked the CONNECTOR and the LOCATION are valid and working fine in the project.
    Can anyone help me out of this ?
    Thanks in advance.
    Azad.

    I suggest that you "merge" some jars to make custom one. you have then to import this jar instead.
    this way you'll reduce the number of the imported jars and thus avoid the "too many..."
    hope it's clear..

  • Rename OWB Project Modules and Locations

    Hi everybody,
    is there any way how i can rename a already registered Location and an Module under a OWB Project?
    I heard about the ombalter oracle_module statement, but i didn't know how to use this.
    Is this the only way to change the name of the Module and Location or is there any other way.
    Any help is very appreciated.
    Greetings

    Hi,
    the question can be closed.
    I solved the problem.
    I found ombplus and was able to rename modules.
    So questions is answered.
    Greetings

  • OWB Project Management, Versioning

    Hi,
    We're using version 9.2.0.3.0 version of OWB. Most of our work has been in the development stage, but we're ready to start moving to Integration, Acceptance and eventually Production.
    I've read a lot of OTN and Metalink forum messages on how people are doing this. I'd like to know what it the best way to move these changes to the different levels. Some people mentionned creating different repositories, others have mentionned different projects (All within the same repository), and there is also mention of snapshots.
    The snapshot concept is nice, but would incur too much work around if a restore is needed. From a developer point of view, if a restore is needed, then afterward who know what's been restored, what's current,etc...especially if we have about 5-6 developers working in OWB.
    I'm kinda leaning towards having separate repositories, so the developers can see the mappings in each level at any time. Having different projects wouls also be feasible.
    As a DBA, once we get to production, then I agree that if the code is deployed in a file that I would only have to run, then this would make our lives easier.
    I'd like to hear what people (and Oracle) have to say on the subject.
    Thanks,
    Guy LaBelle
    DBA
    Atlantic BlueCross Care

    There can be several possible solutions of this problem. One would be the snapshots (project versions stored in the database). Today you can create snapshots at different project phases and the snapshot utility will let you see the differences between the various versions in a graphical interface (version reporting)
    The problem with snapshots (as you correctly state) might be that you have to restore the versions to work with them, which might be cumbersome if the developers need to have instantaneous access to multiple versions.
    Therefore, in your case I would suggest the following:
    - create two separate repositories (with two separate run-time environments), one for development, one for production.
    - do all the design, development and testing in the development environment. You can have different projects containing different versions of the project in the development repository. This will allow the users almost simultaneous access to multiple versions (what you don't heve here and is present in snapshots are version reporting - project diffs. the users will have to manually compare the versions. If project diffs are more important than fast access to multiple versions, than use snapshots instead of multiple projects).
    - Once the design is consolidated and you are ready to go into production, export the project into an mdl file and import it into the production repository. Deploy and run the production environment.
    - Now you have two almost identical systems running side by side. The development system also has all the earlier project versions, while the production only has the latest version. If a problem is detected in the production, test and fix in the development and then move the fix into production (mdl export-import + deploy).
    Hope this helps.
    Regards:
    Igor

  • Is it possible to use the OWB in a cloud environment?

    We are examining the possibility to move a DW into a cloud environment. We are using OWB for our ETL process. Is there anyone who has experience of running a data warehouse in a cloud environment?

    Corey Kozarski wrote:
    I figured that it would be near impossible, but I figured I would ask smarties on here first. I will look into the iMic and see if it allows a second audio out channel. Thanks for the prompt reply!
    There might be a way, but I would guess that it would involve using some sort of third-party software. It would get a bit difficult if you would need to define primary and secondary audio - especially if you need to switch. In addition, I'm not sure what kind of playback software you would be using.
    If there's some way to define primary and secondary audio, you might be able to use something as simple as a USB or Bluetooth headset/headphones. There are some nicer Bluetooth headphones on the market.
    Maybe have a read of this:
    http://developer.apple.com/documentation/DeviceDrivers/Conceptual/WritingAudioDr ivers/AudioOnMacOSX/AudioOnMacOSX.html

  • Opening java project in eclipse environnement

    Hi all,
    I use eclipse environnement for java programming. I cannot open my project in eclipse, even if I specify the workspace. When I open eclipse in the specified workspcae, I cannot clic on the option "open project". Does anyone know how to open one projet in eclipse !!!!!
    Thanks a lot for any help ...
    javaFriendly

    Probably best to ask in the Eclipse forums, yes?
    However.....I guess your Eclipse project might have got corrupted or something, so (assuming your source files are still okay), backup your .java files somewhere else, delete the project directory and, in Eclipse, create a new project with the same name and then move over all your files back over. Has worked for me on a couple of occasions.

  • How to use CVS ? One shared project or separate ones?

    Maybe newbie question - what is the best way to use CVS with JDeveloper, let's say by 4 users? To have one project on shared drive (is it possible at all?) or to have separate projects on every local PC ? Thanks.

    When using CVS you'll probably have one Workspace with multiple projects...
    Just import that workspace in a CVS repository (that is the central repository) and everybody will work with there own local files which they will checkout from the repository and commit their changes back in...
    Number of projects is actually irrelevant as CVS only concerns itself about files....
    Regards,
    Robert

  • Creating a Bug after Launching the Project into Production Environment

    Hello My Friends;
    As I'm New in Implementing TFS 2013, would U advise me How to open a new Bug - after Launching The Project in to Production Environment which has already conducted more than a year ago before implementing TFS. So, a Bug has come from the Business Colleagues.
    I'd like to open a new Bug on TFS ?!
    What Repro Steps Mean ?!
    Thanks for your supportRegards;
    EB

    Hi EB,
    Thanks for your post.
    After you connected to team project using your VS, you can open a new Bug work item in VS, please refer to the steps in this document:
    https://msdn.microsoft.com/en-us/library/dd293538.aspx.
    The Repro Steps mean: provide the detailed reproduce steps there, then developer can follow the detailed steps to reproduce this bug and try fix it.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Not new; merged projects with separate TOC and indices

    As it turns out, I have three projects that will need to be
    created:
    Folder (1) for Admin users:
    Administration
    User Management
    Users (General Contents)
    Folder (2) for Approver/PM users:
    User Management
    Users (General Contents)
    Folder (3) for Regular users:
    Users (General Contents)
    I'm unsure whether, in RH6, I will be able to generate
    separate TOC and indices. Can someone tell me whether there's a
    best approach in order to enable this functionality?
    Regards,
    Sharon

    OK. Of course, nothing could be that easy, now can it? lol. I
    have managed to create the structure as Peter has defined it, and
    for the most part, things are looking good. I do, of course, still
    have a few questions I'd like to ask before I proceed:
    1. When Peter suggests I put the [Parent (No Content)] into
    each of the three folders for the administrators to use on the
    server, what exactly does the Parent content entail?
    2. I'd like to understand better the difference between the
    default topic and the start page, and how it works structurally. I
    started by generating each of the child folders with the start page
    (example: Intro.htm), but realized that using index.htm was
    important not only for the parent, but for each of the child
    projects that I set up. I just don't understand WHY it works that
    way.
    3. I set up Books in the TOC and used the Merged Help under
    each book which, of course, when generated, display books within
    books. Can I just move the projects and delete the Books
    altogether? This may be obvious, but I want to make sure I'm not
    undoing something I'm unaware of undoing (if that makes any sense
    at all).
    4. The server will be a Linux box; I have checked off the Use
    Lowercase checkbox when generating all. Is there anything else I
    should be doing to keep problems to a minimum?
    5. Last but not least (if you've made it this far), I'd like
    to know if it is any easier for the administrator, or myself, in
    the long run, to be using RoboHelp 8. Because this looks like it
    will be an ongoing project for at least five years, I want to make
    sure I am working in the smartest way I can.
    Thank you, to those who respond. I know I am asking for a lot
    of information, because this is my first merged project. Any
    assistance you can provide would be greatly appreciated.
    Regards,
    Sharon

  • Could not deploy my project in unix environment

    I am using windows for development environment, my code was deploying fine in windows environment. But when i tried to deploy in unix environment I got this error
    bpel_IRobo_Workflow1_1.0.jar failed to deploy.
    Error while loading process. The process domain encountered the following errors while loading the process "IRobo_Workflow1" (revision "1.0"): BPEL validation failed. BPEL source validation failed, the errors are: [Error ORABPEL-10902]: compilation failed [Description]: in "bpel.xml", XML parsing failed because "undefined part element. In WSDL at "file:/u01/app/oracle/product/AS10.1.3.3.0/bpel/domains/default/tmp/.bpel_IRobo_Workflow1_1.0_e580208857197172fe72bbfca5d9d8b6.tmp/workflow2.wsdl", message part element "{http://schemas.xmlsoap.org/ws/2003/03/addressing}RelatesTo" is not defined in any of the schemas. Please make sure the spelling of the element QName is correct and the WSDL import is complete. ". [Potential fix]: n/a. . . If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.
    Can any one knidly help. I have to fix this thing in a day so any help would be of great use thanks

    bpel.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="IRobo_Workflow1" src="IRobo_Workflow1.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">IRobo_Workflow1.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="combtecbsnk03NetworkInstallationsService">
    <property name="wsdlLocation">combtecbsnk03NetworkInstallationsServiceRef.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_pots_dj_schedule">
    <property name="wsdlLocation">fr_pots_dj_schedule.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_staa_response">
    <property name="wsdlLocation">fr_staa_response.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_jumper_info">
    <property name="wsdlLocation">fr_jumper_info.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="eet_mismatch_correction">
    <property name="wsdlLocation">eet_mismatch_correction.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="TaskService">
    <property name="wsdlLocation">TaskServiceWSIF.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="IRobo_Workflow2">
    <property name="wsdlLocation">workflow2.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>
    Workflow2 WSDL
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    name="IRobo_Workflow2"
    targetNamespace="http://xmlns.oracle.com/IRobo_Workflow2"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://xmlns.oracle.com/IRobo_Workflow2"
    xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:client="http://xmlns.oracle.com/IRobo_Workflow2">
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/IRobo_Workflow2" schemaLocation="IRobo_Workflow2.xsd"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://01hw127125.India.TCS.com:8888/orabpel/xmllib/ws-addressing.xsd"/>
    </schema>
    </types>
    <message name="IRobo_Workflow2ResponseMessage">
    <part name="payload" element="tns:IRobo_Workflow2ProcessResponse"/>
    </message>
    <message name="IRobo_Workflow2RequestMessage">
    <part name="payload" element="tns:IRobo_Workflow2ProcessRequest"/>
    </message>
    <message name="WSARelatesToHeader">
    <part name="RelatesTo" element="wsa:RelatesTo"/>
    </message>
    <message name="WSAReplyToHeader">
    <part name="ReplyTo" element="wsa:ReplyTo"/>
    </message>
    <message name="WSAMessageIDHeader">
    <part name="MessageID" element="wsa:MessageID"/>
    </message>
    <portType name="IRobo_Workflow2Callback">
    <operation name="onResult">
    <input message="tns:IRobo_Workflow2ResponseMessage"/>
    </operation>
    </portType>
    <portType name="IRobo_Workflow2">
    <operation name="initiate">
    <input message="tns:IRobo_Workflow2RequestMessage"/>
    </operation>
    </portType>
    <binding name="IRobo_Workflow2CallbackBinding" type="tns:IRobo_Workflow2Callback">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="onResult">
    <soap:operation style="document" soapAction="onResult"/>
    <input>
    <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>
    <binding name="IRobo_Workflow2Binding" type="tns:IRobo_Workflow2">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="initiate">
    <soap:operation style="document" soapAction="initiate"/>
    <input>
    <soap:header message="tns:WSAReplyToHeader" part="ReplyTo" use="literal" encodingStyle=""/>
    <soap:header message="tns:WSAMessageIDHeader" part="MessageID" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>
    <service name="IRobo_Workflow2CallbackService">
    <port name="IRobo_Workflow2CallbackPort" binding="tns:IRobo_Workflow2CallbackBinding">
    <soap:address location="http://set.by.caller"/>
    </port>
    </service>
    <service name="IRobo_Workflow2">
    <port name="IRobo_Workflow2Port" binding="tns:IRobo_Workflow2Binding">
    <soap:address location="http://01hw127125.India.TCS.com:8888/orabpel/default/IRobo_Workflow2/1.0"/>
    </port>
    </service>
    <plnk:partnerLinkType name="IRobo_Workflow2">
    <plnk:role name="IRobo_Workflow2Provider">
    <plnk:portType name="tns:IRobo_Workflow2"/>
    </plnk:role>
    <plnk:role name="IRobo_Workflow2Requester">
    <plnk:portType name="tns:IRobo_Workflow2Callback"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    James I am making the endpoint reference available at run time so I think I need not change it while deploying.I think this is the problem the problem.
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://01hw127125.India.TCS.com:8888/orabpel/xmllib/ws-addressing.xsd"/>
    </schema>

  • Deploying Oracle Worklist into a Separate Environment

    Hi Experts
    I am trying to deploy the Oracle Worklist application into the oc4j container in my local machine, which doesn't have a SOA environment.
    Is this possible? I tried to deploy the worklist app into a different container of the application server which has got the SOA environment
    and it didin't work.
    Expecting your ideas.
    Thanks
    Jamith

    Thanks for your responses guys, however I am now more confused as Torsten and Ravinder are saying its OK and Garth says its not OK. Can anyone validate this please. Thanks a ton.
    The real answer is that you are going to have to trying it for yourself. I don't recommend doing it based on previous experience.
    Just think about it for a monument. What happens when your server team doesn't upgrade to CM12 Sp2 but the WS team does? How exactly will this affect your MP?
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Problem setting up separate runtime environment on OWB 11g

    We're trying to set up an environment similar to this: [Split Repositories Implementation|http://download.oracle.com/docs/cd/B28359_01/owb.111/b31280/reqs01.htm#BGBIHAHE]
    The server OS is Windows Server 2003 x64 ed, database version is 11.1.0.7
    The database/warehouse server was installed with a single database where the default design repository is installed. There is a "control center service" running on the default instance.
    We're running OWB clients on separate XP workstations and are able to access the minimal default design repository.
    We've set up another database on the same server, this one is to be used for the runtime environment, as described in the references Oracle diagram referenced above.
    However we're not able to find much useful documentation on how to set up the second database with the runtime environment and control center service.
    Whenever we try to dig deeper into the Oracle documentation, we always end up with hints on how to set up a "remote runtime" on a server without database. This is not what we want to achieve.
    A simple step-by-step guide on how to set up a runtime control center repository with audit tables & packages in a database separate from the design repository database is very difficult to find.
    Is there anyone who've succeded in doing this that could give us any information on how to implement it?
    Regards,
    -Haakon-

    Thanks again Oleg.
    I've now managed to configure up a separate runtime target environment in addition to our design environment.
    For others who might struggle with this; here's what I did:
    - log on to the Windows server console
    - open a command window
    - set ORACLE_SID to the newly created runtime target database
    - set ORACLE_HOME
    to same home as previous OWB default home installation (initial design database)
    - run >sqlplus "/as sysdba"
    - run %OWB_HOME%/owb/UnifiedRepos/clean_owbsys.sql
    to remove all previous OWBSYS setup
    - edit %OWB_HOME%/owb/UnifiedRepos/cat_owb.sql
    and comment out the 'LOCK USER OWBSYS' statement at the end, then run the script
    - run %OWB_HOME%/owb/UnifiedRepos/reset_owbcc_home.sql : this will prompt for "the full path of the Oracle home for the OWB Control Center install:"
    . Enter your '<drive>:\Oracle\product\11.1.0\db_1\owb'
    - after running reset_owbcc_home.sql one needs to set a known password on the OWBSYS user:
    ALTER USER owbsys IDENTIFIED BY password
    - finally run the Repository Assistant locally on your server and set up a new repository workspace in the new database. This time (after running the above sql-scripts, the Assistant did not crash halfway through).
    We're now able to create a new Control Center from the OWB client installation and deploy tables & mappings and execute mappings on the runtime target system.

Maybe you are looking for

  • RenameTo.(), Delete(), and mkrdir() not working????

    Hello Every Body i was just trying to make rename, delete, or even mkdir for files but for some resoan the value returned is FALSE?? here are some peice of my code File f = new File(path+"\newfolder");      out.print(f.mkdir()); File f = new File(pat

  • Can MediaSource display MP3 file name instead of MP3 tag information? ; Playlist default locat

    ?I am using Creative MediaSource Player 5.0.38 as an MP3 player on my computer:?. Can we get MediaSource to display mp3 file names instead of mp3 tag information when file is being played as part of a Playlist???2. Playlists are stored in this locati

  • Nokia 701 (or Belle?) missing features and network...

    Hi all, I used to own a 5800XM that worked great, then bought a 701 to be able to run all the new apps and take advantage of the new Nokia Belle OS. Well, little disappointment... First, I can't update to 111.030.0609 from 111.020.0307 - apparently b

  • How to upload a template in sharepoint and send notification through labview?

    Hi, i am trying to make a form in LabView and want to send notification through labview if possible and upload it on sharepoint site. Can it be done? I am attaching the vi. in this i have few questions? In front panel if you click STANDARD there will

  • WCM for Multi-lingual Website How To?

    Hi, I am new to Oracle UCM, and would like to know if there is any link/document talking about WCM for multi-lingual website? Which is the best way if a website contains content in different language such as English, Chinese, etc. Thanks.