Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Alaska93
Contributor II
Contributor II

Load data

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

 

Labels (2)
1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

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,
...

 

View solution in original post

1 Reply
hic
Former Employee
Former Employee

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,
...