bonjour, je voudrais lancer 2 procédures à la fois en paralléle sous unix , ais ça ne marcge pas , ça me fait [1] + Done $commande1&$commande2 , c quoi le probléme :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
### ----- Lancement de la purge ----- 
commande1="sqlplus -S $ORA_USER/$ORA_PWD <<EOF
exec RBVQAPURGE.PURGE_LOT2('1');
EOF"
commande2="sqlplus -S $ORA_USER/$ORA_PWD <<EOF
exec RBVQAPURGE.PURGE_LOT3('1');
EOF"
 
execute_
commande='$commande1&$commande2' ;