Oracle 视图 ALL_SCHEDULER_JOB_ARGS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_SCHEDULER_JOB_ARGS是Oracle中SCHEDULER组件中常用的视图,在SCHEDULER子系统中,用户可以使用它管理job scheduler中创建的job args。
Job args是一组名称/值对,也称为参数或参数集,它可以通过程序或调度程序使用,并用于发出程序或调度程序的调用。
ALL_SCHEDULER_JOB_ARGS表用于存储用户定义的参数,以及SCHEDULER系统内置的参数。使用里可以用来创建、更新和删除job args,以及查看已经存在的job args的详细信息。
例如,要查询特定job参数的完整记录,可以使用如下语句:
SELECT * FROM all_scheduler_job_args WHERE job_name=’MYJOB’;
此语句将返回特定job名称下所有定义的参数和值。
因此,ALL_SCHEDULER_JOB_ARGS视图可以用于查看和管理job args,以满足业务要求,进而对相应应用程序的执行作出及时的调整。
官方英文解释
ALL_SCHEDULER_JOB_ARGS
displays information about the arguments of the Scheduler jobs accessible to the current user.
Related Views
-
DBA_SCHEDULER_JOB_ARGS
displays information about the arguments of all Scheduler jobs in the database. -
USER_SCHEDULER_JOB_ARGS
displays information about the arguments of the Scheduler jobs owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the job to which the argument belongs |
|
|
|
Name of the job to which the argument belongs |
|
|
|
Optional name of the argument |
|
|
|
Position of the argument in the argument list |
|
|
|
Data type of the argument |
|
|
|
Value of the argument (in string format) if the argument is a string |
|
|
|
Value of the argument (in AnyData format) |
|
|
|
Reserved for future use |
See Also:
-
“DBA_SCHEDULER_JOB_ARGS”
-
“USER_SCHEDULER_JOB_ARGS”