ColumnStore LOAD DATA INFILE
Overview
The LOAD DATA INFILE statement reads rows from a text file into a table at a very high speed. The file name must be given as a literal string.
LOAD DATA [LOCAL] INFILE 'file_name'
INTO TABLE tbl_name
[CHARACTER SET charset_name]
[{FIELDS | COLUMNS}
[TERMINATED BY 'string']
[[OPTIONALLY] ENCLOSED BY 'char']
[ESCAPED BY 'char']
]
[LINES
[STARTING BY 'string']
[TERMINATED BY 'string']
]ColumnStore ignores the
ON DUPLICATE KEYclause.Non-transactional
LOAD DATA INFILEis directed to ColumnStores cpimport tool by default, which significantly increases performance.Transactional
LOAD DATA INFILEstatements (that is, withAUTOCOMMIToff or after aSTART TRANSACTION) are processed through normal DML processes.Use cpimport for importing
UTF-8data that contains multi-byte values
The following example loads data into a simple 5- column table: A file named /simpletable.tblhas the following data in it.
1|100|1000|10000|Test Number 1|
2|200|2000|20000|Test Number 2|
3|300|3000|30000|Test Number 3|The data can then be loaded into the simpletable table with the following syntax:
LOAD DATA INFILE 'simpletable.tbl' INTO TABLE simpletable FIELDS TERMINATED BY '|'If the default mode is set to use cpimport internally, any output error files will be written to /var/log/mariadb/columnstore/cpimport/ directory. It can be consulted for troubleshooting any errors reported.
See Also
This page is: Copyright © 2025 MariaDB. All rights reserved.
Last updated
Was this helpful?

