zoukankan      html  css  js  c++  java
  • 053450

    Which of the following are valid program types for a lightweight job? (Choose all that apply.)
    A. PLSQL_BLOCK
    B. EXECUTABLE
    C. JAVA_STORED_PROCEDURE
    D. STORED_PROCEDURE
    E. EXTERNAL

      PLSQL_BLOCK and STORED_PROCEDURE are the only valid program types that can be used with a lightweight job.
    Programs
    A program object (program) describes what is to be run by the Scheduler. A program
    includes:
    An action: For example, the name of a stored procedure, the name of an executable found
    in the operating system file system (an "external executable"), or the text of a PL/SQL
    anonymous block.
    A type: STORED_PROCEDURE, PLSQL_BLOCK, or EXTERNAL, where EXTERNAL indicates an
    external executable.
    Number of arguments: The number of arguments that the stored procedure or external
    executable accepts.
    A program is a separate entity from a job. A job runs at a certain time or because a certain
    event occurred, and invokes a certain program. You can create jobs that point to existing
    program objects, which means that different jobs can use the same program and run the
    program at different times and with different settings. With the right privileges, different
    users can use the same program without having to redefine it. Therefore, you can create
    program libraries, where users can select from a list of existing programs.
    If a stored procedure or external executable referenced by the program accepts
    arguments, you define these arguments in a separate step after creating the program. You
    can optionally define a default value for each argument.

  • 相关阅读:
    Python GUI编程(Tkinter)——Label and Button
    第一章——正则表达式(特殊符号和字符)
    最近用到的Blender相关技术总结
    第一章—正则表达式(简介/动机)
    发个随笔纪念Manim配置成功
    JUC并发工具的使用和原理
    线程启动与终止原理
    cpu缓存一致性
    布隆过滤器
    对象并不一定都是在堆上分配内存(逃逸分析)
  • 原文地址:https://www.cnblogs.com/Babylon/p/7833543.html
Copyright © 2011-2022 走看看