run executable program from oracle trigger ( or procedure)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • abuasab
    New Member
    • Nov 2008
    • 2

    run executable program from oracle trigger ( or procedure)

    how can run executable application from oracle trigger or procedure.
  • Pilgrim333
    New Member
    • Oct 2008
    • 127

    #2
    Hi,

    What is it exactly that you are trying to do?

    Pilgrim.

    Comment

    • abuasab
      New Member
      • Nov 2008
      • 2

      #3
      i need to run external program myprogram.exe with passing parameters

      from example ,
      in tirgger of table level , i check some columns if it is statisied my condition , then i need to run my program.exe

      Comment

      • Pilgrim333
        New Member
        • Oct 2008
        • 127

        #4
        Hi,

        Is it ok if you execute it using shell commands? (On a windows machine, executing it by giving the dos commands for it)

        Pilgrim.

        Comment

        • amitpatel66
          Recognized Expert Top Contributor
          • Mar 2007
          • 2358

          #5
          1.Create a shell that calls oracle procedure
          2.In oracle procedure, do your required condition check.
          3.In case if the check satisfies, then call or execute your external program from shell.

          Comment

          Working...