最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

mysql5.7导出数据提示--secure-file-priv选项问题的解决方法

来源:动视网 责编:小采 时间:2020-11-09 08:42:55
文档

mysql5.7导出数据提示--secure-file-priv选项问题的解决方法

mysql5.7导出数据提示--secure-file-priv选项问题的解决方法:mysql可使用 into outfile 参数把表中数据导出到csv,例如可用以下命令把user表的数据导出到user.csvselect * from user into outfile '/tmp/user.csv' fields terminated by ',' optionally e
推荐度:
导读mysql5.7导出数据提示--secure-file-priv选项问题的解决方法:mysql可使用 into outfile 参数把表中数据导出到csv,例如可用以下命令把user表的数据导出到user.csvselect * from user into outfile '/tmp/user.csv' fields terminated by ',' optionally e


mysql可使用 into outfile 参数把表中数据导出到csv,例如可用以下命令把user表的数据导出到user.csv

select * from user into outfile '/tmp/user.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '\r\n

执行后,user表的数据会导出到/tmp/user.csv。
参数说明:

into outfile ‘导出的目录和文件名’
指定导出的目录和文件名

fields terminated by ‘字段间分隔符’
定义字段间的分隔符

optionally enclosed by ‘字段包围符’
定义包围字段的字符(数值型字段无效)

lines terminated by ‘行间分隔符’
定义每行的分隔符
问题分析

以上命令在mysql5.6下运行没有问题,但在mysql5.7下运行则出现了以下错误。

ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

查看官方文档,secure_file_priv参数用于LOAD DATA, SELECT …OUTFILE, LOAD_FILE()传到哪个指定目录。

  • secure_file_priv 为 NULL 时,表示mysqld不允许导入或导出。

  • secure_file_priv 为 /tmp 时,表示mysqld只能在/tmp目录中执行导入导出,其他目录不能执行。

  • secure_file_priv 没有值时,表示不mysqld在任意目录的导入导出。

  • 查看 secure_file_priv 的值,默认为NULL,表示不能导入导出。

    mysql> show global variables like '%secure_file_priv%';
    +------------------+-------+| Variable_name | Value |
    +------------------+-------+| secure_file_priv | NULL |
    +------------------+-------+1 row in set (0.00 sec)

    因为 secure_file_priv 参数是只读参数,不能使用set global命令修改。

    mysql> set global secure_file_priv='';
    ERROR 1238 (HY000): Variable 'secure_file_priv' is a read only variable

    解决方法

    打开my.cnf 或 my.ini,加入以下语句后重启mysql。

    secure_file_priv=''

    查看secure_file_priv修改后的值

    mysql> show global variables like '%secure_file_priv%';
    +------------------+-------+| Variable_name | Value |
    +------------------+-------+| secure_file_priv | |
    +------------------+-------+1 row in set (0.00 sec)

    修改后再次执行,成功导出。

    ';

    执行后,user表的数据会导出到/tmp/user.csv。
    参数说明:

    into outfile ‘导出的目录和文件名’
    指定导出的目录和文件名

    fields terminated by ‘字段间分隔符’
    定义字段间的分隔符

    optionally enclosed by ‘字段包围符’
    定义包围字段的字符(数值型字段无效)

    lines terminated by ‘行间分隔符’
    定义每行的分隔符
    问题分析

    以上命令在mysql5.6下运行没有问题,但在mysql5.7下运行则出现了以下错误。

    ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

    查看官方文档,secure_file_priv参数用于LOAD DATA, SELECT …OUTFILE, LOAD_FILE()传到哪个指定目录。

  • secure_file_priv 为 NULL 时,表示mysqld不允许导入或导出。

  • secure_file_priv 为 /tmp 时,表示mysqld只能在/tmp目录中执行导入导出,其他目录不能执行。

  • secure_file_priv 没有值时,表示不mysqld在任意目录的导入导出。

  • 查看 secure_file_priv 的值,默认为NULL,表示不能导入导出。

    mysql> show global variables like '%secure_file_priv%';
    +------------------+-------+| Variable_name | Value |
    +------------------+-------+| secure_file_priv | NULL |
    +------------------+-------+1 row in set (0.00 sec)

    因为 secure_file_priv 参数是只读参数,不能使用set global命令修改。

    mysql> set global secure_file_priv='';
    ERROR 1238 (HY000): Variable 'secure_file_priv' is a read only variable

    解决方法

    打开my.cnf 或 my.ini,加入以下语句后重启mysql。

    secure_file_priv=''

    查看secure_file_priv修改后的值

    mysql> show global variables like '%secure_file_priv%';
    +------------------+-------+| Variable_name | Value |
    +------------------+-------+| secure_file_priv | |
    +------------------+-------+1 row in set (0.00 sec)

    修改后再次执行,成功导出。

    mysql> select * from user into outfile '/tmp/user.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '\r\n';
    Query OK, 15 rows affected (0.00 sec)

    文档

    mysql5.7导出数据提示--secure-file-priv选项问题的解决方法

    mysql5.7导出数据提示--secure-file-priv选项问题的解决方法:mysql可使用 into outfile 参数把表中数据导出到csv,例如可用以下命令把user表的数据导出到user.csvselect * from user into outfile '/tmp/user.csv' fields terminated by ',' optionally e
    推荐度:
    标签: File mysql 数据导出
    • 热门焦点

    最新推荐

    猜你喜欢

    热门推荐

    专题
    Top