Answers for "mariadb to slow"

SQL
0

load data infile mariadb slow

add CONCURRENT to faster a little bit.

USE adb;
LOAD DATA CONCURRENT INFILE '/path/to/afile' IGNORE INTO TABLE atable;
Posted by: Guest on October-29-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language