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

I have a 56mb file on my web server, and I would like to (I think) use INFILE to load a filename.SQL file into mysql.

I don't really want to upload it because that will just take too long, but I would like to just use the local file on the system to import into mysql. The file contains the table creation instructions already so I don't need to specify the target, just execute the SQL as is in the file.

share|improve this question
Do you have access to a shell on the server? You need to use the mysql client program to import a sql file. – Cfreak Jul 8 '11 at 19:15
Yes, I do have shell access. – Barry Chapman Jul 8 '11 at 19:16
mysql (connection options) < file.sql – Michael Mior Jul 8 '11 at 19:17

3 Answers

up vote 1 down vote accepted

The easiest way is to pass it in as a stream from the command prompt. SOmething like this. ($ is your prompt):

$ mysql -u theuser -p thedatabase < filename.SQL

share|improve this answer

See the documentation.

share|improve this answer
+1 For "See the documentation" – Tocco Jul 8 '11 at 19:19
2  
While external links can be useful, it's a great idea to summarize within your answer itself. SO has some great collaboration features that are wasted if all of the answers are just links to outside content. And l links can get stale, while relevant content has a long shelf life. – GargantuChet Jul 9 '11 at 16:58

login to mysql command line environment and do:

mysql> source file_name.sql

share|improve this answer

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.