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
Filed under: Performance Management | Tagged: script | Leave a Comment »