<?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: Update field values from other table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741689#M1043218</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;Thank you for the reply,but I need to overwrite the column values of one table from the matching column in the second table.could you please give an example of the script in qlikview.&lt;/P&gt;&lt;P&gt;In simple sql the script would be&lt;/P&gt;&lt;P&gt;"update tableA set column1=column2 from tableA A&lt;/P&gt;&lt;P&gt;inner join tableB B on A.key=B.key&lt;/P&gt;&lt;P&gt;where a.coulmn3='abc' "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do this scripting in qlikview.&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Dec 2014 02:02:01 GMT</pubDate>
    <dc:creator>prachisangewar</dc:creator>
    <dc:date>2014-12-01T02:02:01Z</dc:date>
    <item>
      <title>Update field values from other table</title>
      <link>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741686#M1043215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to use Qlikview for ETL.I have two tables, e.g A and B&lt;/P&gt;&lt;P&gt;I want to update some values for a column in table A from a column in table B by joining them using inner join.&lt;/P&gt;&lt;P&gt;I want to do this in the Script.&lt;/P&gt;&lt;P&gt;Could anyone suggest me any solution for this please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 09:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741686#M1043215</guid>
      <dc:creator>prachisangewar</dc:creator>
      <dc:date>2014-11-28T09:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Update field values from other table</title>
      <link>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741687#M1043216</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;QlikView is an ideal tool for ETL tasks.&lt;/P&gt;&lt;P&gt;You already seem to know how to do this. If you're sure an INNER JOIN will do what you want, off you go:&lt;/P&gt;&lt;P&gt;- Table_B should be loaded first, then you can use a RESIDENT LOAD for the JOIN; It sometimes doesn't work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; when you try and join directly from the primary LOAD.&lt;/P&gt;&lt;P&gt;- Specify the keyword INNER JOIN (it's not necessary, but I'd suggest to also specify the name of the table you&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; want to join to in brackets)&lt;/P&gt;&lt;P&gt;- After the keyword, write the LOAD of the fields you want to join to the table (a unique key (may be several fields, but you must rename them to match) has to be included in the LOAD)&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 09:30:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741687#M1043216</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2014-11-28T09:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Update field values from other table</title>
      <link>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741688#M1043217</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;You Can use inner join directly in edit Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * from A;&lt;/P&gt;&lt;P&gt;inner join&lt;/P&gt;&lt;P&gt;select * from B;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 09:39:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741688#M1043217</guid>
      <dc:creator />
      <dc:date>2014-11-28T09:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Update field values from other table</title>
      <link>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741689#M1043218</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;Thank you for the reply,but I need to overwrite the column values of one table from the matching column in the second table.could you please give an example of the script in qlikview.&lt;/P&gt;&lt;P&gt;In simple sql the script would be&lt;/P&gt;&lt;P&gt;"update tableA set column1=column2 from tableA A&lt;/P&gt;&lt;P&gt;inner join tableB B on A.key=B.key&lt;/P&gt;&lt;P&gt;where a.coulmn3='abc' "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do this scripting in qlikview.&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 02:02:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/741689#M1043218</guid>
      <dc:creator>prachisangewar</dc:creator>
      <dc:date>2014-12-01T02:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Update field values from other table</title>
      <link>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/1950751#M1219720</link>
      <description>&lt;P&gt;I also want the solution for the same problem to write QlikSense script. Please help.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2022 12:25:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-field-values-from-other-table/m-p/1950751#M1219720</guid>
      <dc:creator>Jagruti</dc:creator>
      <dc:date>2022-07-01T12:25:43Z</dc:date>
    </item>
  </channel>
</rss>

