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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
farolito20
Contributor III
Contributor III

Table not found

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

3 Replies
nagaiank
Specialist III
Specialist III

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);

farolito20
Contributor III
Contributor III
Author

The first load doesn't have a from 😕

CELAMBARASAN
Partner - Champion
Partner - Champion

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);