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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
venkey2847
Contributor II
Contributor II

Incremental load

Hi All,

I have an one FACT TABLE,

My FACT TABLE don't have the "UNIQUE KEY" and "DATE " fields.

Now I want to do INCREMENTAL LOAD, How can I do that ?

please help me out this issue..

Thanks

Venkey

Labels (1)
1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Then it won't be possible to identify changed records. Only new records can be detected.

MyTable:

LOAD ...lot of fields..., hashkey_field FROM HistoricalData.qvd qvd();

CONCATENATE (MyTable)

LOAD ...lots of fields... , autonumberhash256( ...lots of fields...) as hashkey_field

WHERE NOT Exists( hashkey_field, autonumberhash256( ...lots of fields...) );

SQL SELECT ...lots of fields... FROM MySQLDatabase.MySQLTable;


talk is cheap, supply exceeds demand