350

不重复!在命令行导出期间寻找一些功能有 phpmyadmin

我想从命令行从 MySQL 数据库导出和导入 .sql 文件。

是否有任何命令可以在 MySQL 中导出 .sql 文件?那我怎么导入呢?

在进行导出/导入时,可能存在启用/禁用外键检查仅导出表结构等约束

我们可以用 设置这些选项mysqldump

一些选项的例子

在此处输入图像描述

4

8 回答 8

147

输入以下命令导入sql数据文件:

$ mysql -u username -p -h localhost DATA-BASE-NAME < data.sql

在此示例中,使用 vivek 作为用户名将“data.sql”文件导入“博客”数据库:

$ mysql -u vivek -p -h localhost blog < data.sql

如果您有专用的数据库服务器,请将 localhost 主机名替换为实际的服务器名称或 IP 地址,如下所示:

$ mysql -u username -p -h 202.54.1.10 databasename < data.sql

要导出数据库,请使用以下命令:

mysqldump -u username -p databasename > filename.sql

请注意每种情况下的<>符号。

于 2012-07-10T05:56:06.957 回答
38

如果您已经在运行 SQL shell,则可以使用以下source命令导入数据:

use databasename;
source data.sql;
于 2015-01-04T18:05:43.843 回答
29

mysqldump 不会转储数据库事件、触发器和例程,除非在转储单个数据库时明确说明;

mysqldump -uuser -p db_name --events --triggers --routines > db_name.sql
于 2016-03-11T13:32:27.723 回答
26

那么你可以使用下面的命令来导出,

mysqldump --databases --user=root --password your_db_name > export_into_db.sql

并且生成的文件将在您运行此命令的同一目录中可用。

现在使用命令登录mysql,

mysql -u[用户名] -p

然后使用带有文件路径的“source”命令。

于 2015-08-28T11:03:50.647 回答
18

将整个数据库转储到文件中:

mysqldump -u USERNAME -p password DATABASENAME > FILENAME.sql
于 2012-07-10T05:55:07.937 回答
17

尝试

mysqldump databaseExample > file.sql
于 2012-07-10T05:56:07.653 回答
8

因为我没有足够的声誉在最高职位之后发表评论,所以我在这里添加。

使用“|” 在linux平台上以节省磁盘空间。

thx @Hariboo,添加事件/触发器/程序参数

mysqldump -x -u [uname] -p[pass]  -C --databases db_name  --events --triggers --routines | sed -e 's/DEFINER[ ]*=[ ]*[^*]*\*/\*/ '  | awk '{ if (index($0,"GTID_PURGED")) { getline; while (length($0) > 0) { getline; } } else { print $0 } }'  | grep -iv 'set @@' | trickle -u 10240 mysql -u username -p -h localhost DATA-BASE-NAME

一些问题/提示:

错误:......使用 LOCK TABLES 时不存在

# --lock-all-tables,-x , this parameter is to keep data consistency because some transaction may still be working like schedule.
# also you need check and confirm: grant all privileges on *.* to root@"%" identified by "Passwd";

ERROR 2006 (HY000) at line 866: MySQL server has gone away mysqldump: Got errno 32 on write

# set this values big enough on destination mysql server, like: max_allowed_packet=1024*1024*20
# use compress parameter '-C'
# use trickle to limit network bandwidth while write data to destination server

第 32730 行的错误 1419 (HY000):您没有超级权限并且启用了二进制日志记录(您可能希望使用不太安全的 log_bin_trust_function_creators 变量)

# set SET GLOBAL log_bin_trust_function_creators = 1;
# or use super user import data

第 138 行的错误 1227 (42000):访问被拒绝;您需要(至少一个)此操作的 SUPER 权限 mysqldump: Got errno 32 on write

# add sed/awk to avoid some privilege issues

希望这有帮助!

于 2017-09-26T03:38:00.007 回答
2

您可以使用此脚本从此链接给出的终端导出或导入任何数据库: https ://github.com/Ridhwanluthra/mysql_import_export_script/blob/master/mysql_import_export_script.sh

echo -e "Welcome to the import/export database utility\n"
echo -e "the default location of mysqldump file is: /opt/lampp/bin/mysqldump\n"
echo -e "the default location of mysql file is: /opt/lampp/bin/mysql\n"
read -p 'Would like you like to change the default location [y/n]: ' location_change
read -p "Please enter your username: " u_name
read -p 'Would you like to import or export a database: [import/export]: ' action
echo

mysqldump_location=/opt/lampp/bin/mysqldump
mysql_location=/opt/lampp/bin/mysql

if [ "$action" == "export" ]; then
    if [ "$location_change" == "y" ]; then
        read -p 'Give the location of mysqldump that you want to use: ' mysqldump_location
        echo
    else
        echo -e "Using default location of mysqldump\n"
    fi
    read -p 'Give the name of database in which you would like to export: ' db_name
    read -p 'Give the complete path of the .sql file in which you would like to export the database: ' sql_file
    $mysqldump_location -u $u_name -p $db_name > $sql_file
elif [ "$action" == "import" ]; then
    if [ "$location_change" == "y" ]; then
        read -p 'Give the location of mysql that you want to use: ' mysql_location
        echo
    else
        echo -e "Using default location of mysql\n"
    fi
    read -p 'Give the complete path of the .sql file you would like to import: ' sql_file
    read -p 'Give the name of database in which to import this file: ' db_name
    $mysql_location -u $u_name -p $db_name < $sql_file
else
    echo "please select a valid command"
fi
于 2016-10-24T21:20:18.930 回答