<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Show ReloadTime of a QVD in another QVW in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350231#M1306145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can loop through all the QVDs in a directory and subdirectory. You can also use the other Qvd*() functions like QvdNoOfRecords() to uild up something of a Dictionary of your Qvds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 May 2012 17:36:45 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2012-05-14T17:36:45Z</dc:date>
    <item>
      <title>Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350226#M1306129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please help me on this issue:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have couple of QVDs for numerous tables which are created one table at a time. Now this morning, a lot reports have failed that were dependent on the successful reload of these QVDs.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Due to the large amount of tables, all of these are auto-reloaded daily, but if one fails and the subsequent report starts to load, then fails, my work clients can see that their report have loaded today, yet the data they want was not correct. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is this, is there anyway of finding out the reloadtime of these QVDs in each my reports, so we can tell at a glance that data will be up to date&amp;nbsp; or not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI: Trying reloadtime() in the QVD creators is not good for me, i need that info to be imported in my reports. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350226#M1306129</guid>
      <dc:creator>buddhabang</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350227#M1306133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could have a separate QVD file that stores all the reload times, maybe.&amp;nbsp; E.g., in each QVD generator, after every STORE command try something like the following (untested):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF FileSize('QVDReloads.qvd')&amp;gt;0 THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD * FROM QVDReloads.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCATENATE (QVDReloads)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QVDFile,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Now()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ReloadDateTime&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QVDFile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QVDFile123,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QVDReloads:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QVDFile,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Now()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ReloadDateTime&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QVDFile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QVDFile123,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END IF;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE QVDReloads INTO QVDReloads.qvd;&lt;/P&gt;&lt;P&gt;DROP TABLE QVDReloads;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, in each of your QVWs, load this QVD and get the maximum relaodDateTime for your required QVD files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 14:43:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350227#M1306133</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-05-14T14:43:34Z</dc:date>
    </item>
    <item>
      <title>Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350228#M1306136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you so much Jason, i will be testing this tomorrow morning as almost done now. &lt;/P&gt;&lt;P&gt;Will come back to you, cheers mate. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 14:59:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350228#M1306136</guid>
      <dc:creator>buddhabang</dc:creator>
      <dc:date>2012-05-14T14:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350229#M1306139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the script of your report qvw you can create a table of qvdnames and Qvd Create times:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'myqvd.qvd' as QvdName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QvdCreateTime('myqvd.qvd') as QvdTime&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;AUTOGENERATE 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 16:38:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350229#M1306139</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-05-14T16:38:25Z</dc:date>
    </item>
    <item>
      <title>Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350230#M1306143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's somewhat simpler than my solution, Rob!&amp;nbsp; Could you use this function to query all QVD files in one go (assuming they were all in the same folder)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 16:47:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350230#M1306143</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-05-14T16:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350231#M1306145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can loop through all the QVDs in a directory and subdirectory. You can also use the other Qvd*() functions like QvdNoOfRecords() to uild up something of a Dictionary of your Qvds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 17:36:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350231#M1306145</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-05-14T17:36:45Z</dc:date>
    </item>
    <item>
      <title>Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350232#M1306147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my persuit of using QlikView on everything, I want to suggest to use it on the script log that gets created during the reload. I sometimes use that to break down a script file into rows that I can then turn up in a line chart showing me exactly where my script spends significant portions of time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script log however, is a bit tiresome in its format, and also looks different between Desktop and Publisher. But for those into substring(), it's a real adventure!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 21:01:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350232#M1306147</guid>
      <dc:creator>StefanBackstrand</dc:creator>
      <dc:date>2012-05-14T21:01:52Z</dc:date>
    </item>
    <item>
      <title>Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350233#M1306149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks guys, i've only had time to go through this today. Jason, your solution worked better for me although it was more long winded but it worked, Rob i've tried yours first but maybe i was missing something, but no data showed up when i tried it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your help, Stefan will bare that in mind. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 14:19:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350233#M1306149</guid>
      <dc:creator>buddhabang</dc:creator>
      <dc:date>2012-05-17T14:19:56Z</dc:date>
    </item>
    <item>
      <title>Show ReloadTime of a QVD in another QVW</title>
      <link>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350234#M1306151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; By The way guys, looking at the code again, we tought why not just use Now() as Reloadtime_TABLE in all all of the QVD creators, whcih actually works perfectly, less scripting too. &lt;/P&gt;&lt;P&gt;Just reload the QVD which will now contain the time along with other fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Super guys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 15:45:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-ReloadTime-of-a-QVD-in-another-QVW/m-p/350234#M1306151</guid>
      <dc:creator>buddhabang</dc:creator>
      <dc:date>2012-05-17T15:45:23Z</dc:date>
    </item>
  </channel>
</rss>

