Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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....


1 Reply
jagan
Luminary Alumni
Luminary Alumni

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.