如何从 PLSQL 程序调用 shell 脚本

发布于 2024-09-29 22:46:05 字数 37 浏览 4 评论 0原文

您能告诉我如何从 PLSQL 程序调用 shell 脚本吗?

Could you please let me know how to call a shell script from PLSQL program?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

薄荷→糖丶微凉 2024-10-06 22:46:05

您有几个可用选项:

  1. 从 PL/SQL 包装器内调用 Java 方法。
  2. 从 PL/SQL 中调用 C 程序作为外部过程。
  3. 使用新的 DBMS_SCHEDULER 包。

这里有一个包含有关它们的信息的链接。

You have a couple of options available:

  1. Invoke a Java method from within a PL/SQL wrapper.
  2. Call a C program as an external procedure from within PL/SQL.
  3. Use the new DBMS_SCHEDULER package.

Here's a link with INFO on them.

他夏了夏天 2024-10-06 22:46:05

第四种方式(在 Pablo 的顶部) dbms_pipe


http:// Asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:16212348050

在Oracle7.0及以上版本中,我们可以使用
dbms_pipes 与正在运行的守护进程对话
数据库之外。这是一个
使用 sqlplus 的简单示例
守护进程:

create or replace procedure host( cmd in varchar2 )
as
    status number;
begin
    dbms_pipe.pack_message( cmd );
    status := dbms_pipe.send_message( 'HOST_PIPE' );
    if ( status <> 0 ) then raise_application_error( -20001, 'Pipe error' );
    end if;
end;
/

And a forth way (on top of Pablo's) dbms_pipe


http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:16212348050

In Oracle7.0 and up, we can use
dbms_pipes to talk to a daemon running
outside the database. Here is a
simple example that uses sqlplus to be
the daemon:

create or replace procedure host( cmd in varchar2 )
as
    status number;
begin
    dbms_pipe.pack_message( cmd );
    status := dbms_pipe.send_message( 'HOST_PIPE' );
    if ( status <> 0 ) then raise_application_error( -20001, 'Pipe error' );
    end if;
end;
/
懒的傷心 2024-10-06 22:46:05

使用 DBMS_SCHEDULER 从 PL/SQL 调用 shell 脚本:
请找到下面的链接
http://www.dba-oracle.com/t_execute_shell_script_plsql_procedure.htm

Invoking a shell script from PL/SQL using DBMS_SCHEDULER:
Please find the link below
http://www.dba-oracle.com/t_execute_shell_script_plsql_procedure.htm

冬天的雪花 2024-10-06 22:46:05

上面未列出,但仍然适用:来自 PL/SQL 的 C 代码直接库 来自询问汤姆。显然,这将是调用 Shell 脚本的 C 包装器的执行。

Not listed above, but still applicable: C Code direct library from PL/SQL from Ask Tom. Obviously it would be an execution of a C Wrapper to call out to the Shell script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文