导出数据
报错
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)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?