<?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 Partial Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Partial-Load/m-p/1308579#M846457</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a file that the loading is almost 30 minutes i have been asked to add two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;¿there is a way to make the loading smaller with just a few lines so i can see if the loading i am making is correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Load/m-p/1308579#M846457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a file that the loading is almost 30 minutes i have been asked to add two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;¿there is a way to make the loading smaller with just a few lines so i can see if the loading i am making is correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Load/m-p/1308579#M846457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Load/m-p/1308580#M846458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The best way to do this is to use the 'debug' option in the edit script dialog, this way you can set it to load only a few lines &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2017 11:10:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Load/m-p/1308580#M846458</guid>
      <dc:creator>adamdavi3s</dc:creator>
      <dc:date>2017-03-30T11:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Load/m-p/1308581#M846459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want to verify the script without &lt;STRONG&gt;syntax errors&lt;/STRONG&gt; then use &lt;STRONG&gt;Debug&lt;/STRONG&gt; with limited records&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Image result for debug 10 records qlikview" class="jive-image" height="186" src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT9ubIRmy28ho4dbm2ASIXvweAiiW1SlUXMJKBu0xoutkygYtgnGw" style="height: 186px; width: 385.115px;" width="385" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if already data model is created and you want to add one more extra table you can choose Add Load/Partial Reload&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 style="font-style: inherit; font-family: inherit;"&gt;Add load:&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;Simply put, this statement blindly appends data from one table to the data of another table, having similar signature, during partial reload. It does not check for any duplicate. Hence, ADD LOAD or ADD SELECT is usually follwed by distinct or a proper where clause.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;e.g.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;LOAD OrderID, OrderAmt from Order_May.csv;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;ADD LOAD OrderID, OrderAmt from Order_June.csv;&lt;/EM&gt;&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;This will simply concate data from Order_June to Order_May. But OrderID might be duplicated. Hence, this statement can be properly shaped to remove duplicate data as:&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;EM style="font-weight: inherit; font-family: inherit;"&gt;LOAD OrderID, OrderAmt from Order_May.csv;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;ADD LOAD OrderID, OrderAmt from Order_June.csv Where Not Exists(OrderID);&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2017 11:24:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Load/m-p/1308581#M846459</guid>
      <dc:creator>ramasaisaksoft</dc:creator>
      <dc:date>2017-03-30T11:24:19Z</dc:date>
    </item>
  </channel>
</rss>

