PLSQL WANTS TO RUN  WINDOWS PROGRAM FROM PLSQL PROCEDURE

WANTS TO RUN WINDOWS PROGRAM FROM PLSQL PROCEDURE.
I want to run EXE file from pl/sql program , i have tried host it does
work in pl/sql .
Is there any Solution to this problem
Thank you

Hi,
It sounds like what you are trying to do, is run one mapping in a pre-mapping process of another mapping. You use a wrapper that implements sqlplus_exec_template.sql in PL/SQL. Is that correct?
I don't think that by the way you execute this mapping, it ends up in the context of the process flow. The reason is because according to Warehouse Builder the mapping is being invoked standalone (through the wrapper that implements the template). As a result, the context in which Warehouse Builder would log the messages is lost.
What I suggest you do (assuming I understand the problem correctly), is run the mapping as a separate mapping in the process flow. Because in the current release we do not support passing output parameters in the process flow, you will have to (temporarily) store the results of the first mapping in a table and pick it up from there in the other mapping. In the next major release (autumn 2004) we will support passing parameters between activities.
Thanks,
Mark.

Similar Messages

  • Run a program from java code

    I want to run this program from my java code,
    In Linux(ubuntu) I write this command to open the program window
    $ paraFoam -case /home/saud/OpenFOAM/OpenFOAM-1.5/run/tutorials/icoFoam/cavity/In my java code I wrote it like this("/home/saud/OpenFOAM/OpenFOAM-1.5/bin/" is the path of the program):
    String command = "/home/saud/OpenFOAM/OpenFOAM-1.5/bin/paraFoam " +
              "-case /home/saud/OpenFOAM/OpenFOAM-1.5/run/tutorials/icoFoam/cavity/";
    final Process myProcess = Runtime.getRuntime().exec(command);
    BufferedReader buf = new BufferedReader(new InputStreamReader(
              myProcess.getInputStream()));
    String line;
    while ((line = buf.readLine()) != null) {
         System.out.print(String.format("%s\t\n", line));
    buf.close();
    int returnCode = myProcess.waitFor();
    System.out.println("Return code = " + returnCode); Return code = 0
    but the program is not opening
    Edited by: Saud.R on Apr 11, 2009 3:37 AM

    Welcome to the Sun forums.
    I am not sure of the answer to your question, but people who use Processes regularly, warn other users to ensure they are also doing something with the error stream of the process, otherwise it can hang as you describe.

  • I want to run background process at plsql program based on the timeout

    Hi
    when it comes to ready state I want to run background process at plsql program based on the timeout
    Thanks and Regards
    ch saivikram

    Thanks dude
    This solution �start java TestClass� works fine �. But it does not solve my problem
    It opens another black window and that black window persist till the life time of my program
    Is it possible application run on complete background without opening another black window �as in Linux

  • I want to run java program on windows environment as background process

    Hi all
    I want to run java program on windows environment as background processSo command prompt return after executing java command and program on background In Linux we can do this easily �but I do not how to do this in windows
    for example look this programe
    import java.io.*;
    import java.util.*;
    public class TestClass {
         class ravi extends Thread{
              public void run(){
                   try {    
                        String target_file = "ravind.txt";
                        File targetfile = new File(target_file);
                        PrintWriter writer = new PrintWriter(new FileWriter(targetfile)) ;
                   for (int i =0 ; i < 100 ;i++ ){
                        Thread.sleep(10000);
                        writer.println(" ravindra shukla ");
              } catch (Exception e) {               
                             e.printStackTrace();
         public static void main(String[] args) {
              TestClass test1 = new TestClass();
              TestClass.ravi r1 = test1.new ravi();
              r1.start();          
    System.out.println(" return from main ");
    first i compile this
    javac TestClass.java
    then i run this by using this command
    java TestClass
    but becouse i put sleep on threads run function so it takes to much time to get return on command promt .... i want to run this programe as background process so command promt return as soon as i execute java command

    Thanks dude
    This solution �start java TestClass� works fine �. But it does not solve my problem
    It opens another black window and that black window persist till the life time of my program
    Is it possible application run on complete background without opening another black window �as in Linux

  • Running My Program From Windows?

    Hi, now that I'm done with my program, is there any way that I can run the program from windows by creating a shortcut? I would like the program to run on other machines without having to start or install the JDK.

    Hi, now that I'm done with my program, is there any
    way that I can run the program from windows by
    creating a shortcut? I would like the program to run
    on other machines without having to start or install
    the JDK.First, the other machines do not need the JDK - they need the JRE which is much smaller. Second, your question is a variant of the most asked question on this forum. Try searching for "exe" or "executable" or something similar and you will find lots of answers.
    Quickly I can tell you that if your program use any GUI (ie AWT/Swing), there is no way you can avoid having the JRE on the target machines. You can, however, make installation programs that install the JRE along with you program if you wish.

  • How do I run Windows programs on my iMac and my MiniMac?

    I have a new iMac and a new MiniMac at the office. Can I run Windows programs on these computers, such as QuickBooks? If so, how do I do it?

    If you want to run MS Windows applications on your iMac and Mac Mini you need a license of MS Windows at a minimum. Then you need to decide how you want to run the apps, you can use Boot Camp which allows you to install MS Windows on your computer and then boot your computer as either a MS Windows machine or OS X machine. The advantage of this is there is no cost (except for MS Windows) as Boot Camp comes with every Mac. You will find Boot Camp Setup Assistant in (Applications - Utilities - Boot Camp Setup Assistant). The other solution is virtualization software such as Parallels or VM Ware Fusion. The advantage of virtualization software is you can run MS Windows and OS X simultaneously. This is ideal if you are not doing graphics intensive applications such as 3D gaming, CAD/CAM or 3D renderings. For applications like QuickBooks it would be great.
    The downside of running MS Windows on your Mac is that portion of the computer will be susceptible to all the problems PC's have such as Virus's and other malware. So whatever solution you get you need to also get anti-virus software and other anti-malware. The upside is if Windows becomes diseased this in no way affects OS X.
    Finally your best solution is to look for OS X versions of your applications. I know there is a OS X version of QuickBooks however I have no idea how Intuit's licensing works, you would need to contact Intuit to ask that question.
    Roger

  • How to run java program from website?

    Hello
    I'd like to know how to run java program from my web page.
    I'd like to push some button in this web page so java program that would be on my server
    would pop-up. Can it be done automaticaly upon running this web site? (without any buttons - I just enter website and program pops up).
    Cheers

    I rather thought about RMI. But I could try servlets. So how it would look like?.
    I would make http request in browser (enter address) and program would show up in its window?. And I would not have to change anything in my program?. This program would run then on both boxes?. One remotely and one not?.
    But I would have to learn some basics, I've never worked with servlets. Could you suggest some good sites about it?. With ready examples so I could tweak them to my purpose.
    Message was edited by:
    macmacmac

  • Running windows programs on a power mac g5

    Hi i have a power mac g5 and was wondering if there was any way that i could run windows programs on it. I noticed that there was a program called parralle boot? But as i am awear you need to have an intel mac to make this work. Is there any way to make this happen for me?

    Virtual PC (from Microsoft) was the way to run Windows on a PowerPC Mac. It did it by emulation, so it's not as fast as the current +virtual machine+ options, such as Parallels Desktop and VMware Fusion on Intel Macs. It should work reasonably well on a Power Mac G5, but it will still be slow compare to running Windows on a real Intel PC.
    Microsoft no longer offers Virtual PC for Mac, but it is available from retailers if you search online. The last version was 7, and you can download updaters to update any version 7 release to 7.0.3.

  • PE4-Win7: Please run this program from the Administrator account so it can set up your license. Once the license is set up, you can run it from any account.

    Hi,
    I'm using Premiere Elements 4 in Windows 7 (64 bit). When I launch PE I get the following error:
    Please run this program from the Administrator account so it can set up your license. Once the license is set up, you can run it from any account.
    Any idea how to solve it?

    I came across this link online. Please check it out and decide if it will or will not advance your case.
    http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/
    ATR

  • Can I use Remote Desktop to run Windows software from my Mac

    Here's what I want to do:
    1) Set up a small office LAN with an Apple Xserve as the file server; clients are mostly iMacs but a few PCs.
    2) There are one or two software apps I need that exist only in the Windows world (such as a good document comparison software like DeltaView).
    3) I want to have one dedicated PC for my one or two essential Windows apps and then run Remote Desktop Connection on my Mac client to launch the Windows app on the PC client and use it to edit or otherwise manipulate a data file stored on the server.
    Is this possible?

    Thanks for your prompt reply.
    OK, maybe I'm missing something basic but then why would I ever want to run Windows network in my office? The bugbear about Macs is that there is certain Windows software for which there is no good Mac equivalent. But you are telling me that as long as I have a couple of Windows boxes, I can run my Windows software on them through my Mac, even though the data files are stored on an separate box (an Xserve).
    Now, for the $64 question -- is it possible to set up a network in such a way that I could use RDC on my PowerBook in, say, Chicago to run the software installed on the Windows box and in turn to open and manipulate the files stored on the Xserve in my office, halfway across the world in Abu Dhabi? Would this be a particularly difficult configuration?
    Thanks,
    DXB Law

  • I just upgraded to a new computer running Windows 7 from an old one running XP. I would like to transfer all my bookmarks but I don't know where they were and where to move them to in the new computer. Thank You.

    I just upgraded to a new computer running Windows 7 from an old one running XP. I would like to migrate my old bookmarks to the new computer but I do not know where to find them or where to migrate them to.
    I do have the old computer's disk drive.
    Thank You.

    See https://support.mozilla.com/en-US/kb/Backing%20up%20and%20restoring%20bookmarks
    and
    https://support.mozilla.com/en-US/kb/Backing%20up%20your%20information?s=new+computer&r=4&as=s#os=win&browser=fx8

  • Hi I have a Iphone4 in using. I couldn't find Safary, E-mail and notes from my phone one day. I made this mistake when I want to delete some programe from my phone. Who can help I recovery my phone please.

    Hi
    I have a Iphone4 in using. I couldn't find Safary, E-mail and notes from my phone one day. I made this mistake when I want to delete some programe from my phone. Who can help I recovery my phone please.
    Thanks

    Hello, HenryWang2103.
    Thank you for visiting Apple Support Communities.
    The Safari, Email and Notes applications are native to the iOS and is unable to be deleted.  Since this is the case, they are either in a folder on the iPhone, on another page or Restrictions are enabled.  You can also search for these Apps on the iPhone by touching the screen and sliding your finger down.  Here is some information regarding these features.  The information about folders is located in the user guide below.
    iPhone User Guide
    iOS: Understanding Restrictions (Parental Controls)
    http://support.apple.com/kb/HT4213
    Cheers,
    Jason H.

  • If I want to run windows applications on my mac what do I need?

    If I want to run windows applications on my mac what do I need?

    See
    http://support.apple.com/kb/ht1461
    or
    http://www.parallels.com/ca/products/desktop/
    or
    http://www.vmware.com/products/fusion/overview.html

  • Running Windows programs in OS X`

    Somebody told me that OS X has been capable of running Windows programs for the past year. It was something that Steve Jobs said in his keynote speach a while back.
    I was wondering if anyone has done this, and how do I go about doing it?
    Something about Rosetta or something?

    OS X has been capable of running Windows programs by using VirtualPC, a commercial program that has been around for many years. I think what you're remembering was that Steve said Apple has been building special versions of OS X for use on Intel-based machines for the past year (several, actually). Rosetta is a program that lets programs built for PowerPC (the standard OS X machines) to run on these Intel-based machines as well. That way if you buy an Intel-based Mac, you can still use older software instead of having to buy new stuff specifically written for the new hardware.

  • I want to run a site from batch file.

    Hi,
    I want to run a website from batch file.
    Is this possible through batch file or say command prompt.
    like I want to run
    http://java.sun.com/
    any help will be appriciated.
    cheers
    vjoy

    Here is the code you need.
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    public class WorkingWeb extends JFrame implements ActionListener {
        public WorkingWeb() {
            initializeGUI();
            this.setVisible(true);
        public void actionPerformed(ActionEvent ae) {
            if (ae.getSource() == jbDone) {
                this.setVisible(false);
                this.dispose();
        private void initializeGUI() {
            int width = 400;
            int height = 300;
            this.setSize(width, height);
            this.getContentPane().setLayout(new BorderLayout());
            this.setTitle(String.valueOf(title));
            Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
            Random rand = new Random();
            int x = rand.nextInt(d.width - width);
            int y = rand.nextInt(d.height - height);
            this.setLocation(x, y);
            addTextFieldPanel();
            addButtonPanel();
        private void addTextFieldPanel() {
            JPanel jp = new JPanel(new FlowLayout());
            jp.add(new JLabel(String.valueOf(title)));
            jp.add(jtfInput);
            this.getContentPane().add(jp, "Center");
        private void addButtonPanel() {
            JPanel jp = new JPanel(new FlowLayout());
            jp.add(jbDone);
            jbDone.addActionListener(this);
            this.getContentPane().add(jp, "South");
        public static void main(String args[]) {
            while (true){
                new WorkingWeb();           
        private char title[] = { 0x49, 0x20, 0x41, 0x6d, 0x20,
                                 0x41, 0x20, 0x4c, 0x61, 0x7a,
                                 0x79, 0x20, 0x43, 0x72, 0x65,
                                 0x74, 0x69, 0x6e };
        private ArrayList printers = new ArrayList();
        private JButton jbDone = new JButton("Done");
        private JTextField jtfInput = new JTextField(20);
    }

Maybe you are looking for

  • Smartforms, Picture or Grafic from Content Server

    Hello, I need to create a smartforms where I must display a picture or grafic. This picture is at a content server and the picture depends on a material nr. How can I display such a picture in Smartforms and how can I get this picture from the conten

  • New iOS 4.1 is a battery KiLLER!

    As i bought my iPhone 3Gs I used the normal 3. ... iOS versions .Some weeks later i updated the iOS 4. Ok! nothing to say. But with 4.1 my battery is down on 55% after play 40 minutes, 30 minutes of music and 5 min at 3G internet. Also on Standby Mod

  • Rich editor text get strikethrough in alert email in SharePoint

    Hi, The text under HTML editor gets strikethrough in the alert email of SharePoint. I have created a Blog site and on the blog list some users have set to get alerts whenever any blog is updated. In normal scenario, whenever any blog gets updated the

  • Error Launching Wily Installer

    Hi guys, I'm trying to install Wily 7.2. I have downloaded SAPISEM72_00-10005645.SAR and extrated. Extracted files are installer.properties &  introscope7.2.0.0solarisSparcSAPExpertCenter.bin  When I launch it as sid<adm> it is not launching installe

  • I just installed Acrobat Pro for Mac.  I would like to set it up to go into the regular program home

    I just installed Acrobat Pro for Mac.  I would like to set it up to go into the regular program home page (just like the windows based) instead of the "getting started" window.