MySql bulk load command line tool

后端 未结 4 1986
借酒劲吻你
借酒劲吻你 2020-11-30 07:28

Does MySql have a bulk load command line tool like bcp for SQLServer and sqlldr for Oracle? I know there\'s a SQL command LOAD INFILE or similar but I sometime

4条回答
  •  萌比男神i
    2020-11-30 07:35

    mysqlimport.

    takes the same connection parameters as the mysql command line shell. Make sure to use the -L flag to use a file on the local file system, otherwise it will (strangely) assume the file is on the server.

    There is also an analogous variant to the load data infile command, i.e., load data local infile, according to which the file will be loaded from the client rather than the server, which may accomplish what you want to do.

提交回复
热议问题