J'ai un problème de chargement d'un fichier de type CSV dans QlikView 11.2.
Ce fichier comporte de nombreux doublons. Le script de chargement s'arrête dès qu'il trouve un doublon. Est ce normal ? Y a t il moyen de passer outre ?
Le script est très très simple :
SET ThousandSep=' ';
SET DecimalSep=',';
SET MoneyThousandSep=' ';
SET MoneyDecimalSep=',';
SET MoneyFormat='# ##0,00 €;-# ##0,00 €';
SET TimeFormat='hh:mm:ss';
SET DateFormat='DD/MM/YYYY';
SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff]';
SET MonthNames='janv.;févr.;mars;avr.;mai;juin;juil.;août;sept.;oct.;nov.;déc.';
SET DayNames='lun.;mar.;mer.;jeu.;ven.;sam.;dim.';
Directory;
LOAD Code_Article,
Libelle_gondole,
Libelle_article,
Dept,
Lib_Dept,
Ray,
Lib_ray,
Fam,
Lib_Fam,
Code_EAN,
Code_Marque,
Code_Etat,
Module,
TVA
FROM
ADP_ASSORTIMENT_sans_doublon.csv
(txt, codepage is 1252, embedded labels, delimiter is ';', msq);
Lorsque je supprime les doublons du fichier, tout s'intègre correctement.