List processes in a Loop

Hello,
I'm looking for a way to list the processes on my client with a delay of 2 seconds for each process. This is the reason why I cannot use Get-Process. Maybe as a do oder foreach loop.
Greetings
Uemit

If you really want to get a process at a time that's doable in the way that jrv said:
Get-Process | ForEach-Object {
#Do whatever you want with $_
Start-Sleep 2
This works because the each object retrieved from Get-Process (in this case the object is the process itself) is immediately passed over the pipeline. After all that's the whole point of the pipeline, that you don't have to store the whole object[] retrieved
by whatever comes before the pipeline into memory.
You can confirm this by doing the following:
function TestFunc
BEGIN {Write-Host "Starting"}
PROCESS {Get-Process Sv*}
END {Write-Host "DONE"}
TestFunc | % {$_; Sleep 1}
When you run it, this is what you get:
Starting
Handles NPM(K) PM(K) WS(K) VM(M) CPU(s) Id ProcessName
385 14 5636 4128 43 852 svchost
138 13 2732 2448 30 4308 svchost
DONE
I removed a lot of the processes to trim the output down. Each of the processes is presented with a 1 second delay in between them and the DONE is only printed at the very end.
You do need to keep a couple of things in mind though... You can only use this in a pipeline. A foreach loop would not work, as demonstrated here:
function TestFunc
BEGIN {Write-Host "Starting"}
PROCESS {Get-Process sv*}
END {Write-Host "DONE"}
foreach ($i in TestFunc)
$i
Start-Sleep 1
This would output the following:
Starting
DONE
Handles NPM(K) PM(K) WS(K) VM(M) CPU(s) Id ProcessName
385 14 5636 4128 43 852 svchost
138 13 2732 2448 30 4308 svchost
You can see that the end block got executed before we started seeing our objects come through, which means at that stage we're already processing an array of objects instead of dealing with each one individually.
Also, even if using the pipeline, you cannot use CmdLets that must have a full collection of objects before being able to run themselves. i.e.:
Get-Process | Sort-Object Handles | % {$_; Start-Sleep 1}
Would again return:
Starting
DONE
Handles NPM(K) PM(K) WS(K) VM(M) CPU(s) Id ProcessName
385 14 5636 4128 43 852 svchost
138 13 2732 2448 30 4308 svchost
The reason for that is because the Sort-Object needs to first collect all of the objects from the previous CmdLet before it can start a sort and it will not relinquish any objects to the next command in the pipeline until it's completed its execution.
Hope this helps.

Similar Messages

  • Dynamic List - Error processing insertText tag: 'loop' parameter arrays must be...

    Hi, I'm using Dreamweaver CS3 and ADDT (PHP/MySQL).
    I have many forms that I created with "Create Dynamic List Wizard", and All it's working fine until now, suddendly when I enter an any form, click Application / Server Behaviors, I saw a red symbol "!" next to Dynamic List Layout, I clicked it in order to make any changes, and then when I tried to save I got the following error message:
    "Error processing insertText tag: 'loop' parameter arrays must be the same length. The 'loop' parameter 'tableCSSWidth' does not have the same length as the previous 'loop' parameter(s)."
    This is happening with others form in my application. I can made some changes through "code", but others no...
    I would like to know what its' happening with then "dynamic List" server behavior?
    I appreciate your help. Thanks!
    Ernesto

    Hello Ernesto,
    Please follow these exact steps:
    - go to this location on your disk (enable view of hidden files):
    - "c:\Documents and Settings\XP_user\Application Data\Adobe\Dreamweaver 9\Configuration"
    ( if you are on Windows OS)
    or:
    - "Macintosh HD:Users:MAC_User:Library:Application Support:Adobe:Dreamweaver 9:Configuration"
    ( if you are on MAC OSX)
    - rename the "Configuration" folder to "Configuration_old"
    - open Extension Manager and remove all extensions
    - install Developer Toolbox extension
    - start DW and check if the problem still occurs
    regards,
    Ionut

  • Calling Synchronous process in a loop

    Hi
    I am facing a problem while I am tring to call Synchronous process in a loop. I am having a parent process that fetch batches numbers (list of batches) and loop for each of them and call a child Synchronous process to do some activity.
    the issue here is that the output variable on the process is taking the value that returns from the first batch call and keep repeating it for all the rest batches. I tried to initialize it to null every time I am entring the loop but strangly it has been overrided with the output variable of the first batch and then for the rest it just initialized to null and not had been overriden.
    any body face this before or knows about it
    thanks and best regards,
    Baraa

    This is Arun (working with Baraa in same Company)
    Let me eloborate the situvation
    Facing problem while I call a Sync process from an Async process using while loop.
    When I call sync child multiple times from a parent process using a While loop the response msg from child process is not correct.
    Meaning for instance let say
    Parent process : P
    Child processes : C1, C2, C3     (assuming the loop goes for three iteration)
    The expected response msg of the individual process where
    C1: 10000
    C2: 999
    C3 :           (null)
    But when I go through the audit of the parent process I could see all responses as 10000, meaning the response of the child process is not getting reflected in Parent process correctly
    Whereas when I inspect individual child process response; I could see the correct values.
    Note: I am using End Point Reference technique to call the child process
    Any Idea.
    Requirement:
    Parameter: Source System Name
    (this parameter decides which child to call, basically this will be the SERVICE on WSDL pointing to the child process)
    A parent Async process has to call a Sync child process “n” number of times (“n” get derived at run time) WHILE loop
    The parent will decide which child process to call at runtime (Dynamic call using EndPointReference)
    Some thing like below:
    <Set END POINT REFERENCE>
    <WHILE>
    Invoke Child (synchronize process)
    <END LOOP>

  • Leave to list processing

    Hi all,
    i've designed a selection screen in module pool and based on some selction criteria i've to display success and error records.These records should be displayed in the form of list output.
    As i'm using module pool i've used LEAVE TO LIST-PROCESSING for displaying these records.As i've designed selection screen the application tool bars are appearing here on the list and no tool bar icon is functioning even though i've declared them in PF STATUS.
    Now when i double click on list it has to take me to some t-code say SM35.Where should i write this AT LINE-SELECTION event?
    ...Regards

    Hai,,
               You keep the AT-LINE SELECTION in the last only...
    For Leave To List Processing ,you will try the following ..
       IF SY-UCOMM = 'Your Fn_Code'.
           LEAVE SCREEN.
           LEAVE TO LIST-PROCESSING.
        SELECT * FROM ZTable INTO TABLE ITAB.
              LOOP AT ITAB.
          WRITE:/ ITAB-ITEMNO.
         ENDLOOP.   
      ENDIF.
    Try this ..it will be useful to you..I hope..
    reward points if it's useful..
    Regards,
    Manoj.

  • Command leave to list processing

    Dear All,
    I have an executable program (execute via SE38) that need to call an additional screen for input before the actual output on sapscript.
    It is like this, user key in the input into selection screen, then program will extract data and display them into a pop up window. User will further select data from the pop up, and then sapcript will be printed out eventually.
    I'm now stuck at the pop up window. I created a new screen 9000 with screen type "Modal dialog box" and coding as follow:
    Executable program:
    CALL SCREEN 9000 STARTING AT 40 20
                       ENDING   AT 150 50.
    Flow Logic:
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_9000.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_9000.
    Coding:
    MODULE STATUS_9000 OUTPUT.
      SUPPRESS DIALOG.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 9000.
      SET PF-STATUS 'STATUS_9000'.
      LOOP AT TAB INTO WA_TAB.
        WRITE:/1 WA_TAB-TYPE.
      ENDLOOP.
    ENDMODULE.                 " STATUS_9000  OUTPUT
    MODULE USER_COMMAND_9000 INPUT.
      OK_CODE = SY-UCOMM.
      CASE OK_CODE.
        WHEN 'OK'.
    ********  trigger output to sapscript
        WHEN 'CANCEL'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT
    With the above code, output is successfully displayed on screen 9000 with command "Leave to list-processing". But after the list displayed, those buttons that defined in Status_9000 are not working at all in screen 9000. There is no response from any buttons i clicked, even i tried in debugging mode it didn't go in debugger as well.
    Please comment which part i miss. Thanks.

    Hi,
    I think the problem is with your statement in the PBO module.
    Why not try and delete this part 'AND RETURN TO SCREEN 9000'.  Over here, if you want to use this addition RETURN TO SCREEN, then screen number should be other than your modal list screen. Currently you have changed the modal screen to behave as list, but at the same time, you want it to behave as the normal screen, after you come back from the list.
    If you really need that, then please create another screen, say 9100, and change it to AND RETURN TO SCREEN 9100, instead of AND RETURN TO SCREEN 9000.
    Regards,
    Lim...

  • Adding to a List which is being looped?

    Hello,
    I am trying to add items to a list which is being looped.
    Here is a demostration of what I want to do.
    List<MyObject> myObjects = new ArrayList<MyObject>();
    myObjects.add(new MyObject());
    for (MyObject mo : myObjects) {
            if (mo.process()) { // assume 'true' for couple of loops
                MyObject mo2 = (MyObject) mo.clone();
                myObjects.add(mo2);
    }I know I could keep a seperate list and then addAll to the myObjects list but that is not an option in my case. (code above is just a sample).
    And I also don't want the items to be added to the list after the for loop is existed which I think will happen if i do the list synchronized. (correct me if i am wrong please).
    Is there a way for this?
    thanks.

    This is a hard one. What you say you want can't be done with the new for loop nor with an iterator. You'll have to find a different way. If you know exactly what you want, there'll be a way to obtain it.
    Why is it that you cannot use addAll() or another means to add the elements after the loop?
    In your loop, do you want to loop through the added items too?
    I never used a ListIterator, but I think it has a few more options than the plain Iterator. Did you look at that yet?

  • ABAP list processing statements in ABAP Objects

    Hi,
    Based on the Online help "The ABAP statements used for list processing are not yet fully available in ABAP Objects".
    Is there any chnage planned about this for the next WAS release?
    Thanks,
    Peter

    Hi Peter
    I believe, most of the measures taken are for some compatibility and performance issues. So, there is no need to expect great changes about this.
    *--Serdar

  • Apple loop listed twice in the loop browser

    Can someone tell me why my apple loops are being listed twice in the loop browser?

    I actually need help here too. Mine are listed twice but it is because they are on my drive in two places
    Library>Application Support>GarageBand>Apple Loops>Apple Loops for GarageBand
    And also here
    Library>Audio>Apple Loops>Apple>Apple Loops for GarageBand
    Can I toss one of these or does GarageBand and Logic need to see these in different places?

  • Print List Processing Report to PDF

    hi all,
    i've read many forums about convert info into PDF. but i'm very new to understand those forums.
    In case I want to print list processing report as PDF (not hard copy thru printer). First, user types the data on the screen then click on 'Execute' button, then the system shows the result on screen. After that user asks system for print the screen on menu bar by List=>Print.
    So please advise me how to get the spool id, then export as pdf. As my opinion, i may use CONVERT_ABAPSPOOLJOB_2_PDF and GUI_DOWNLOAD. But where is the place I should put the methods on?
    Thanks in advance.
    Peerasit

    Hi,
    Go through The simple Anallise this program.
    report zabap_2_pdf.
    *-- Enhancements: only allow to be run with variant.  Then called
    *-- program will be transparent to users
    *-- TABLES
    tables:
      tsp01.
    *-- STRUCTURES
    data:
      mstr_print_parms like pri_params,
      mc_valid(1)      type c,
      mi_bytecount     type i,
      mi_length        type i,
      mi_rqident       like tsp01-rqident.
    *-- INTERNAL TABLES
    data:
      mtab_pdf    like tline occurs 0 with header line,
      mc_filename like rlgrap-filename.
    *-- SELECTION SCREEN
    parameters:
      p_repid like sy-repid, " Report to execute
      p_linsz like sy-linsz default 132, " Line size
      p_paart like sy-paart default 'X_65_132'.  " Paper Format
    start-of-selection.
    concatenate 'c:\'
                p_repid
                '.pdf'
      into mc_filename.
    *-- Setup the Print Parmaters
      call function 'GET_PRINT_PARAMETERS'
       exporting
         authority= space
         copies   = '1'
         cover_page                   = space
         data_set = space
         department                   = space
         destination                  = space
         expiration                   = '1'
         immediately                  = space
         in_archive_parameters        = space
         in_parameters                = space
         layout   = space
         mode     = space
         new_list_id                  = 'X'
         no_dialog= 'X'
         user     = sy-uname
       importing
         out_parameters               = mstr_print_parms
         valid    = mc_valid
       exceptions
         archive_info_not_found       = 1
         invalid_print_params         = 2
         invalid_archive_params       = 3
         others   = 4.
    *-- Make sure that a printer destination has been set up
    *-- If this is not done the PDF function module ABENDS
      if mstr_print_parms-pdest = space.
        mstr_print_parms-pdest = 'LOCL'.
      endif.
    *-- Explicitly set line width, and output format so that
    *-- the PDF conversion comes out OK
      mstr_print_parms-linsz = p_linsz.
      mstr_print_parms-paart = p_paart.
      submit (p_repid) to sap-spool without spool dynpro
                       spool parameters mstr_print_parms
                       via selection-screen
                       and return.
    *-- Find out what the spool number is that was just created
      perform get_spool_number using sy-repid
                 sy-uname
        changing mi_rqident.
    *-- Convert Spool to PDF
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        exporting
          src_spoolid= mi_rqident
          no_dialog  = space
          dst_device = mstr_print_parms-pdest
        importing
          pdf_bytecount                  = mi_bytecount
        tables
          pdf        = mtab_pdf
        exceptions
          err_no_abap_spooljob           = 1
          err_no_spooljob                = 2
          err_no_permission              = 3
          err_conv_not_possible          = 4
          err_bad_destdevice             = 5
          user_cancelled                 = 6
          err_spoolerror                 = 7
          err_temseerror                 = 8
          err_btcjob_open_failed         = 9
          err_btcjob_submit_failed       = 10
          err_btcjob_close_failed        = 11
          others     = 12.
    call function 'DOWNLOAD'
         exporting
              bin_filesize            = mi_bytecount
              filename                = mc_filename
              filetype                = 'BIN'
         importing
              act_filename            = mc_filename
         tables
              data_tab                = mtab_pdf.
          FORM get_spool_number *
          Get the most recent spool created by user/report              *
    -->  F_REPID               *
    -->  F_UNAME               *
    -->  F_RQIDENT             *
    form get_spool_number using f_repid
         f_uname
                    changing f_rqident.
      data:
        lc_rq2name like tsp01-rq2name.
      concatenate f_repid+0(8)
                  f_uname+0(3)
        into lc_rq2name separated by '_'.
      select * from tsp01 where  rq2name = lc_rq2name
      order by rqcretime descending.
        f_rqident = tsp01-rqident.
        exit.
      endselect.
      if sy-subrc ne 0.
        clear f_rqident.
      endif.
    endform." get_spool_number
    Regards
    swamy

  • ABAP Mapping - Message shown in Standard Change List Process Log

    Hi
    I am working with ABAP Mapping program. I had created ABAP class using ABAP workbench. Before this, in exchangeProfile..data was provided for com.sap.aii.repository.mapping.additionaltypes ==>> as " R3_ABAP|Abap-class;R3_XSLT|XSL (ABAP Engine) " and 'Saved'.
    In Interface Mapping, after providing the Class Name under 'Mapping Program' and activated. After activation (Standard Change List), it is showing the following messages under 'Processing Log'.
    --> Standard Change List - Process Log message
    Activation of the change list canceled Check result for Interface Mapping IM_ABAP_MAPPING | http://ABAP_Mapping_SREE:  Type R3_ABAP of
    program ZSREETEST is invalid because it is not registered in the exchange profile . Check the values for the exchange profile parameter
    IntegrationBuilder.Repository.com.sap.aii.repository.mapping.additionaltypes
    --> End of Log message
    Can some one please guide me in resolving the ABAP mapping issue.
    Thanks in advance.
    ..Sree

    Sree,
    The log says that there is ABAP mapping included in your exchange profile. Do the things what michal have told and also check your mapping program whether working fine or not in SXI_MAPPING transaction.
    You can see this weblog for reference:
    /people/sameer.shadab/blog/2005/09/29/testing-abap-mapping
    ---Satish

  • List processing and PF status.

    Hi Team ABAP,
    i got a problem in List processing.
    I´m in a dypro with a table control on it. Users can mark one or more ALV lines and then e.G. press "process".
    Something gets done then (some forms get printed), and after that i want to display a protocol.
    First i tried to process a simple write list by using WRITE statement.
    Coding got processed, but it had no effect, no write list was generated, or at least not shown on my screen.
    So i tried to code a "LEAVE TO LIST PROCESSING" right before my first WRITE statement.
    Well, now it works my write list is on Screen. But here start the Problem. Like i got told in the ducomentation of the LEAVE TO LIST PROCESSING statement the WRITE list gets processed with the actual active PF status from the dynpro where i came from.
    1. This is quite uncool, since i do not need those Buttons in my List.
    2. Even if it was ok, those buttons are not working. Typing /h in OK_CODE field and pressing ENTER doesnt help it. When after that i click a button, nothing happens, such as if i didnt click them.
    I searched the forum, but i got drowned in thousands of "interactive list" threads and wasnt able to find my required info in an acceptable time of 30 minutes.
    Did i do a essential error? Someone got an Idea where i´m stuck or a proposal on how to improve?
    Any Help or tip will be welcome and rewared accordingly.
    regards

    Hi Florian,
    Try if you can display the list in ALV where you can maintain the pf-status.
    You can check the demo program  DEMO_LEAVE_TO_LIST_PROCESSING. In this, it is setting set pf-status to space.
    Hope it helps.
    Sujay

  • Leave to List processing is not working

    Hi all,
    I am displaying data in separate window using Window stratin at '' ''                                                                               
    ending at '' ''.
    in screen  PBO.
      SUPPRESS DIALOG.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
      PERFORM output.
    everything is working fine.but its not showing the whole output .
    even if i scroll .
    what am i did wrong...?

    Hi,
    Its my bad, i am using
      CALL SCREEN 1000  STARTING AT 01 01
                       ENDING   AT 150 50.
    MODULE status_1000 OUTPUT.
      PERFORM include_exclude_function USING sy-dynnr.
      SET PF-STATUS 'AAA' EXCLUDING fcodes.
      SET TITLEBAR '1000'.
      SUPPRESS DIALOG.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
      PERFORM output.
    ENDMODULE.                 " STATUS_8000  OUTPUT

  • Leave to list-processing doesn't work

    Hi 2 all!
    I have a problem with LEAVE TO LIST-PROCESSING. I have developed a module pool (type M) and screen with the screen painter of type Normal. Now I want to go to the report from my screen with LEAVE TO LIST-PROCESSING, but it doesn't work. I am trying to do this when the button is pressed ( at my application status). The operation is performed but then the Init_screen_xxxx module is called again. Highly appreciate your help.

    Hi Nata
    Yes U can do it.
    We go from module pool program to report program and vice-versa.
    1.  From report to screen (transaction)
           Call transaction
          Leave to list-processing and return to screen
    2.  From screen to list (report)
             we can write a report program for fuction key available in the screen.
              for example.
        case sy-ucomm.
          when 'fctcode'.
           select .......... from tabl   into ..
        write:/.........,
    endcase.
    reward if useful.

  • Short Dump During List processing

    Hi ,
    Problem Desc:
        A program when it runs in production has huge number of data to be displayed in the list .While doing the write statement the internal table(system assigned internal table for list processing '%_LIST') exceeds the memory limit and goes for dump.
    Please suggest for the following for finding a better solution, I am in 4.7 only
    1.Once the program reaches a maximum memory limit I have to clear the list from memory
    - so how to send the processed list to other persistent area like spool etc
    - How to clear the internal list memory allocation ( Any c functions , Class is available for it )
    - How to catch the memory used for the list process programmatically (for Internal table %_LIST)
    Thanks in advance
    Best regards,
    Raj

    Hi Raj,
    Why don't you go for prevention rather than cure?
    When the user selects the data ranges for the report, you could do a calculation to determine the size of the report and then ask them to restrict the criteria.  They could then run several reports rather than trying to do it all in one.
    I would guess that if you are running out of memory that the report must be HUGE.  Who is going to look at something that large?
    You could also increase the memory allocation to each work process (although this is a bit of a sledgehammer to crack a nut).
    As for your quesions:
    1. I'm not sure you can persist the spool yourself, and certainly not from within your program.  You could, however, spin off jobs from the main program which each had a portion of the overall data to process and thus each would generate a smaller spool (although collectively they would be the same size).
    2. As I don't think you can achieve 1, I don't think there is any point to 2.
    3. There was a thread discussing internal table memory consumption just today, with approaches for 6.20+ and 4.6-.  Heres the link: How to catch the Internal Table memory
    Cheers,
    Brad

  • How to display list process, when i run sql*loader in c#

    Hello,
    How to display list process, when i run sql*loader in c#. I mean when i run sql*loader from cmd windows, i get list process how many row has been inserted. But when i run SQL*Loader from C#, i can't get process SQL*Loader.
    This is my code:
    string strCmd, strSQLLoader;
    string strLoaderFile = "XLLOAD.CTL";
    string strLogFile = "XLLOAD_LOG.LOG";
    string strCSVPath = @"E:\APT\WorkingFolder\WorkingFolder\sqlloader\sqlloader\bin\Debug\8testskrip_HTTP.csv";
    string options = "OPTIONS (SKIP=1, DIRECT=TRUE, ROWS=1000000,BINDSIZE=512000)";
    string append = "APPEND INTO TABLE XL_XDR FIELDS TERMINATED BY ','";
    string table = "OPTIONALLY ENCLOSED BY '\"' TRAILING NULLCOLS (xdr_id,xdr_type,session_start_time,session_end_time,session_last_update_time,session_flag,version,connection_row_count,error_code,method,host_len,host,url_len,url,connection_start_time,connection_last_update_time,connection_flag,connection_id,total_event_count,tunnel_pair_id,responsiveness_type,client_port,payload_type,virtual_type,vid_client,vid_server,client_addr,server_addr,client_tunnel_addr,server_tunnel_addr,error_code_2,ipid,c2s_pkts,c2s_octets,s2c_pkts,s2c_octets,num_succ_trans,connect_time,total_resp,timeouts,retries,rai,tcp_syns,tcp_syn_acks,tcp_syn_resets,tcp_syn_fins,event_type,flags,time_stamp,event_id,event_code)";
    strCmd = "sqlldr xl/secreat@o11g control=" + strLoaderFile + " LOG=" + strLogFile;
    System.IO.DirectoryInfo di;
    try
    System.Diagnostics.ProcessStartInfo cmdProcessInfo = new System.Diagnostics.ProcessStartInfo("cmd.exe");
    di = new DirectoryInfo(strCSVPath);
    strSQLLoader = "";
    strSQLLoader += "LOAD DATA INFILE '" + strCSVPath.ToString().Trim() + "' " + append + " " + table;
    StreamWriter writer = new StreamWriter(strLoaderFile);
    writer.WriteLine(strSQLLoader);
    writer.Flush();
    writer.Close();
    // Redirect both streams so we can write/read them.
    cmdProcessInfo.RedirectStandardInput = true;
    cmdProcessInfo.RedirectStandardOutput = true;
    cmdProcessInfo.UseShellExecute = false;
    cmdProcessInfo.LoadUserProfile = true;
    //System.Diagnostics.Process.Start("CMD.exe", strCmdLine);
    // Start the procses.
    System.Diagnostics.Process pro = System.Diagnostics.Process.Start(cmdProcessInfo);
    // Issue the dir command.
    pro.StandardInput.WriteLine(strCmd);
    // Exit the application.
    pro.StandardInput.WriteLine("exit");
    //Process[] processlist = Process.GetProcesses();
    //foreach(Process pro in processlist){
    Console.WriteLine("Process: {0} ID: {1}", pro.ProcessName, pro.Id);
    Console.WriteLine(pro.StandardOutput.ReadLine());
    // Read all the output generated from it.
    string strOutput;
    strOutput = pro.StandardOutput.ReadToEnd();
    pro.Dispose();
    catch (Exception ex)
    return;
    finally
    Thanks.

    friend
    sqlldr is an application residing in the OS. procedure runs in the dbms engine.
    you cannot run an os command directly from a procedure or a function or a package .
    If you want to do so you need to use either a daemon process created by a PRO*C program
    or a JAVA stored procedure to do so.
    just refer to previous question forums, you can find the solution. Somebody has already given a solution using
    java to run an OS command . check it out
    prakash
    [email protected]

Maybe you are looking for

  • FaceTime reports Network failure while logging! help appreciated

    I upgraded my intel Imac software to Os X 10.7.2. While logging on to  FaceTime - reports "error in network connection. check with your sevice provider" and my net connection drops very frequently since the upgrade from snow leopard. On my Ipad I can

  • Itunes isnt working

    hello. I run windows XP, and the wierdest thing is happening. iTunes wont load. I get the error in this picture http://img401.imageshack.us/img401/8646/itunesbrokenyg9.png Please help. If restarting wont do anything, this stinks. Also, my iPod is set

  • Wont Share Photos with Iphone or online service

    It gives me a message when I click up share online or export mobile device that I havent installed PPE8. Which is wrong. I have installed, registered etc. What gives? Is there a workaround? Why wont Oragnizer recognize I have a legit, store bought co

  • Receive oracle errors 12560 and/or 12545 under windows xp ...

    last monday, 9.10.06, some changes inside the active directory where done by our AD/admin. since then the logon fails to one spec. application, called tocom, written in sql/windows of co. gupta, only from windows xp clients. windows2k clients still c

  • OIM 11gR2-BI publisher installation

    Hi I want to install BI Publisher in the same host where OIM installed . As BI Publisher comes with weblogic, it corrupts the existing weblogic. Please suggest a way to achieve that. any doc will be helpful.