|
nohup usage..
Hi,
I want to run the below 3 sql files parallely..I know adding a "&" at the end
of the command will make it run in background.But each sql file will take
a considerable time to execute so i want to apply "nohup" to this execution.
Help me how to use " nohup " to these...
echo $PASSWD | $ORACLE_HOME/bin/sqlplus -s dls_rep@$2 @$DM_DIR/$2/$1/JOB/dimA.sql &
echo $PASSWD | $ORACLE_HOME/bin/sqlplus -s dls_rep@$2 @$DM_DIR/$2/$1/JOB/dimB.sql &
echo $PASSWD | $ORACLE_HOME/bin/sqlplus -s dls_rep@$2 @$DM_DIR/$2/$1/JOB/dimC.sql &
Thanks.
Last edited by charan81; 05-20-2006 at 11:46 AM.
Reason: To correct sql's
|