1. 程式人生 > >在pl/sql中呼叫shell命令

在pl/sql中呼叫shell命令

本來想是一個很簡單的操作,可惜Oracle沒有提供簡單的一個命令(也許我不知道吧),只好進行一些複雜點的操作了。一般有三種方式實現:1. 利用DBMS_PIPE包並建立OS上執行的守護程序;2. 利用java的getRuntime().exec;3. 使用oracle的EXECUTABLE jobs功能。

利用DBMS_PIPE包並建立OS上執行的守護程序

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

利用java的getRuntime().exec

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

1)寫個簡單的java程式 ExecuteCmd.java

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();

        }
    }
}

2)編譯生成 ExecuteCmd.class

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');