Salut,
En 9i, je cherche a lancer un job mais en arrière plan pour me permettre de continuer mon execution
j'ai trouvé ça
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 BACKGROUND_PROCESS Indicates whether execution is a background process or foreground process. For internal use only. dbms_job.background_process RETURN BOOLEAN set serveroutput on DECLARE b BOOLEAN; BEGIN IF dbms_job.background_process THEN dbms_output.put_line('TRUE'); ELSE dbms_output.put_line('FALSE'); END IF;
Partager