Try:
Note-1: It is better to use the full path of the SQL file
Note-2: Use
mysql -u username -p database_name < file.sql
Check MySQL Options.Note-1: It is better to use the full path of the SQL file
file.sql
.Note-2: Use
-R
and --triggers
to keep the routines and triggers of original database. They are not copied by default.
---------
A common use of mysqldump is for making a backup of an entire database:
UNIX
shell> mysqldump db_name > backup-file.sql
You can load the dump file back into the server like this:UNIX
shell> mysql db_name < backup-file.sql
The same in Windows command prompt:mysql -p -u [user] [database] < backup-file.sql
PowerShellC:\> cmd.exe /c "mysql -u root -p db_name < backup-file.sql"
MySQL command linemysql> use db_name;
mysql> source backup-file.sql;
----------
mysql> use db_name;
mysql> SET autocommit=0 ; source the_sql_file.sql ; COMMIT ;
No comments:
Post a Comment