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.

Try this :

fun1() {
sqlplus -s ${connectString} <<! 
set serveroutput on

begin 
$procedureName;
end; 
/
!

         }
fun2() {
sqlplus -s ${connectString} <<! 
set serveroutput on

begin 
$procedureName;
end; 
/
!
         }

fun1 &
fun2 &