我有一个.sql文件,其中包含phpMyAdmin的导出。我想使用命令行将其导入到其他服务器。
我安装了Windows Server 2008 R2。我将.sql文件放在C驱动器上,并尝试了以下命令
database_name < file.sql
它不起作用。我遇到语法错误。
我如何才能毫无问题地导入此文件?我需要先创建数据库吗?
我有一个.sql文件,其中包含phpMyAdmin的导出。我想使用命令行将其导入到其他服务器。
我安装了Windows Server 2008 R2。我将.sql文件放在C驱动器上,并尝试了以下命令
database_name < file.sql
它不起作用。我遇到语法错误。
我如何才能毫无问题地导入此文件?我需要先创建数据库吗?
当前回答
类似于vladkras对如何在MySQL中使用命令行导入SQL文件的回答?。
我的主要区别:
数据库必须首先存在-p和密码之间没有空格
shell> mysql -u root -ppassword #note: no space between -p and password
mysql> CREATE DATABASE databasename;
mysql> using databasename;
mysql> source /path/to/backup.sql
我在MariaDB上运行Fedora 26。
其他回答
作为参考,我只使用了默认的root+,没有密码。它不适用于所有以前的答案。
我创建了一个具有所有权限和密码的新用户。它奏效了。-没有空格的ppassword。
Use:
mysql -u root -p password -D database_name << import.sql
有关详细信息,请使用MySQL帮助-MySQL-help。
我认为在我们的背景下,这些将是有用的选择:
[~]$ mysql --help
mysql Ver 14.14 Distrib 5.7.20, for osx10.12 (x86_64) using EditLine wrapper
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Usage: mysql [OPTIONS] [database]
-?, --help Display this help and exit.
-I, --help Synonym for -?
--bind-address=name IP address to bind to.
-D, --database=name Database to use.
--delimiter=name Delimiter to be used.
--default-character-set=name Set the default character set.
-f, --force Continue even if we get an SQL error.
-p, --password[=name] Password to use when connecting to server.
-h, --host=name Connect to host.
-P, --port=# Port number to use for connection or 0 for default to, in order of preference, my.cnf, $MYSQL_TCP_PORT, /etc/services, built-in default (3306).
--protocol=name The protocol to use for connection (tcp, socket, pipe,
-s, --silent Be more silent. Print results with a tab as separator, each row on new line.
-v, --verbose Write more. (-v -v -v gives the table output format).
-V, --version Output version information and exit.
-w, --wait Wait and retry if connection is down.
如果我们正在导入一个大型数据库,而没有进度条,那有什么好玩的呢。使用管道查看器并查看通过管道传输的数据
对于Mac,brew install pv
对于Debian/Uuntu,apt-get-install-pv。
有关其他信息,请参阅pv-管道查看器
pv import.sql | mysql -u root -p password -D database_name
1.45GiB 1:50:07 [339.0KiB/s] [=============> ] 14% ETA 11:09:36
1.46GiB 1:50:14 [ 246KiB/s] [=============> ] 14% ETA 11:09:15
1.47GiB 1:53:00 [ 385KiB/s] [=============> ] 14% ETA 11:05:36
如果您已经拥有数据库,请使用以下命令导入转储或sql文件:
mysql -u username -p database_name < file.sql
如果不需要在MySQL中创建相关的数据库(空),那么第一次登录MySQL控制台时,可以在终端或cmd中运行以下命令
mysql -u userName -p;
并在提示时提供密码。
接下来,创建一个数据库并使用它:
mysql>create database yourDatabaseName;
mysql>use yourDatabaseName;
然后将sql或转储文件从导入数据库
mysql> source pathToYourSQLFile;
注意:如果您的终端不在转储文件或sql文件所在的位置,请使用上面的相对路径。
如果您在Mac OS X上使用MAMP,这可能会有所帮助:
/applications/MAMP/library/bin/mysql -u MYSQL_USER -p DATABASE_NAME < path/to/database_sql/FILE.sql
MYSQL_USER默认为root。
对于Windows操作系统,可以使用以下命令从SQL转储导入数据。
C: \Program Files\MySQL\MySQL Server 5.7\bin>MySQL-u<>-p<>DBName<filelocation\query.sql
其中-u是用户名,-p是MySQL密码。然后输入密码并等待数据导入。