Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: shell scripting help

RE: shell scripting help

From: <oracle-l-bounce_at_freelists.org>
Date: Thu, 4 Aug 2005 13:21:13 -0700
Message-ID: <B9782AD410794F4687F2B5B4A6FF3501021D47B5@ex1.ms.polyserve.com>

                 Hi Listers,                  

                I have a korn shell script which needs to run 3 sqlplus scripts in parallel then run the final sqlplus script. Is there a way to ensure that sqlplus scripts 1 thru 3 completes before running the final sqlplus script? I am a newbie in shell scripting.                  

   use wait (a shell builtin):

foo1 &
foo2 &
wait
foo3

--
http://www.freelists.org/webpage/oracle-l
Received on Thu Aug 04 2005 - 15:23:17 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US