Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Anybody has a good solution for this error.
The reasion that I am having this is because I am loading data from two QVDs both of them have 'OriginalParty' field name ..and that field is the one I am using to join the data on the two QVDs..
Any Idea on how I can fix that?
Thxs
You need tO concatenate the 2 qvd tables together into 1.
Fact:
Load
1 AS FactType,
Field1,
Field2,
Etc
From qvd1;
CONCATENATE (Fact)
Load
2 AS FactType,
Field1,
Field2,
Etc
From qvd2;
Hope this helps,
Jason
This didn't work!
Please post the data schema (Ctrl+T)