내가 오라클 데이터베이스 11g Express Edition을 출시 11.2.0.2.0에서 우선 순위가 가장 높은 작업 만들려 DBMS_SCHEDULER 채용 정보에 JOB_PRIORITY을 정의 - 64 비트 생산오라클 :
BEGIN
DBMS_SCHEDULER.CREATE_JOB (
job_name => 'parseMsg',
job_type => 'PLSQL_BLOCK',
job_action => 'begin S_IN_TDK.parseMsg; end;',
repeat_interval => 'FREQ=SECONDLY;INTERVAL=1',
enabled => true,
job_priority => 1,
comments => 'Job that polls device n2 every 1 seconds');
END;
을하지만이 오류가 발생했습니다 :
를Informe de error -
ORA-06550: line 2, column 3:
PLS-00306: wrong number or types of arguments in call to 'CREATE_JOB'
ORA-06550: line 2, column 3:
PL/SQL: Statement ignored
06550. 00000 - "line %s, column %s:\n%s"
*Cause: Usually a PL/SQL compilation error.
*Action: