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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
nqlik123
Contributor II
Contributor II

Partial Reload

Hi All i have my script as below.

When i do a partial reload, i only want to load Table "a" and get appended to "PRODUCT" table.
IF i do a full reload, ignore the Partial reload script and load "PRODUCT" and Table "b".


ITEM:
LOAD * INLINE [
TEAM, ITEM
1, PHONE
2, COMPUTER
3, TABLET
];

b:
LOAD * INLINE [
TEAM, ITEM
4, f

];


if IsPartialReload() then

a:
replace LOAD * INLINE [
TEAM, ITEM
5, g

];

 

End If
Exit Script

 

Labels (4)
0 Replies