MySQL数据库导入导出数据之报错的解决办法
2022-11-12 09:16:34
内容摘要
这篇文章主要为大家详细介绍了MySQL数据库导入导出数据之报错的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随512笔记的小玲来看看吧!
导出数
文章正文
这篇文章主要为大家详细介绍了MySQL数据库导入导出数据之报错的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随数据库教程的小编来看看吧!
导出数据
报错
代码如下:
SHOW VARIABLES LIKE "secure_file_priv";
查看默认导出目录
MySQL数据库导入导出数据之报错解答实例讲解
代码如下:
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
MySQL数据库导入导出数据之报错解答实例讲解
解决方法
代码如下:
SELECT * FROM student INTO OUTFILE "G:/ProgramData/MySQL/MySQL Server 8.0/Uploads/student.txt";
Query OK, 2 rows affected (0.02 sec)
MySQL数据库导入导出数据之报错解答实例讲解
数据展示
导入数据
报错
代码如下:
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数据库导入导出数据之报错解答实例讲解
解决方法
代码如下:
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数据库导入导出数据之报错解答实例讲解
报错
代码如下:
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.
MySQL数据库导入导出数据之报错解答实例讲解
解决方法
代码如下:
C:\Users>mysql -uroot -p --local-infile
使用这种方法登录
MySQL数据库导入导出数据之报错解答实例讲解
报错
代码如下:
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数据库导入导出数据之报错解答实例讲解
解决方法
代码如下:
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数据库导入导出数据之报错解答实例讲解
结果展示
代码如下:
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)
MySQL数据库导入导出数据之报错解答实例讲解
到此这篇关于MySQL数据库导入导出数据之报错解答实例讲解的文章就介绍到这了,更多相关MySQL数据库导入导出数据之报错解答内容请搜索512笔记以前的文章或继续浏览下面的相关文章希望大家以后多多支持512笔记!
注:关于MySQL数据库导入导出数据之报错的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释