Ability to run several *.sql files at once
3
votes
Anonymous
shared this idea
AdminDevart
(_, Devart)
responded
This can be workarounded by using the MySQL command “SOURCE”. For example, in the new SQL file, you can type the following:
SOURCE .\sqlfile1.sql;
SOURCE .\sqlfile2.sql;
…
SOURCE .\sqlfileN.sql;
Here, instead of the local path .\ you can specify it explicitly as follows:
d:\folder\sqlfile.sql
-
Anonymous commented
I'm running updates for a game server consisting of 20-30 files which need to be imported sequentially. It's takes too long to run the files one by one.