<?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 Resident Load Error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293173#M624455</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;Below is my piece of code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lTest:&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;[Temp ID] as [New Temp ID]&lt;/P&gt;&lt;P&gt;from lTest.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MxTemp:&lt;/P&gt;&lt;P&gt;Load * ,max([New Temp ID] as [New Temp ID]) ,[Orig Temp ID]&lt;/P&gt;&lt;P&gt;Resident lTest group by [Orig Temp ID];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The error&amp;nbsp; I am getting says field names must be unique within Tale.&amp;nbsp; This error pops up when about to load Temp. But If I want all my columns isnt Load * from resident the right way? Because I will be dropping the lTest Table and later will be fropping the MxTemp Table when I use it as a resident for another table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thoughts?&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;Rizwan &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Nov 2016 19:21:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-11-22T19:21:56Z</dc:date>
    <item>
      <title>Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293173#M624455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;Below is my piece of code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lTest:&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;[Temp ID] as [New Temp ID]&lt;/P&gt;&lt;P&gt;from lTest.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MxTemp:&lt;/P&gt;&lt;P&gt;Load * ,max([New Temp ID] as [New Temp ID]) ,[Orig Temp ID]&lt;/P&gt;&lt;P&gt;Resident lTest group by [Orig Temp ID];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The error&amp;nbsp; I am getting says field names must be unique within Tale.&amp;nbsp; This error pops up when about to load Temp. But If I want all my columns isnt Load * from resident the right way? Because I will be dropping the lTest Table and later will be fropping the MxTemp Table when I use it as a resident for another table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thoughts?&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;Rizwan &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 19:21:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293173#M624455</guid>
      <dc:creator />
      <dc:date>2016-11-22T19:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293174#M624456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You load the resident-load with a wildcard which meant that you included the field [New Temp ID] from the table lTest and within these load you call the max([New Temp ID]) also [New Temp ID] and there it is doubled. But this isn't the only issue then your group by won't include all fields from the wildcard. Therefore try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lTest:&lt;/P&gt;&lt;P&gt;Load * from lTest.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join(lTest)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load [Temp ID] ,max([Temp ID] as [Max Temp ID])&lt;/P&gt;&lt;P&gt;Resident lTest group by [Temp ID];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 19:32:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293174#M624456</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-11-22T19:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293175#M624457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly are you trying to do. Not just unique field name, but also the group by statement will be an issue in what you are doing here. If you can elaborate on what you are trying to do, may be we might be able to help you out here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 19:34:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293175#M624457</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-11-22T19:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293176#M624458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Marcus&lt;/P&gt;&lt;P&gt;After inserting your script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I am trying to call this into an another table something like this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Total:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Resident lTest where exists ([Max Temp ID]) and exists ([Orig Temp ID); &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Drop Table lTest&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Somehow its not reading the whereexists part&lt;/P&gt;&lt;P&gt;Thoughts?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 19:47:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293176#M624458</guid>
      <dc:creator />
      <dc:date>2016-11-22T19:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293177#M624459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you only looking to pull the Max value of Temp ID for each Orig Temp ID? May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;lTest:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Load * from lTest.qvd(qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #ff0000;"&gt;Right&lt;/SPAN&gt; Join (lTest)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Load [Temp ID] ,max([Temp ID] as [Max Temp ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Resident lTest group by [Temp ID];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 19:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293177#M624459</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-11-22T19:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293178#M624460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I am doing that max value of Temp ID for every Orig Temp ID&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 19:51:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293178#M624460</guid>
      <dc:creator />
      <dc:date>2016-11-22T19:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293179#M624461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try doing a right join?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 19:53:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293179#M624461</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-11-22T19:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293180#M624462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Marcus&lt;/P&gt;&lt;P&gt;Yes it does not give me expected result.&lt;/P&gt;&lt;P&gt;I got it to work in another way&amp;nbsp; but that is not an efficient way. so trying to do it via resident load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently my code is like this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I need to get the last part of it (exists ) to work.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;lTest:&lt;/P&gt;&lt;P&gt;Load * from lTest.qvd(qvd);&lt;/P&gt;&lt;P&gt;Right Join(lTest)&lt;/P&gt;&lt;P&gt;Load [Orig Temp ID],max([Temp ID]) as [Max Temp ID]&lt;/P&gt;&lt;P&gt;Resident lTest Group By [Orig Temp ID]&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD * Resident lTest where exists ([Max Temp ID]) and exists ([Orig Temp ID]);&lt;/P&gt;&lt;P&gt;drop table lTest;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store Temp into Temp.qvd;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 19:58:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293180#M624462</guid>
      <dc:creator />
      <dc:date>2016-11-22T19:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293181#M624463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sunny&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;P&gt;Riz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 20:10:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293181#M624463</guid>
      <dc:creator />
      <dc:date>2016-11-22T20:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293182#M624464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you be able to share your exact script you are using or a sample?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 20:11:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293182#M624464</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-11-22T20:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293183#M624465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cant share the exact script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a sample of it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 20:14:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293183#M624465</guid>
      <dc:creator />
      <dc:date>2016-11-22T20:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293184#M624466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sunny&lt;/P&gt;&lt;P&gt;This is what I want to achieve&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;I need to get the last part of it (exists ) to work.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;lTest:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Load * from lTest.qvd(qvd);&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Right Join(lTest)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Load [Orig Temp ID],max([Temp ID]) as [Max Temp ID]&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Resident lTest Group By [Orig Temp ID]&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Temp:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;LOAD * Resident lTest where exists ([Max Temp ID]) and exists ([Orig Temp ID]);&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;drop table lTest;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Store Temp into Temp.qvd;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 20:15:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293184#M624466</guid>
      <dc:creator />
      <dc:date>2016-11-22T20:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Load Error</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293185#M624467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see you want to filter this table but it's not quite clear for me what should be filterred. Please provide a small example with a few inline-data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 05:30:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Error/m-p/1293185#M624467</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-11-23T05:30:36Z</dc:date>
    </item>
  </channel>
</rss>

