In a procedure I'd like to prepare a statement using "?" for a file name and then execute it with "using". But I got an error, because Mysql looks for a quotation mark after "into outfile", or so it seems to me. Is it possible to prepare statement once and then execute it in a loop dynamically changing filename?

That is what I want:

drop PROCEDURE myprocedure;

DELIMITER //
CREATE PROCEDURE myprocedure()
BEGIN
  SET @num = 0;
  PREPARE STMT FROM 'select *
    into outfile ?
    from mytable
    limit ?, ?';  
  label1: LOOP
    SET @skip = @num;
    SET @numrows = @skip + 1000;
    IF @skip <= 1000000 THEN
      SET @num = @num + 1000;
      set @FILENAME = concat('/usr/local/tmp/myfilename',@num,'_temp.tmp'); 
      SELECT @FILENAME, @skip, @numrows;
      EXECUTE STMT USING @FILENAME, @skip, @numrows;      
      ITERATE label1;
    END IF;
    LEAVE label1;
  END LOOP label1;
END //
DELIMITER ;       

Calling the procedure I've got:

call myprocedure();
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?
...
link|improve this question
Thank you, @ethrbunny, but that means I should prepare the statement each time with each filename (actually, that is what I'm doing right now). I'd rather prepare it once and use variables while executing it. My tables are really huge (more then 100mln rows) and I hope to speed the complicated select with joins this way. – user1157090 Jan 18 at 22:35
I think the implication from that page is that you can't prepare using a concat'd filename like this. You'll have to break out that section. – ethrbunny Jan 19 at 13:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.