Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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