RE: createing test sessions

2003-10-01 Thread Bob Metelsky
How about for /L %i IN (1,1,250) do start /min sqlplus user/[EMAIL PROTECTED] @script.sql Id try it with less than 250 as it can kill the machine opening 250 windows! ;-) to run form a batch file you need to %%i the variable hth bob If on windows, type start /min sqlplus user/[EMAIL

FW: createing test sessions

2003-10-01 Thread Bob Metelsky
Our exchange hiccupped... How about for /L %i IN (1,1,250) do start /min sqlplus user/[EMAIL PROTECTED] @script.sql Id try it with less than 250 as it can kill the machine opening 250 windows! ;-) to run form a batch file you need to %%i the variable hth bob If on windows, type start

createing test sessions

2003-09-25 Thread A.Bahar
I want to run some sql scripts and i need to open 255 session at same time and these session will run somw sql scripts. HOW CAN I OPEN 255 session at the same time ? may be a tool , may be shell script. Help bittee -- Please see the official ORACLE-L FAQ:

Re: createing test sessions

2003-09-25 Thread Tanel Poder
Type.. sqlplus user/[EMAIL PROTECTED] @script.sql output.log ..255 times on your unix command prompt. If on windows, type start /min sqlplus user/[EMAIL PROTECTED] @script.sql ..255 times on your windows command prompt. Tanel. - Original Message - To: Multiple recipients of

Re: createing test sessions

2003-09-25 Thread Jared . Still
: Subject:createing test sessions I want to run some sql scripts and i need to open 255 session at same time and these session will run somw sql scripts. HOW CAN I OPEN 255 session at the same time ? may be a tool , may be shell script. Help bittee -- Please see