Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I import a database with mysql from terminal ?

I cannot find the exact syntax

share|improve this question

4 Answers

up vote 17 down vote accepted

Assuming you're on a Linux or Windows console:

mysql -u username -p password databasename < filename.sql

See also:

4.5.1.5. Executing SQL Statements from a Text File

share|improve this answer
9  
+1 except for you shouldn't pass your password as CLI parameter. Rather just specify -p option and enter it manually after prompt. – St.Woland Dec 28 '10 at 14:37
@St fair point. – Pekka 웃 Dec 28 '10 at 14:45

From Terminal:

mysql -uroot -p --default-character-set=utf8 </database_path/database.sql
share|improve this answer

mysql -u <username> -p <database name> < <dump file path>

-u - for username

-p - to prompt the password

else you can pass password preceded by -p but for the security reasons it is not suggestible

share|improve this answer

Preferable way for windows:

  1. Login to your MYSQL console.

  2. use <name_of_your_database>;

  3. source <path_of_your_.sql_file>;

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.