Re: Have JMeter Prepare SQL ONLY once and Execute Multiple times

2021-07-29 Thread Scott Dean
Greetings! Not sure that this is a relevant approach but: - Could the Prepare the SQL statement be run in a StartupThreadGroup that runs 1 thread 1 time and the rest of the steps be in a separate regular ThreadGroup that iterates over the different variations? - Similarly, set up two

Re: Have JMeter Prepare SQL ONLY once and Execute Multiple times

2021-07-29 Thread Tong Sun
Hmm... - can the Prepared the SQL statement be saved once and used later? If not, - can the Prepared the SQL statement be saved once and used later outside JMeter? On Thu, Jul 29, 2021 at 11:38 AM Jeff Lutzow wrote: > Cannot seem to get JMeter to NOT prepare the statement every time. > > > >

RE: Have JMeter Prepare SQL ONLY once and Execute Multiple times

2021-07-29 Thread Jeff Lutzow
Cannot seem to get JMeter to NOT prepare the statement every time. I am trying to replicate an application server that might have queries that would be prepared one time and then run multiple times with different input variables. I would think that would be something JMeter supported and not