Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
berndjaegle
Creator II
Creator II

Partial reload with Client

Hi there,

Is it possible to do a partial relaod with the QV client?

Tried with "Replace" and exectued with command line.

But it always reloads all in the script tables.

Calendar:

replace LOAD
     
TempDate as %DATE,
      
Year(TempDate) as Year,

     ...

resident TempDate;

I want to reduce the reload time during development work.

When changing small things at the calendar, I don't want to reload all the Data.qvd with tons of data.

Any idea?

Thanks.

1 Solution

Accepted Solutions
nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Hi,

After Adding Your Table in Script like above .

procedure:

1.Click On OK.

2. Front end Goto File>>>Select Partial Reload.

Note:

Don't Click on Reload Button.

It will load only previously loaded table .


Regards,

Nagarjuna

View solution in original post

3 Replies
nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Hi,

After Adding Your Table in Script like above .

procedure:

1.Click On OK.

2. Front end Goto File>>>Select Partial Reload.

Note:

Don't Click on Reload Button.

It will load only previously loaded table .


Regards,

Nagarjuna

berndjaegle
Creator II
Creator II
Author

Thanks, Nagarjuna. It works.

Some remaks on this.

  • Rename fields with mappings won't work, because the are not loaded.
  • Ctrl+Shift+R for partial relaod.

Please correct me, if I am wrong.

nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

OKay,I got it.

So before using that table ,first create QVD like below

Data:

LOAD
     
TempDate as %DATE,
      
Year(TempDate) as Year

Store Data INTO D://Path/Data.QVD(qvd);

and use that QVD ;

Like this:

replace LOAD
     
%DATE,
      
Year

From...........


It will map all associated fields




.Check and Let me know



Regards,

Nagarjuna