Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi team,
i have 3 qvd files
timedim.qvd,
productdim.qvd
universitydim.qvd
now want ot create a single qvd file
plase help me
You should realize that you can only store 1 table per qvd. That means that you would have to join the three tables from your three qvd files into one table. You should ask yourself it it makes sense to do that. Why are three qvd files not an acceptable solution? Unless you can think of a very good answer to that question you should just accept using three qvd files.
Hi,
If you need to store in 3 Qvds in One data file why not try to use excel sheet
and store these 3 Qvd's in 3 different sheets of One Excel file.
//Yusuf
Hello!!
Firstly these 3 QVDs should have some common ground on which to use them as primary keys.
Considering this, you will joins has transformed everything into a single data source.
example:
Aux:
Load
A,
B
From [..\Directory\QVD1.qvd] (qvd);
Left Join (Aux)
Load
A,
C
From [..\Directory\QVD2.qvd] (qvd);
Left Join (Aux)
Load
A,
D
From [..\Directory\QVD3.qvd] (qvd);
Store Into Aux [..\Directory\QVDTransformed.qvd];