Bonjour

Je n'arrive pas a configurer la planification d'un job que j'aimerai faire tourner toutes les 10 minutes
voici mon code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 
 
DECLARE
  2  jobno number
  3  ;
  4  begin
  5  dbms_job.isubmit('12345', 'statspack.snap;', sysdate + 10/1440, 'sysdate + 10/1440/24');
  6  commit ;
  7  end ;
  8  /
DECLARE
*
ERROR at line 1:
ORA-23319: parameter value " sysdate + 10/144xx sdate + 10/1440" is not
appropriate
ORA-06512: at "SYS.DBMS_JOB", line 57
ORA-06512: at "SYS.DBMS_JOB", line 129
ORA-06512: at "SYS.DBMS_JOB", line 96
ORA-06512: at line 5
Merci de votre aide