<?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: How to load only updated data from MySql to qlik Sense and update Dashboard? in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114137#M1866</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Usually there's a bit more info that also has some clues as to what error occurred. Can you post the 10 lines before and after the part you posted above?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 May 2016 17:13:48 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2016-05-20T17:13:48Z</dc:date>
    <item>
      <title>How to load only updated data from MySql to qlik Sense and update Dashboard?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114136#M1865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error occurred here:&lt;/P&gt;&lt;P class="edc_error" style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 15px; background: rgba(255, 38, 38, 0.2);"&gt;RequestedNew:&lt;/P&gt;&lt;P class="edc_error" style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 15px; background: rgba(255, 38, 38, 0.2);"&gt;Load * &lt;/P&gt;&lt;P class="edc_error" style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 15px; background: rgba(255, 38, 38, 0.2);"&gt;from RequestedTrips &lt;/P&gt;&lt;P class="edc_error" style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 15px; background: rgba(255, 38, 38, 0.2);"&gt;Where created_at &amp;gt; 2016-05-17 13:50:01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2016 12:22:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114136#M1865</guid>
      <dc:creator />
      <dc:date>2016-05-20T12:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to load only updated data from MySql to qlik Sense and update Dashboard?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114137#M1866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Usually there's a bit more info that also has some clues as to what error occurred. Can you post the 10 lines before and after the part you posted above?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2016 17:13:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114137#M1866</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-05-20T17:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to load only updated data from MySql to qlik Sense and update Dashboard?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114138#M1867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;//PHASE 1 ------------------------ Load Data from MySql Database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// RequestedTrips:&lt;/P&gt;&lt;P&gt;// load *;&lt;/P&gt;&lt;P&gt;// sql&lt;/P&gt;&lt;P&gt;// select&lt;/P&gt;&lt;P&gt;// `requested_trips`.`id` as "Trip ID",&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(`requested_trips`.`start_date`&amp;gt;'2016-05-01',&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; `requested_trips`.`start_date`,&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; null) &lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as "Trip Start Date",&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; convert_tz(`requested_trips`.`created_at`,'+00:00','+05:30') as "created_at",&lt;/P&gt;&lt;P&gt;// convert_tz(`requested_trips`.`updated_at`,'+00:00','+05:30') as "updated_at"&lt;/P&gt;&lt;P&gt;// FROM requested_trips&lt;/P&gt;&lt;P&gt;// where created_at &amp;gt; '2016-05-18&amp;nbsp; 13:50:01';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;//PHASE 2--- Load updated data only from MySql Database on the basis of last created date--------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Last Created date&lt;/P&gt;&lt;P&gt;let Last_Created_Date = peek('created_at',-1,'RequestedTrips');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IncrementalData:&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;load *;&lt;/P&gt;&lt;P&gt;sql&lt;/P&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;&amp;nbsp; `requested_trips`.`id` as "Trip ID",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; `requested_trips`.`start_date` as "Trip Start Date",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; convert_tz(`requested_trips`.`created_at`,'+00:00','+05:30') as "created_at",&lt;/P&gt;&lt;P&gt;&amp;nbsp; convert_tz(`requested_trips`.`updated_at`,'+00:00','+05:30') as "updated_at"&lt;/P&gt;&lt;P&gt;FROM requested_trips&lt;/P&gt;&lt;P&gt;where created_at &amp;gt; $(Last_Created_Date);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;Resident RequestedTrips&lt;/P&gt;&lt;P&gt;where not Exists(Trip ID);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table RequestedTrips;&lt;/P&gt;&lt;P&gt;Rename table IncrementalData to RequestedTrips;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;need Help..?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 May 2016 09:15:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114138#M1867</guid>
      <dc:creator />
      <dc:date>2016-05-21T09:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to load only updated data from MySql to qlik Sense and update Dashboard?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114139#M1868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You commented out the section that would create the table &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;RequestedTrips. That means that table is not created and that's the reason you can load any data from it using a resident load.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;need Help..?&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;No thanks. I'm fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 May 2016 16:47:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-updated-data-from-MySql-to-qlik-Sense-and/m-p/1114139#M1868</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-05-21T16:47:24Z</dc:date>
    </item>
  </channel>
</rss>

