Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QVD problem

I´m using a script that looks like this

[test]:

load

a,

b,

c

FROM

file.qvd;

load

a as sa,

b as sb,

c as sc

FROM

Sfile.qvd

store test into produktion.qvd

BUT I only get the first load a, b, c into the qvd file???????

1 Solution

Accepted Solutions
saumyashah90
Specialist
Specialist

Table1:

Load

a,

b,

c

from file.qvd;

Table2:

Concatenate
a as sa,

b as sb,

c as sc

from SFile.qvd

View solution in original post

4 Replies
saumyashah90
Specialist
Specialist

Table1:

Load

a,

b,

c

from file.qvd;

Table2:

Concatenate
a as sa,

b as sb,

c as sc

from SFile.qvd

Not applicable
Author

Cause you only store your TEST table.

try this:

[test]:

load

a,

b,

c

FROM

file.qvd;

test1:

CONCATENATE ([test])

load

a as sa,

b as sb,

c as sc

FROM

Sfile.qvd

store test into produktion.qvd

saumyashah90
Specialist
Specialist

check this

Not applicable
Author

Tak for hjælpen