Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
settu_periasamy
Master III
Master III

store fields to qvd from different tables

Hi,

I have loaded the qvw in binary load. Now i need to store some fields from that file. But the tables are different.

eg.

Binary sample.qvw;

....

.....

store mara.normt, %customer,vbrk.kzwi2,  into check.qvd;

Please give suggestion.

Regards,

Settu

1 Solution

Accepted Solutions
anbu1984
Master III
Master III

First create a new table combining the fields you want to write to QVD.Also mention the common fields if any between these tables. Otherwise you will get cartesian product

NewTable:

Load mara.normt from mara;

Join(NewTable)

Load vbrk.kzwi2 from vbrk;

Store NewTable into check.qvd(qvd);

View solution in original post

2 Replies
PradeepReddy
Specialist II
Specialist II

I think it is not possible.

If u wish to store the multiple tables in a QVD,

1) Store them as separate QVDs

2) Combine them into single table and then store that single table into QVD.

anbu1984
Master III
Master III

First create a new table combining the fields you want to write to QVD.Also mention the common fields if any between these tables. Otherwise you will get cartesian product

NewTable:

Load mara.normt from mara;

Join(NewTable)

Load vbrk.kzwi2 from vbrk;

Store NewTable into check.qvd(qvd);