<?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: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570557#M212584</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data_Temp:&lt;/P&gt;&lt;P&gt;LOAD REGIONID, LOCATIONID&lt;/P&gt;&lt;P&gt;FROM data.txt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(Data_Temp)&lt;/P&gt;&lt;P&gt;LOAD REGIONID, 1 AS Temp&lt;/P&gt;&lt;P&gt;INLINE [&lt;/P&gt;&lt;P&gt;REGIONID, LOCATION ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;2BVM-01,&amp;nbsp; 111&lt;/P&gt;&lt;P&gt;2BVM-01,&amp;nbsp; 222];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;REGIONID, LOCATIONID&lt;/P&gt;&lt;P&gt;RESIDENT Data_Temp&lt;/P&gt;&lt;P&gt;WHERE IsNull(Temp);&lt;/P&gt;&lt;P&gt;STORE Data into EXISITINGQVD.qvd; &lt;/P&gt;&lt;P&gt;DROP TABLE Data_Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jan 2014 05:25:48 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2014-01-28T05:25:48Z</dc:date>
    <item>
      <title>Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570550#M212577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Guys, please help me fix this issue.. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Requirement:&lt;/STRONG&gt; I am checking for particular region ids in the existing QVD. If it exists then i am dropping the MATCHING set of REGION ID's from the existing QVD and writing the REMAINING/REGION Id's Records to the EXISITING QVD AGAIN&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Below are the steps followed :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Read the DELTA FILE input data&lt;/P&gt;&lt;P&gt;2)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RESIDENT Load the the contents of the input DELTA file to TEMP table (Qlikview) and sort by REGION ID&lt;/P&gt;&lt;P&gt;3)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RIGHT JOIN the above TEMP table with EXISTING QVD data (read from destination folder) USING THE KEY REGION_ID and remove the REGION IDs from EXISTING QVD for the region ids that are already existing in TEMP TABLE.&lt;/P&gt;&lt;P&gt;4)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resultant TMP TABLE contains the REGIONID with single LOCATION ID's and the Remaining NBN LOCATION id mapped to the REGION ID's are getting DROPPED. I DO NOT want the &lt;BR /&gt;other LOCATION id's to drop. &lt;/P&gt;&lt;P&gt;ie,&amp;nbsp; If there are multiple instances of LOCATION id mapped to REGION ID, only one instance of a REGION ID and LOCATION ID is captured. I need other instances of LOCATION ID mapped to REGION's also to be captured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I am facing issue on step 4. I have provided the actual / expected result below. I have actually coded the scrip based on the above steps but it is not working. PLEASE PROVIDE ME THE QV Script.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Provided the INPUT DELTA FILE CONTENT and EXISTING QVD CONTENT. (as to how it appears)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(Note: REGION ID is NOT UNIQUE but LOCATION ID is UNIQUE)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;DELTA FILE CONTENT:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;REGIONID LOCATION ID&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;2BVM-01&amp;nbsp; 111&lt;BR /&gt;2BVM-01&amp;nbsp; 222&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXISTING QVD:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;REGIONID LOCATION ID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2BVM-01&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 111&lt;BR /&gt;2BVM-01&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 222&lt;BR /&gt;2BVM-01&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 888&lt;BR /&gt;2BVM-01&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 999&lt;BR /&gt;2BVM-02&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 777&lt;BR /&gt;2BVM-02&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 666&lt;BR /&gt;2BVM-03&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 555&lt;BR /&gt;2BVM-03&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 444&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;ACTUAL RESULT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;2BVM-02&amp;nbsp; 777&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;2BVM-03&amp;nbsp; 555&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXPECTED RESULT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;REGIONID LOCATION ID&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;2BVM-02&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 777&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;2BVM-02&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 666&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;2BVM-03&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 555&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;2BVM-03&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 444&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i am using &lt;STRONG&gt;LOCATION ID as a KEY&lt;/STRONG&gt; for RIGHT JOIN below is the result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2BVM-01&amp;nbsp; 888&lt;/P&gt;&lt;P&gt;2BVM-01&amp;nbsp; 999&lt;/P&gt;&lt;P&gt;2BVM-02&amp;nbsp; 777&lt;/P&gt;&lt;P&gt;2BVM-02&amp;nbsp; 666&lt;/P&gt;&lt;P&gt;2BVM-03&amp;nbsp; 555&lt;/P&gt;&lt;P&gt;2BVM-03&amp;nbsp; 444&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 07:33:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570550#M212577</guid>
      <dc:creator />
      <dc:date>2014-01-27T07:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570551#M212578</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;I think you need to join the table by using REGION ID, can you attach the script, why can't you use the Exists() instead of joining the tables.&amp;nbsp; Can you attach the script you are using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 08:25:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570551#M212578</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-27T08:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570552#M212579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code I am currently using which gives the above ACTUAL RESULT. I am using REGION_ID in WHERE NOT EXISTS(). Could you provide a sample code if you find any issues.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;DELTA_FILE:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD * &lt;BR /&gt;FROM ...\DELTA_REGION.dat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TEMP_DELTA:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD REGION_ID, LOCATION_ID&lt;BR /&gt;RESIDENT TEMP_DELTA&lt;BR /&gt;ORDER BY REGION_ID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RIGHT JOIN&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD * &lt;BR /&gt;FROM ...\EXISTINGQVD.qvd&lt;BR /&gt;WHERE NOT EXISTS (REGION_ID)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;STORE TEMP_DELTA to EXISITINGQVD.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE &lt;STRONG&gt;TEMP_DELTA;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE&lt;STRONG&gt; &lt;STRONG&gt;DELTA_FILE;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 08:47:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570552#M212579</guid>
      <dc:creator />
      <dc:date>2014-01-27T08:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570553#M212580</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;Try this&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: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;DELTA_FILE:&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: #f6f6f6;"&gt;LOAD * &lt;BR /&gt;FROM ...\DELTA_REGION.dat; &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: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;CONCATENATE(&lt;STRONG style="color: #3d3d3d; font-family: inherit; font-size: 12px; font-style: inherit;"&gt;DELTA_FILE&lt;/STRONG&gt;)&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: #f6f6f6;"&gt;LOAD * &lt;BR /&gt;FROM ...\EXISTINGQVD.qvd&lt;BR /&gt;WHERE NOT EXISTS (REGION_ID)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;BR /&gt;STORE &lt;STRONG style="color: #3d3d3d; font-family: inherit; font-size: 12px; font-style: inherit;"&gt;DELTA_FILE &lt;/STRONG&gt;to EXISITINGQVD.qvd;&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: #f6f6f6;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;DROP TABLE&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;DELTA_FILE;&lt;/STRONG&gt;&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: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&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: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Regards,&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: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Jagan.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 09:10:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570553#M212580</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-27T09:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570554#M212581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am still getting the same result. LOCATION Id's 666 and 444 are getting dropped. Any other possible way?? &lt;/P&gt;&lt;P&gt;ACTUAL RESULT&lt;/P&gt;&lt;P&gt;2BVM-02&amp;nbsp; 777&lt;BR /&gt;2BVM-03&amp;nbsp; 555&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPECTED RESULT&lt;/P&gt;&lt;P&gt;2BVM-02&amp;nbsp; 777&lt;BR /&gt;2BVM-02&amp;nbsp; 666&lt;BR /&gt;2BVM-03&amp;nbsp; 555&lt;BR /&gt;2BVM-03&amp;nbsp; 444&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 10:27:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570554#M212581</guid>
      <dc:creator />
      <dc:date>2014-01-27T10:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570555#M212582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try this&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: #f6f6f6;"&gt;Data_Temp:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;LOAD &lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;REGIONID, LOCATIONID&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;FROM ...\EXISTINGQVD.qvd&lt;BR /&gt;WHERE NOT EXISTS (REGION_ID);&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;LEFT JOIN(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Data_Temp&lt;/SPAN&gt;)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;LOAD &lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;REGIONID, 1 AS Temp&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;FROM ...\DELTA_REGION.dat;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;Data:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;REGIONID, LOCATIONID&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;RESIDENT &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Data_Temp&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;WHERE IsNull(&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Temp&lt;/STRONG&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;BR /&gt;STORE &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Data_Temp&lt;/SPAN&gt; to EXISITINGQVD.qvd;&lt;/P&gt;&lt;P&gt;&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: #f6f6f6;"&gt;DROP TABLE&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Data_Temp&lt;/SPAN&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;;&lt;/STRONG&gt;&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: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&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: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Regards,&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: #f6f6f6;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Jagan.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:05:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570555#M212582</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-27T14:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570556#M212583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx for your time. I am getting the below result this time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2BVM-01&amp;nbsp; 111&lt;/P&gt;&lt;P&gt;2BVM-02&amp;nbsp; 777&lt;/P&gt;&lt;P&gt;2BVM-03&amp;nbsp; 555&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 05:13:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570556#M212583</guid>
      <dc:creator />
      <dc:date>2014-01-28T05:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570557#M212584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data_Temp:&lt;/P&gt;&lt;P&gt;LOAD REGIONID, LOCATIONID&lt;/P&gt;&lt;P&gt;FROM data.txt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(Data_Temp)&lt;/P&gt;&lt;P&gt;LOAD REGIONID, 1 AS Temp&lt;/P&gt;&lt;P&gt;INLINE [&lt;/P&gt;&lt;P&gt;REGIONID, LOCATION ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;2BVM-01,&amp;nbsp; 111&lt;/P&gt;&lt;P&gt;2BVM-01,&amp;nbsp; 222];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;REGIONID, LOCATIONID&lt;/P&gt;&lt;P&gt;RESIDENT Data_Temp&lt;/P&gt;&lt;P&gt;WHERE IsNull(Temp);&lt;/P&gt;&lt;P&gt;STORE Data into EXISITINGQVD.qvd; &lt;/P&gt;&lt;P&gt;DROP TABLE Data_Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 05:25:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570557#M212584</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-28T05:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570558#M212585</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;I think keeping the REGION ID's in INLINE Table may not be a viable option. As these REGION ID's will be coming through the DELTA dat file and the data varies every week. NEW REGION ID's / Exising REGION ID's from EXISTING QVD may come through this DELTA file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you still suggest to try the above given code?&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, 28 Jan 2014 07:30:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570558#M212585</guid>
      <dc:creator />
      <dc:date>2014-01-28T07:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570559#M212586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Instead of INLINE you replace with your delta file.&amp;nbsp; Apart from that the script works fine?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 07:35:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570559#M212586</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-28T07:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570560#M212587</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;Is it working?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 08:20:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570560#M212587</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-28T08:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570561#M212588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Server down, couldnt login. I will let you know soon. Thx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 08:45:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570561#M212588</guid>
      <dc:creator />
      <dc:date>2014-01-28T08:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Additional RECORDS Dropped on RIGHT JOIN - PLEASE HELP!!</title>
      <link>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570562#M212589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your are Awesome!! Thanks buddy!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help me if i need any assistance in future &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp;&amp;nbsp; would be helpful if you could share your email id as well??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MANY THANKS!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 12:44:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Additional-RECORDS-Dropped-on-RIGHT-JOIN-PLEASE-HELP/m-p/570562#M212589</guid>
      <dc:creator />
      <dc:date>2014-01-28T12:44:27Z</dc:date>
    </item>
  </channel>
</rss>

