Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
we have 3 QVD's. we need to club all these QVD 's into single QVD .. we have common key in all 3 QVD.
i used concatenate ..
after loading into single QVD , We call that qvd in a QVW and pulled the data in excel...
when we compare the FInal QVD data with each individual qvd data, the data in excel is
showing Blanks(ex: -) that means the joing is not correct.
How to solve this..
sample qvw PFA..
Check the common key it is unique or the multiple in nature like its frequency. An let me know.
Hi Anand ,
Its unique key..
You use Noconcatenate so how it will join and concatenate please check your script.
Sorry i sent u the wrong QVW...i tried with Concatenate only ...but its the same result...
Hi,
If you need these 3 tables in the same qvd with the same fields you should use Concatenate instead of No Concatenate.
Regards,
ya i tried with concatenate only...but the data in excel is showing blanks even though the data in Original qvd has Values
say ex: forecastTeamComitAMount has count of 2613 records
but in FInal QVD in excel the data is showing blanks..
Your table name is different to each other and when you concatenate the tables you get some - blank in the rows if the field name should same then concatenate other wise join then on the basis of the key field. And add the Table flag to identify the records like
Tab1:
Load * 'Tab1' as TableFlag from Location;
Concatenate
Tab2:
Load * 'Tab2' as TableFlag from Location;
Try to concatenate the tables one by one and cross check the data with excel and raw source.
Hi Abhinav,
You are giving NoConcatenate, that is why the second and third qvd is not loading. Try like this
Forecast:
LOAD
*
FROM QVD1;
Concatenate(Forecast)
LOAD
*
FROM QVD2;
Concatenate(Forecast)
LOAD
*
FROM QVD3;
Hope this helps you.
Regards,
Jagan.