Scripts to simulate connections to oracle

UNIX, test.ksh
————————

#!/bin/ksh
i=0
while [ $i -lt 200 ]
do
i=`expr $i + 1`
sqlplus -S test/test@service @test.sql &
done
Windows, test.bat
————————
for /L %%G in (1,1,200) do start /b sqlplus username/password@service @test.sql