Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
can you please suggest me
how to get the qvd last refresh date
Hie..
LOAD
'Tablename' as QvdName,
QvdCreateTime('$(Path)Tablename.QVD') as QvdTime
AutoGenerate 1;
Hoe this will helps u..!!
Regards,
Mohammad
Hi,
Tro to create one variable some thing like using QVDCreateTime
LET FirstReload = isnull(QvdCreateTime('$(vQVDPath)Sample.QVD'));
Add the last reload time as a field name
vReloadTime = Now();
Table:
LOAD yourFieldName,
$(vReloadTime) as ReloadTime
FROM Source;
STORE Table into blahblah.qvd (qvd);
DROP Table Table;
in text box:
='Last update' &chr(13)&ReloadTime( )
Hie..
LOAD
'Tablename' as QvdName,
QvdCreateTime('$(Path)Tablename.QVD') as QvdTime
AutoGenerate 1;
Hoe this will helps u..!!
Regards,
Mohammad