在pl/sql中調用shell命令

來源:互聯網
上載者:User

利用DBMS_PIPE包並建立OS上啟動並執行守護進程

    覺得這種方式複雜,還要用到pro*c,沒試。這裡有個例子。

利用java的getRuntime().exec

    這種好點,java用的還是蠻多的。

1)寫個簡單的java程式 ExecuteCmd.java2)編譯產生 ExecuteCmd.class

import java.lang.Runtime;
import java.lang.Process;
import java.io.IOException;
import java.lang.InterruptedException;

class ExecuteCmd ...{

    public static void main(String args[]) ...{

        System.out.println("Start executing");

        try ...{

            /**//* Execute the command using the Runtime object and get the
            Process which controls this command */
            Process p = Runtime.getRuntime().exec(args[0]);

            /**//* Use the following code to wait for the process to finish
            and check the return code from the process */
            try ...{

                p.waitFor();

            /**//* Handle exceptions for waitFor() */
            } catch (InterruptedException intexc) ...{
            System.out.println("Interrupted Exception on waitFor: " + intexc.getMessage());
            }

        System.out.println("Return code from process: "+ p.exitValue());
        System.out.println("Done executing");

        /**//* Handle the exceptions for exec() */
        } catch (IOException e) ...{

            System.out.println("IO Exception from exec: " + e.getMessage());
            e.printStackTrace();

        }
    }
}

 

javac ExecuteCmd.java

3)載入到oracle中

$ loadjava -user system/manager ExecuteCmd.class

4)產生java預存程序

CREATE OR REPLACE PROCEDURE executecmd (S1 VARCHAR2)
    AS LANGUAGE JAVA
    name 'ExecuteCmd.main(java.lang.String[])';
/

 

測試:

SQL> set serveroutput on 
SQL> call dbms_java.set_output(2000); 
SQL> EXEC executecmd('/bin/touch /home/oracle/a.txt'); 
Start executing 
Return code from process: 0 
Done executing 
PL/SQL procedure successfully completed. 

SQL> host 
$ ls /home/oracle
a.txt 

    執行成功了,但還是有些問題,比如參數中不能使用環境變數 EXEC executecmd('/bin/touch $HOME/a.txt')執行不行,絕對路徑和相對路徑的問題,還要給執行使用者(這裡是system使用者)授予相應的許可權等等。所以我覺得還是應該先把要做的事寫一個shell可執行指令碼,然後再如上調用,這樣會省去一些麻煩。

使用oracle的EXECUTABLE jobs功能

    對DBMS_SCHEDULER沒什麼研究,論壇上有個例子,但我沒試通,有時間再研究一下,應該也可以。

exec DBMS_SCHEDULER.CREATE_JOB(job_name=>'test13',job_type=>'EXECUTABLE',job_action=>'/tmp/test1.sh');
exec DBMS_SCHEDULER.RUN_JOB(job_name=>'test13');
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.