parallel processing

Hi

I want to run two shell script files parallely. These two scripts are interacting with the database. can any body help on this Pls

Regards
Audippa naidu.M

try this:

nohup script1.ksh &
nohup script2.ksh &

Have a controller script with the number of instances configured in that,

make the controller script work as,
which instructs and initiates the slave script to work for it
receive the status of the slave script through the log files dumped by the slave script
accordingly take action whether to initiate a new process or not

Using "nohup" is an option.