Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour la communauté,
J'ai rencontré une incohérence dans le chargement de données.
J'ai une table 'Table1' qui contient 10000 lignes.
Pourquoi quand j'utilise le script suivant, je trouve + de 20000 lignes sur la 'Table final'?
[Table1]:
Load
Cl_Id,
Client_name,
xxx
From FROM [lib://xxxxxx/Table1.qvd](qvd)
;
[Table final]:
Load
Cl_Id,
Client_name,
xxx
Resident Table1;
drop table Table1;
A mon avis, 'Table final' doit avoir le même nombre de lignes que 'Table1'.
Pourriez vous m'expliquer cette hause de nombre de lignes sur 'Table final'?
Merci
If you have the same set of fields, the tables will automatically concatenate. Try to put "NoConcatenate" in front of the second load:
[Table final]:
NoConcatenate Load
Cl_Id,
...
If you have the same set of fields, the tables will automatically concatenate. Try to put "NoConcatenate" in front of the second load:
[Table final]:
NoConcatenate Load
Cl_Id,
...