Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

implicit and explicit Concatenate

Hi,

  Can any One Explain What is implicit and explicit Concatenate in qlikview with some Example if possible

Thanks

Manju

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

implicit : If your both table structure is exactly same then QlikView  automatically concatenate both the table and make single table

Ex

Table1:

Load 

Name,

Country

from abc ;

Table2:

Load 

Name,

Country

from XYZ;

it will auto concatenate and will get one table Table1.

explicit :

Ex

Table1:

Load 

Name,

Country ,

ZipCode

from abc ;

Concatenate

Table2:

Load 

Name,

Country

from XYZ;

You need to explicitly concatenate both the table with Keyword 'Concatenate '


Thanks

BKC

View solution in original post

2 Replies
Peter_Cammaert
Partner - Champion III
Partner - Champion III

An Implicit concatenate will happen when QlikView thinks that a subsequent LOAD statement produces a similar table as the previous one. An optional name for the new table will be ignored. This operation can be avoided by using the NOCONCATENATE prefix.

An Explicit concatenate is a LOAD statement that is preceded by the CONCATENATE or CONCATENATE (TableName) prefixes. With these prefixes, you explicitly tell QlikView to add all new rows to the most recently created or to an older existing RESIDENT table.

Anonymous
Not applicable
Author

implicit : If your both table structure is exactly same then QlikView  automatically concatenate both the table and make single table

Ex

Table1:

Load 

Name,

Country

from abc ;

Table2:

Load 

Name,

Country

from XYZ;

it will auto concatenate and will get one table Table1.

explicit :

Ex

Table1:

Load 

Name,

Country ,

ZipCode

from abc ;

Concatenate

Table2:

Load 

Name,

Country

from XYZ;

You need to explicitly concatenate both the table with Keyword 'Concatenate '


Thanks

BKC