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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

resident load

hieee

Can anyone make me understand what is resident load with some scenareio and is it necessay to drop previous table while using resident load

Labels (1)
2 Replies
arulsettu
Master III
Master III

hi

we can load a field from already loaded table

MayilVahanan

Hi

resident is used if data should be loaded from a previously loaded table.

For ex:

T1:

Load Id, field1, field2, value from tableA;

T2:

Load Id, field3 from tableB;

Join(T2)

Load Id, sum(Value) as Value resident T1;

In this example, you need to have field1, field2, value separately and also need to do some aggregation function with same field (Value). so don' t need to load the table again for do that operation.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.