Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qlik ignores table names

Hi, I cannot understand why Qlik concatenates tables completely ignoring (cancelling) table names. In the following example, Qlik ignores the table name "Table_2", because it concatenates all in Table_1.

Table_1:

load * inline [

f1, f2

1, 2

3, 4

];

Table_2:

load * inline [

f1, f2

44, 55

66, 77

];

1 Solution

Accepted Solutions
swuehl
MVP
MVP

There is auto-concatenation happening, if both tables show same fields, use NOCONCATENATE LOAD prefix:

able_1:

load * inline [

f1, f2

1, 2

3, 4

];

Table_2:

NOCONCATENATE

load * inline [

f1, f2

44, 55

66, 77

];

View solution in original post

1 Reply
swuehl
MVP
MVP

There is auto-concatenation happening, if both tables show same fields, use NOCONCATENATE LOAD prefix:

able_1:

load * inline [

f1, f2

1, 2

3, 4

];

Table_2:

NOCONCATENATE

load * inline [

f1, f2

44, 55

66, 77

];