Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
tabla:
load Distinct t_bpid, t_nama,t_seak,t_ccur,ValidFrom,ValidTill,MostRecent,Checksum
from DimCustomers_Day0.qvd (qvd);
Left Join (tabla)
Load
*,
Rowno() as %KeyCustomer
Resident tabla;
STORE tabla into DimCustomers_Day0.qvd (qvd);
DROP Table tabla;
load * from DimCustomers_Day0.qvd (qvd);
help
Try the following:
tabla:
Load
*,
Rowno() as %KeyCustomer;
load Distinct t_bpid, t_nama,t_seak,t_ccur,ValidFrom,ValidTill,MostRecent,Checksum
from DimCustomers_Day0.qvd (qvd);
STORE tabla into DimCustomers_Day0.qvd (qvd);
DROP Table tabla;
load * from DimCustomers_Day0.qvd (qvd);
The first load doesn't have a from 😕
tabla:
Load
*,
Rowno() as %KeyCustomer;//This is preceding load it loads data from the below load statement
Load Distinct t_bpid, t_nama,t_seak,t_ccur,ValidFrom,ValidTill,MostRecent,Checksum
from DimCustomers_Day0.qvd (qvd);
STORE tabla into DimCustomers_Day0.qvd (qvd);
DROP Table tabla;
load * from DimCustomers_Day0.qvd (qvd);