MySQL数据库导入导出数据(报错解答)

本文详细介绍了在MySQL数据库中遇到的数据导入导出问题及其解决方案。在导出数据时,由于--secure-file-priv选项导致的错误通过修改路径格式得以解决;而在导入数据时,首先检查并开启local_infile选项,但因文件路径问题和权限限制又遇到了阻碍,最终通过特定方式登录和修正文件路径成功导入数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

MySQL数据库导入导出数据

导出数据

报错

SHOW VARIABLES LIKE "secure_file_priv";
查看默认导出目录
mysql> SELECT * FROM  student  INTO   OUTFILE   "G:\ProgramData\MySQL\MySQL Server 8.0\Uploads\student.txt";
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

解决方法

SELECT * FROM  student  INTO   OUTFILE   "G:/ProgramData/MySQL/MySQL Server 8.0/Uploads/student.txt";
Query OK, 2 rows affected (0.02 sec)

数据展示
导出结果

导入数据

报错

mysql> load data local infile 'G:/ProgramData/MySQL/MySQL Server 8.0/Uploads/student.txt'
    -> into table student(a,b,c);
ERROR 3948 (42000): Loading local data is disabled; this must be enabled on both the client and server sides

解决方法

mysql> SHOW GLOBAL VARIABLES LIKE 'local_infile';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| local_infile  | OFF   |
+---------------+-------+
1 row in set, 1 warning (0.01 sec)

mysql> SET GLOBAL local_infile = true;
Query OK, 0 rows affected (0.00 sec)

mysql> SHOW GLOBAL VARIABLES LIKE 'local_infile';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| local_infile  | ON    |
+---------------+-------+
1 row in set, 1 warning (0.01 sec)

报错

mysql> load data local infile 'G:\ProgramData\MySQL\MySQL Server 8.0\Uploads\student.txt'
    -> into table student(id,name,score);
ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.

解决方法

C:\Users>mysql -uroot -p --local-infile
使用这种方法登录

报错

mysql> load data local infile 'G:\ProgramData\MySQL\MySQL Server 8.0\Uploads\student.txt'
    -> into table student(id,name,score);
ERROR 2 (HY000): File 'G:ProgramDataMySQLMySQL Server 8.0Uploadsstudent.txt' not found (OS errno 2 - No such file or directory)

解决方法

mysql> load data local infile 'G://ProgramData/MySQL/MySQL Server 8.0/Uploads/student.txt'
    -> into table student(id,name,score);
Query OK, 8 rows affected, 2 warnings (0.01 sec)
Records: 10  Deleted: 0  Skipped: 2  Warnings: 2

结果展示

mysql> select *from student;
+------+------+-------+
| id   | name | score |
+------+------+-------+
|    1 | zs   | 100.0 |
|    2 | zlh  | 100.0 |
|    3 | cyx  |  99.1 |
|    4 | xjj  |  90.0 |
|    5 | aa   | 100.0 |
|    6 | alk  |  20.1 |
|    7 | zml  |  11.1 |
|    8 | djh  |  98.0 |
|    9 | cc   | 100.0 |
|   10 | pp   |  20.0 |
+------+------+-------+
10 rows in set (0.00 sec)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

nightelves11

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值