September 2014
Intermediate to advanced
384 pages
9h 28m
English
A backup of a single table can be a delimited text file: a human-readable text file in which the column values are separated by a specific character. The most common example is the CSV format, where the values are separated by a comma. MariaDB supports the following ways to create text-delimited files:
mysqldump command with the --tab optionSELECT … INTO OUTFILE commandCSV storage engineCONNECT storage engineMariaDB also supports the following methods to restore a text limited backup:
mysqlimport commandLOAD DATA INFILE commandCSV storage engineCONNECT storage engineThe
mysqldump command, when invoked with the --tab option, produces two files for each ...
Read now
Unlock full access