Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Last ReloadTime()

I have a RecordCreatedDate column in which record date along with time is stored.

How can I use the ReloadTime() in script so that I can load the data (RecordCreatedDate) which is greater than than previous ReloadTime.

Also, is there any temporary storage to store any value, such as ReloadTime() so that in can be used in next reload.

3 Replies
MK9885
Master II
Master II

Maybe the below script?

Refreshtime:

load

QvdCreateTime('C:\YOURDESTINATIONFORQVD\ABC.QVD') AS QVDTIME

AutoGenerate 1;

Load

Date(QVDTIME, 'MM/DD/YYYY hh:mm:ff TT') as QVDDate

Resident Refreshtime;


There can be more to it depending what you want....but this will only tell when the QVD was created


ravikumar_iyana
Creator
Creator

Hi Amar,

You can use like this  "   =' Last Refreshed Date: '&Date(ModifiedDate, requireddateformat)     "

vishsaggi
Champion III
Champion III

May be use a variable to store your refresh time like

LET vReloadTime = ReloadTime();

OR

LET vReloadTime = Date(ReloadTime());