in reply to Re^2: Parallel running the process
in thread Parallel running the process

Sure. You may want to read about fork. Or threads, if you feel more comfortable. Or the classic solution: a select loop. But I assume you're using the DBI to give you database access, and I don't think the DBI has support to give back control to the program while waiting for the results.

I would probably use fork, but that's because I understand the concept well, and a simple solution seems to be good enough to solve your problem.

Replies are listed 'Best First'.
Re^4: Parallel running the process
by Anonymous Monk on Mar 06, 2012 at 23:36 UTC
    Or, just a batch file / shell script to launch the set of instances in the background.