The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 01-28-2008
vanathi vanathi is offline
Registered User
  
 

Join Date: Jan 2008
Posts: 6
Need help in shell sripting

Hi,
I need to run the some stored procedures parallel inside a shell script.
Now I am using
sqlplus -s ${connectString} <<!
set serveroutput on

begin
$procedureName;
end;
/
!

this code. How run the procedures in parallel.

Please advice. Thanks in advance.