<?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: Left join + Load * resident throws error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720719#M722965</link>
    <description>&lt;P&gt;The reload log would probably tell us what is going on, but it is hard to help you if you don't help us...&lt;/P&gt;&lt;P&gt;A wild guess is that the SUB is called with a&amp;nbsp;&lt;SPAN&gt;FilePath which doesn't have any files.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jun 2020 07:33:11 GMT</pubDate>
    <dc:creator>fosuzuki</dc:creator>
    <dc:date>2020-06-22T07:33:11Z</dc:date>
    <item>
      <title>Left join + Load * resident throws error</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720635#M722961</link>
      <description>&lt;P&gt;HI, I'm trying to execute this script in Qlikview&lt;/P&gt;&lt;P&gt;1. from 1st tab :&lt;/P&gt;&lt;P&gt;Req:&lt;BR /&gt;LOAD Source as Cube,&lt;BR /&gt;Source&amp;amp;'-'&amp;amp;DIMID&amp;amp;'.QVD' as QvdFile,&lt;BR /&gt;DIMID,&lt;BR /&gt;RECORDS,&lt;BR /&gt;Color,&lt;BR /&gt;StatusText&lt;BR /&gt;FROM&lt;BR /&gt;[..\Data Refresh Time\CO_Actual_Record_Counts.qvd](qvd)&lt;BR /&gt;where [End Time] &amp;gt; MonthStart(Today()-500);&lt;/P&gt;&lt;P&gt;Trace ----------------------------------------;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. From 2nd tab:&lt;/P&gt;&lt;P&gt;Sub GetQvdFiles(FilePath);&lt;BR /&gt;For each File in filelist ('$(FilePath)');&lt;BR /&gt;Files:&lt;BR /&gt;Load&lt;BR /&gt;'$(File)' as FileName,&lt;BR /&gt;Mid('$(File)',Index('$(File)','\',-1)+1,len('$(File)')-Index('$(File)','\',-1)) as QvdFile,&lt;BR /&gt;FileSize( '$(File)' ) as Size,&lt;BR /&gt;FileTime( '$(File)' ) as FileTime&lt;BR /&gt;autogenerate 1;&lt;BR /&gt;NEXT;&lt;BR /&gt;&lt;BR /&gt;left join(Req)&lt;BR /&gt;Load * Resident Files;&lt;BR /&gt;Drop Table Files;&lt;BR /&gt;&lt;BR /&gt;ENDSUB;&lt;/P&gt;&lt;P&gt;when I'm reloading the script, it throws an error like "Table Files not found",&amp;nbsp; any thoughts???&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:26:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720635#M722961</guid>
      <dc:creator>Qlikandlearn</dc:creator>
      <dc:date>2024-11-16T00:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Left join + Load * resident throws error</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720637#M722962</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Does your script have more code?&lt;/P&gt;&lt;P&gt;Can you post the reload log?&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jun 2020 14:58:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720637#M722962</guid>
      <dc:creator>fosuzuki</dc:creator>
      <dc:date>2020-06-21T14:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Left join + Load * resident throws error</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720647#M722963</link>
      <description>&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;The script is failing as it's throwing an error as "Table Files not found left join(Req)&lt;BR /&gt;Load * Resident Files;&lt;BR /&gt;Drop Table Files;".&lt;/P&gt;&lt;P&gt;Do I need to add or change any to the script?&lt;/P&gt;&lt;P&gt;When I comment the below three lines, it's working, but the qvd's it creates may not have accurate data&lt;/P&gt;&lt;P&gt;left join(Req)&lt;BR /&gt;Load * Resident Files;&lt;BR /&gt;Drop Table Files;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jun 2020 16:44:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720647#M722963</guid>
      <dc:creator>Qlikandlearn</dc:creator>
      <dc:date>2020-06-21T16:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Left join + Load * resident throws error</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720649#M722964</link>
      <description>&lt;P&gt;Please find the script what I have from &lt;STRONG&gt;2&lt;/STRONG&gt; &lt;EM&gt;&lt;STRONG&gt;different tabs&lt;/STRONG&gt; &lt;/EM&gt;from Edit script..&lt;/P&gt;&lt;P&gt;Sub GetRequests;&lt;/P&gt;&lt;P&gt;Trace ----------------------------------------;&lt;BR /&gt;Trace Load requests;&lt;BR /&gt;//Req:&lt;BR /&gt;//Load '$(Cube)' as Cube,&lt;BR /&gt;// '$(Cube)-'&amp;amp;DIMID&amp;amp;'.QVD' as QvdFile,&lt;BR /&gt;// *;&lt;BR /&gt;//Select DIMID,&lt;BR /&gt;// SID_0REQUID&lt;BR /&gt;//From /BIC/D$(Cube)P;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Req:&lt;BR /&gt;LOAD Source as Cube,&lt;BR /&gt;Source&amp;amp;'-'&amp;amp;DIMID&amp;amp;'.QVD' as QvdFile,&lt;BR /&gt;DIMID,&lt;BR /&gt;RECORDS,&lt;BR /&gt;Color,&lt;BR /&gt;StatusText&lt;BR /&gt;FROM&lt;BR /&gt;[..\Data Refresh Time\CO_Actual_Record_Counts.qvd](qvd)&lt;BR /&gt;where [End Time] &amp;gt; MonthStart(Today()-500);&lt;/P&gt;&lt;P&gt;Trace ----------------------------------------;&lt;BR /&gt;ENDSUB;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sub GetQvdFiles(FilePath);&lt;BR /&gt;For each File in filelist ('$(FilePath)');&lt;BR /&gt;Files:&lt;BR /&gt;Load&lt;BR /&gt;'$(File)' as FileName,&lt;BR /&gt;Mid('$(File)',Index('$(File)','\',-1)+1,len('$(File)')-Index('$(File)','\',-1)) as QvdFile,&lt;BR /&gt;FileSize( '$(File)' ) as Size,&lt;BR /&gt;FileTime( '$(File)' ) as FileTime&lt;BR /&gt;autogenerate 1;&lt;BR /&gt;NEXT;&lt;BR /&gt;&lt;BR /&gt;left join(Req)&lt;BR /&gt;Load * Resident Files;&lt;BR /&gt;Drop Table Files;&lt;BR /&gt;&lt;BR /&gt;ENDSUB;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance..&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jun 2020 17:11:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720649#M722964</guid>
      <dc:creator>Qlikandlearn</dc:creator>
      <dc:date>2020-06-21T17:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Left join + Load * resident throws error</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720719#M722965</link>
      <description>&lt;P&gt;The reload log would probably tell us what is going on, but it is hard to help you if you don't help us...&lt;/P&gt;&lt;P&gt;A wild guess is that the SUB is called with a&amp;nbsp;&lt;SPAN&gt;FilePath which doesn't have any files.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 07:33:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1720719#M722965</guid>
      <dc:creator>fosuzuki</dc:creator>
      <dc:date>2020-06-22T07:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Left join + Load * resident throws error</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1726224#M722966</link>
      <description>&lt;P&gt;See the following Article link on how to enable Script/Document logging:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.qlik.com/articles/000002668" target="_self"&gt;Enable Script/Document Logging&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2020 18:05:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1726224#M722966</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-07-08T18:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Left join + Load * resident throws error</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1745615#M722967</link>
      <description>&lt;P&gt;Thanks for your responses, this issue has resolved.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2020 13:02:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1745615#M722967</guid>
      <dc:creator>Qlikandlearn</dc:creator>
      <dc:date>2020-09-21T13:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Left join + Load * resident throws error</title>
      <link>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1745994#M722968</link>
      <description>&lt;P&gt;We would appreciate it if you would properly close out the thread by using the Accept as Solution button on the post(s) that helped you resolve the issue, or if you figured out something different, please post what you did and then mark that as the solution so others will know what the issue was and what you did to address it.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 12:23:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Left-join-Load-resident-throws-error/m-p/1745994#M722968</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-09-22T12:23:31Z</dc:date>
    </item>
  </channel>
</rss>

