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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

resident load

      hiiii,

i have a data loaded from inline .

i want to jst ask is it possible to generate table using resident load from data which is loaded inline

Labels (1)
5 Replies
Not applicable
Author

yes it is possible.

table1:

load * inline

[

col1,col2

a,20

b,50

];

noconcatenate

table2:

load *

resident

table1;


tresB
Champion III
Champion III

Yes. Like below:

Tab1:

Load * Inline

[ Field1, Field2

     A, 10

     B, 20

];

Tab2:

Load *, '1' as Dummy Resident Tab1;

rajat2392
Partner - Creator III
Partner - Creator III

Hi Akash,

Yes it is absolutely possible. You just have to give a table name to the inline table you are creating. As you can see below

Table1:

Load * Inline

[

Column1, Column2

......., ......

......., .....

];

NoConcatenate

New_Table:

Load *

Resident Table1;

Drop Table Table1;

This is how you can resident load from a inline table.

Not applicable
Author

@Rajat, your code won't work. This will simply concatenate the second load statement into the first table. It will never create the 'New_table' as the structure of this is similar to the existing table. You have to have a noconcatenate before the second load.

Thanks,

Ram

rajat2392
Partner - Creator III
Partner - Creator III

Hi Ram,

Thanx for the correction, I forgot to write it.