Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
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
Thanks, Nagarjuna. It works.
Some remaks on this.
Please correct me, if I am wrong.
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