Two Environments with one Workflow installation??

Hi all,
I have OWB repository which is created on DEV environment on a box and workflow installed for the same
Later on I have added a seperate database on the same box for QA and have sucessfuly created a repository also.
I have configured the workflow though workflow configuration assistant for QA environment and am able to deploy the mappings and processflow.
But when I switched back to the DEV environment and tried to execute the mappings the following error is thrown
RPE-02018: Oracle Workflow schema OWF_MGR on host XX.XX.XX.COM cannot be accessed using service XX.XX.COM through port 1521. Please check the location details and try again.
ORA-28000: the account is locked workflow
what should i do to switch between environments on the same box....Should I reconfigure the workflow for DEV.
Cant I have workflow for both environments parallelly?
In worst case,if I opt to reconfigure the workflow pointing back to DEV....i am afraid I will be loosing the QA connection?Can u please suggest to overcome this situation
Thanks
Sridha
Edited by: sridha on Feb 6, 2009 7:06 AM

Hi Sridha,
I prefer a setup with two different databases for DEV and QA. Each one has its own repository and workflow installation.
Your approach with different schemas in the same database should work for the mappings, but I do not know if you can have to workflow schemas on the same machine. You may try to add a second workflow user (beside OWF_MGR) using %ORACLE_HOME%\wf\install\install.bat , but I do not know if this will work.
Good luck,
Carsten.

Similar Messages

  • Print to two printers with one command?

    Is there a way to print the same document to two printers with one command? I'd like to have every document I print automatically saved as a PDF at the same time.
    Thanks,
    Mark.
    MacBook Pro (and 5 others)   Mac OS X (10.4.9)  

    That would be a good use of the PDF Services available in OS X. You can use PDF Services with AppleScript or an Automator workflow.
    Matt
    Mac Mini G4; B&W G3/300    

  • How to print two sides with one page?

    I have a PDF that is one page long and I'd like to print the same thing twice (front and back) on one page. Can I do that?
    I've tried printing two copies with the printer set to double-sided, but it just printed two sheets with one side on each sheet.

    Well sure; Go back to the authoring application that created the documents and do a 2-UP page. Make the existingg page large enough to accomodate the extra content. Is that what you're asking or do you really mean print to a printer with a back up ? In that case just flip the page over and print page 2 on the other side.
    Or are we missing something ?

  • I have two iphones with one apple id. How do I set up 'find a phone'?

    have two iphones with one apple id. How do I set up 'find a phone'?

    To wjosten-
    I just posted a similar question asking HOW you get into a menu for 'my devices' in order to name them? Thanks!

  • How to run two programs with one PC and two monitors

    Good Morning,
    I have a requirement to run a parallel loop and update the progress in two monitors with one computer.
    For ex: its a two test stage, the process and progress of the 1st stage needs to displayed in monitor1 and similarly for 2nd stage to monitor 2 with program running with one computer.Would it be possible to do that.
    Thanks in advance

    Hi Parker,
    yes, it's possible. You also have properties to set windows to specific monitors...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Can I use Logic Pro 9.1.6 on two computers with one licens

    I have download and install Logic Pro 9.1.6 on my MacBookPro 13". I record on location with my MacBook an wil edit and arrange the music on my iMac at home. Can I use Logic Pro 9.1.6 on two computers with one licens. I'm the owner of both computers. If it can where can I find the program on my MacBook? and how to install and register?

    Hi, is  the iMac also 10.6.8? I had an iMac die when 10.6.8 was installed, it worked at first but after some You Tube flash videos the screen just locked and no mouse clicking anywhere did anything. It turned out that most older iMacs [ mine was from august 2007] have a graghics chipset that can't handle Snow Leopard, there were [are?] 77 pages on this "locked screen"topic in the Snow Leopard forum. I checked out a web site that tells you how much your mac is worth by filling in the sereal number-mine was worth only $168, I may give it to a friend for his children to play with, although that seems unholy. I doubt anyone woud buy it,the problem is now so well known that even Apple certified resellars here in the Netherlands refuse to repair them,they claim Apple will revoke their certification if they replace the faulty Graphics unit,it is also VERY hard to get to that unit in an iMac, everything is so tightly packed inside.
    If your iMac is running Mountain Lion[10.8.0] you may have to change the app store preference to accept apps from all sites,normally ML will only allow app store apps to be downloaded.

  • How to sync two IPhone with one PC , but with different applications

    How to sync two IPhone with one PC , but with different applications ?
    We have two IPhones , but one PC , we want to sync separately , is that possible ?

    Absolutely, connect each phone, select what content you want on each phone, then hit the sync button. iTunes will keep everything straight, by device, upon subsequent syncs, including separate backups.

  • Can we perform two actions with one button with two clicks one after other?

    Sir,
    can we perform two actions with one button with two clicks one after other?
    I want that when I click an Add Button first time it add data to the database and when I click again this button it clear the form data to empty fields.
    Regards
    Tanvir

    In code it should be easy.
    The following code adds a button called butman with a text "ADD".
    It then registers a listener that will be called if the button is clicked.
    This listener then calls the runAddData method if you clicked on butman while it contained the "ADD" text and it will call the runClearData method otherwise.
    Therefore it will swap the button's functionality between ADD and CLEAR on every click.
    final Button butman = new Button("ADD");
    butman.setOnAction(new EventHandler<ActionEvent>() {
              @Override
              public void handle(ActionEvent t) {
                        if (butman.getText().equals("ADD")) {
                                  butman.setText("CLEAR");
                                  runAddData();
                        } else {
                                  butman.setText("ADD");
                                  runClearData();
                        } // END IF-THEN
              }});I hope this is what you wanted.
    Some extra food for thought.
    You might want to run the ADD and CLEAR methods in their own threads so that it can run in the back ground, without slowing down your user interface.
    I also like to rather reuse one button for multiple functionality in stead of making an application with hundreds of nodes only used rarely with masses of code to show and hide them if needed.

  • Re: How to create More two class with one object

    haii,
             i have small information How to create More two class with one object,
    bye
    bye
    babu

    Hello
    I assume you want to create multiple instance of your class.
    Assuming that you class is NOT a singleton then simply repeat the CREATE OBJECT statement as many times as you need.
    TYPES: begin of ty_s_class.
    TYPES: instance   TYPE REF TO zcl_myclass.
    TYPES: end of ty_s_class.
    DATA:
      lt_itab      TYPE STANDARD TABLE OF ty_s_class
                     WITH DEFAULT KEY,
      ls_record  TYPE ty_s_class.
      DO 10 TIMES.
        CLEAR: ls_record-instance.
        CREATE OBJECT ls_record-instance.
        APPEND ls_record TO lt_itab.
      ENDDO.
    Regards
      Uwe

  • HT204053 Use two phones with one iCloud account?

    Can you have two iphones with one iCloud account?

    Welcome to the Apple community.
    Absolutely. There is no problem whatsoever in using a single iCloud account for two phones. However, saying that, if the two phones are used by different people, it may well not be the best of ideas.

  • Syncing two iphones with one computer

    A co-worker and I share a secretary. We'd like to be able to sync our individual calendars (in Outlook '03) on our secretary's PC.
    Is this possible?

    UPDATE:
    Well I thought I figured it out when I realized iTunes gives you the option of syncing only selected calendars. My plan was to check only my calendar to sync with my phone and Gary's calendar to syn with his phone.
    Unfortunately, the option to sync only selected calendars is grayed out in iTunes. I can only check the "sync all calendars" box.
    Surely others have figured out how to sync two phones with one computer and only have the data you specify synced to the specific phone.
    Do I have to create another Windows user account where only Gary's calendar is maintained and then switch back and forth between user accounts whenever syncing?
    Any help would be much appreciated.

  • I have two phones with one apple id i have lost most of my contacts from one of them

    i have two phones with the same apple id but i have lost most of my contacts from one phone

    Apps are tied to the Apple Id they were purchased with. So any updates for the Apps will ask for that apple ID to update.
    The only way to prevent this is if you remove all the Apps that were purchased with your ID from the iPad.

  • Can I sych and back up two Iphones with one Itunes on Win 7 without loosing data?

    hello,
    I just purchased an iphone 4s for my wife and I want to connect it to Itunes.  I am affraid that if I do so I will loose my Iphone contacts or get them mixed with her phone.  Is there a way to connect two phones to one Itunes program and have two of them backup and sych without a conflict?  Can we share the same music library or paid apps?  I understand that there is a way but this is not too clear to me.  Please help!
    I have made a copy of my library just in case before I start messing with it.
    Thank you!

    How to use multiple iPods, iPads, or iPhones with one computer

  • Can I control two Macs with one keyboard & mouse simultaneously?

    I'm presently the operator and head audio tech for a major Off-Broadway show. I'm running the show on Ableton Live 6 through a Mac Mini, using a MOTU 828mkIII as the Firewire audio interface to the console. "Show control" is basically straight music playback, plus arming and disarming loops, triggering sound FX cues, and stopping and starting playback. The show has been exceedingly stable, no real reason to worry - but the fact that I don't have a redundant backup system concerns me. Theoretically, I can use our Denon CD players to run the show off of discs I've burned, but it's only viable for me because I know the show; a sub running the show would be up the creek - and if we hit a snag and run out of loops, forget it. Furthermore, those of you who've worked with Live know that in a performance based/show control situation, you can remain in an audio loop indefinitely, without any worry of a CD running out of prerecorded loops. (This is a specific reason why we're using Ableton for this show - the music can keep "vamping" until automation and rigging give me the clear to proceed.)
    Considering that I'll be taking some time off this summer, I don't want this to be a concern for my sub(s), so I've charged myself with the task of building a redundant backup. Problem is, I'm not sure how to do it.
    What I've been looking at is a dual Ableton Live/Mac Mini/Firewire interface system. Basically, to duplicate what's running the show presently, and have it running in tandem while the main playback system goes to the house - but for both to be controlled by only one mouse, keyboard and screen, so there's no delay in the event of a crash. If one fails, I send the audio from the backup into the theatre. There would be no disruption of playback, except for the operator`s response time in switching to the backup`s audio output.
    Software like Synergy and Teleport let me share a single keyboard, mouse, and screen over two or more computers - +but only control one computer at a time+. And I've looked for KVM switches and USB "splitters" but they also seem to be toggle devices between one or another computer - which leads me to think I may have to network the two...
    Any ideas are appreciated, even the obvious ones, as I may have overlooked some or assumed some to be out of the question.
    That`s basically it - *simultaneous realtime* control of two computers from one keyboard and mouse. Both Minis performing the same task at the same time.
    Is there software/hardware that can do it, or can I network the backup as a "slave" that mimics the master?
    Thanks.

    Perhaps you could setup a parallel processing network:
    http://daugerresearch.com/pooch/
    The website was last updated 5 days ago according to Google. Hopefully their server will be back up soon. I noticed it wasn't connecting when I tried.

  • Can you use two ipads with one itune account

    We have two ipads and one Itunes account.  Are we able to have separate accounts within iTunes so my husband can have his games on his account and I can have mine?

    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    How to Use Multiple iDevices with One Computer

Maybe you are looking for

  • Syncing Voice Memos to iTunes - Workaround

    Not everyone can sync their voice memos to iTunes, and no one really knows why (or cares).  Here is a workaround. Part One - Email the Voice Memo to Yourself 1. Select the voice memos application. 2. Select the voice memos list (button in lower right

  • Looking for Exit or BTE or Badi for Changing amount to posted in F-53

    Dear Guru's I am Looking for Exit or Badi or BTE for F-53  Where I can Change The Amount while clearing the vendor payemnt because My Client Bussiness process is to Cut bank commission on the amount to be posted while making the  payment . Or is ther

  • Auto-fill doesn't seem to remember my passwords?

    I have a MacPro & MBP. On the MacPro, Safari's autofill does not remember my passwords, but it does on my MBP. I sync all together using MobileMe. Any ideas why it doesn't work on the MacPro? Both machines are using Mac OS X 10.5.8. I looked at the A

  • How to recover a Photoshop Blackened Areal

    How to Recover a Photoshop Blackened Areal Hello I'm a photoshop beginner and I would like to ask how to recover a photoshop "blackened" areal I found in web??? So I would like to ask if someone here could give me a tutorial how to recover photoshop

  • How to use the .ase files?

    As a test I imported a few Kuler .ase files into Illustrator CS2. They appear to be spot RGB colors all labelled Unnamed Global Color, which clash when I drag in a second lot. I made 2 files, one set to RGB, the other to CMYK. In the RGB file the col