Control file:
LOAD DATA
CHARACTERSET UTF8 LENGTH CHAR
TRUNCATE
INTO TABLE Test
(
A POSITION(001:003),
B POSITION(004:008),
C POSITION(020:054),
D POSITION(055:089),
F POSITION(090:129),
G POSITION(130:169),
H POSITION(170:209),
I POSITION(210:249),
J POSITION(250:255),
K POSITION(256:259),
L POSITION(260:299),
M POSITION(300:339),
N POSITION(340:356),
O POSITION(357:361),
P POSITION(362:366),
Q POSITION(367:374),
R POSITION(375:376),
S POSITION(378:379),
T POSITION(380:390)
)
Using sqldr from Linux causes each field after the field with the "multibyte character" to be off by one character. Record with no such characters do not exhibit this issue.
Example data that causes issue (field C): Fran«ois
How do i import this data properly?