12/05/2013, 06:48
|
|
Respuesta: MySQL Import a tabla desde fichero txt Siguiendo las indicaciones, e intentando cargar un fichero texto, con campos separados por tabulador, literales entrecomillas y separador de líneas con retorno de carro, he lanzado la sentencia:
mysql> load data infile 'tipo.txt' into table prueba
-> fields terminated by '\t' enclosed by '"'
->lines terminated by '\n' ignore 1 lines;
y me dá el error:
ERROR 1262 (01000): Row 1 was truncated; it contained more data than there were
input columns
Parece que no detecta el cambio de línea?
He cambiado la sentencia por:
mysql> load data infile 'tipo.txt' into table prueba
-> fields terminated by '\t' enclosed by '"'
->lines terminated by '\r\n' ignore 1 lines;
Última edición por mnsyole; 12/05/2013 a las 06:52
Razón: Solución
|