zoukankan      html  css  js  c++  java
  • MySQL select into outfile用法

    select into outfile用法

    SELECT ... FROM TABLE_A
    INTO OUTFILE "/path/to/file"
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
    LINES TERMINATED BY '
    ';

    load data infile用法

    LOAD DATA INFILE "/path/to/file" INTO TABLE table_name;
    注意:如果导出时用到了FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '
    '语句,那么LODA时也要加上同样的分隔限制语句。还要注意编码问题。

    解决select into outfile,不能导出到自定义目录问题

    Recent Ubuntu Server Editions (such as 10.04) ship with AppArmor and MySQL's profile might be in enforcing mode by default. You can check this by executing sudo aa-status like so:

    > sudo aa-status
        5 profiles are loaded.
        5 profiles are in enforce mode.
           /usr/lib/connman/scripts/dhclient-script
           /sbin/dhclient3
           /usr/sbin/tcpdump
           /usr/lib/NetworkManager/nm-dhcp-client.action
           /usr/sbin/mysqld
        0 profiles are in complain mode.
        1 processes have profiles defined.
        1 processes are in enforce mode :
           /usr/sbin/mysqld (1089)
        0 processes are in complain mode.

    If mysqld is included in enforce mode, then it is the one probably denying the write. Entries would also be written in /var/log/messages when AppArmor blocks the writes/accesses. What you can do is edit /etc/apparmor.d/usr.sbin.mysqld and add /data/ and /data/* near the bottom like so:

    /usr/sbin/mysqld {
        ...
        /var/log/mysql/ r,
        /var/log/mysql/* rw,
        /var/run/mysqld/mysqld.pid w,
        /var/run/mysqld/mysqld.sock w,
        /data/ r,
        /data/* rw,
    }

    And then make AppArmor reload the profiles.

    > sudo /etc/init.d/apparmor reload

    https://www.cnblogs.com/coderland/p/5902971.html

  • 相关阅读:
    [noip2011d2t2]聪明的质检员 二分+前缀和优化
    [noip2016d2t2]蚯蚓
    KMP
    杨辉三角(二项式定理)&&组合数 【noip 2011/2016 d2t1】
    bzoj1615 [Usaco2008 Mar]The Loathesome Hay Baler麻烦的干草打包机
    [noip2015 pjt3]求和
    [周记]8.28~9.3
    [noip2011 d1t3] Mayan游戏
    react基础用法二(组件渲染)
    react基础用法一(在标签中渲染元素)
  • 原文地址:https://www.cnblogs.com/seasonzone/p/10286790.html
Copyright © 2011-2022 走看看