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: 
Not applicable

Precedent Load vs Resident Load

please any one can explain

Precedent Load vs Resident Load?

Thanks in advance....


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

Hi Nagaraju,

Preceding Load:

Loading data from already load statement is called preceding load.  For example

LOAD                   //This section is called preceding load

    *,

     Month(Date) AS Month,

     Year(Date) AS Year;                      

LOAD                    // Normal load.

     Department,

     Date,

     Sales

FROM DataSource;

Resident:

Data loaded from already loaded table is called Resident table.

For example

TableName:

LOAD

     *

FROM DataSource;

Data:          

LOAD      //Resident Load

     *,

     Month(Date) AS Month,

     Year(Date) AS Year

RESIDENT TableName;

Hope this helps you.

Regards,

Jagan.