最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
MySQL数据库导入导出数据之报错解答代码实例
时间:2022-06-29 08:45:37 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下MySQL数据库导入导出数据之报错解答代码实例,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
导出数据
报错
SHOW VARIABLES LIKE "secure_file_priv"; 查看默认导出目录
mysql> SELECT * FROM student INTO OUTFILE "G:ProgramDataMySQLMySQL Server 8.0Uploadsstudent.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:ProgramDataMySQLMySQL Server 8.0Uploadsstudent.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:ProgramDataMySQLMySQL Server 8.0Uploadsstudent.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)
相关文章
- Binance.US已上线VIRTUAL 04-30
- binance官网电脑下载_binance苹果版下载地址V2.57.7 04-30
- 比特币交易量最大的交易所是哪个?全球最大的比特币交易平台排名 04-30
- 奥比岛梦想国度卡死闪退有哪些解决方法 04-30
- DNF手游骨戒在哪个位置 04-30
- 回望羊驼:当利空成为短暂的财富密码 04-30