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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
bharatkishore
Creator III
Creator III

Partial Reload

Hello ALL,

                   Can anyone tell me howe to do Partial Reload.If possible please attach your qlikview file.

Regards,

R.Bharat Kishore

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

     Now consider you have this script

Table1:

LOAD * INLINE [

    A, B

    1, 2

    3, 4

   

];

Table2:

LOAD * INLINE [

   C, D

   1, 2

   3, 4

    5, 6

];

     Now when you reload, above full script will get loaded. No change the script as below.

Table1:

LOAD * INLINE [

    A, B

    1, 2

    3, 4

    5, 6

   

];

Table2:

add LOAD * INLINE [

   C, D

   1, 2

   3, 4

   5, 6

    7,8 

];

 

Now when you perform partial reload, only table2 will be loaded. Table1 will contain only data till 3,4.. 5,6 will not be added.

Hope its clear.

Regards,

Kaushik Solanki  

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

5 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     Partial reload will work only if the load statement is preceded by "Add" or "Remove" keyword. Other tables will remain same.

     The use of this can be, for example if you want to add one more table into existing datamodel without loading full script.

     For more information you can have a look at the help available in QlikView.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
bharatkishore
Creator III
Creator III
Author

HI Kaushik,

                  Thanks a Lot for your Reply.I took two tables from load * inline.I Will Clearly write so that you can understand.

//***********Table1***********

Table1:

LOAD * INLINE [

    A, B

    1, 2

    3, 4

   

];

//Table2:

LOAD * INLINE [

   C, D

   1, 2

   3, 4

    5, 6

];

Now Pls say to mo How to do.

Regards,

R.Bharat Kishore

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

     Now consider you have this script

Table1:

LOAD * INLINE [

    A, B

    1, 2

    3, 4

   

];

Table2:

LOAD * INLINE [

   C, D

   1, 2

   3, 4

    5, 6

];

     Now when you reload, above full script will get loaded. No change the script as below.

Table1:

LOAD * INLINE [

    A, B

    1, 2

    3, 4

    5, 6

   

];

Table2:

add LOAD * INLINE [

   C, D

   1, 2

   3, 4

   5, 6

    7,8 

];

 

Now when you perform partial reload, only table2 will be loaded. Table1 will contain only data till 3,4.. 5,6 will not be added.

Hope its clear.

Regards,

Kaushik Solanki  

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
bharatkishore
Creator III
Creator III
Author

Thanks a lot Kaushik.Thanks for the reply.Its the Correct answer.Thank u so much.

Regards,

R.Bharat Kishore

bharatkishore
Creator III
Creator III
Author

Kaushik i have one more question.If i add data in table1 then also the data is loading.But if i add data in table1 it should not load it should only load table 2 data.

Regards,

R.Bharat Kishore