Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to run a simple test in mysql workbench.

I want to run 3 queries 1000 times in a loop, and I want to test this in 2 different configurations to see how they perform against each other.

Can I just run this test from mysql workbench? I'm getting syntax errors and assuming I can't use things like while loops directly within workbench.

share|improve this question
1  
You need to create a stored procedure, and then execute it. You can't directly run queries with loops. – Jan S Feb 15 '12 at 11:49

2 Answers

up vote 1 down vote accepted

Presuming you're running insert queries, you could do something like this:

Create your procedure:

create procedure load_user_test_data()
begin
declare v_max int default 1000;
declare v_counter int default 0;
  truncate table users;
  start transaction;
  while v_counter < v_max do
    # random query
    insert into users (username) values (CONCAT("user", floor(0 + (rand() * 65535))));
    set v_counter = v_counter + 1;
  end while;
  commit;
end

Call the procedure call load_user_test_data

Hopefully this should get you going in the right direction.

share|improve this answer

Have a look at MySQL's

Benchmarks

function. Hope it will help you.

http://dev.mysql.com/doc/refman/5.5/en/information-functions.html

share|improve this answer
The BENCHMARK function only works on expressions not entire queries. – Code Commander Oct 6 '12 at 16:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.