<?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: SQL Scripting how improve the performance of SQL Queries or Incrementals to SQL Query in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752811#M268268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Max_TS:&lt;/P&gt;&lt;P&gt;Load Max(Timestamp_field) As Max_Timestamp From YourQvd.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vMaxTS=Peek('Max_Timestamp',0,'Max_TS');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tbl:&lt;/P&gt;&lt;P&gt;Sql Select Key,Field1,... From Table Where Timestamp &amp;gt; To_date('$(vMaxTS)','timestamp_format');&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;Load * From YourQvd.qvd(qvd) Where Not Exists(Key);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store Tbl into YourQvd.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Jan 2015 05:58:56 GMT</pubDate>
    <dc:creator>anbu1984</dc:creator>
    <dc:date>2015-01-08T05:58:56Z</dc:date>
    <item>
      <title>SQL Scripting how improve the performance of SQL Queries or Incrementals to SQL Query</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752808#M268265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want expert advise for how to improve SQL query performance We have sql data which takes approx 1 hour to pull&lt;/P&gt;&lt;P&gt;into qvd to overcome this situation can any one give idea how to implement the incremental load for SQL query to get faster data into qvd's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in adv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vikas &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 04:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752808#M268265</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2015-01-08T04:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Scripting how improve the performance of SQL Queries or Incrementals to SQL Query</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752809#M268266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have timestamp in your source table to identify new/updated records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes, then identify max(Timestamp) of previous load from your QVD file and use the same in your Sql to retrieve anything inserted/updated after max timestamp from your table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 05:28:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752809#M268266</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-01-08T05:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Scripting how improve the performance of SQL Queries or Incrementals to SQL Query</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752810#M268267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;timestamp in Sql Tables , Please Guide me how to write in script.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 05:46:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752810#M268267</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2015-01-08T05:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Scripting how improve the performance of SQL Queries or Incrementals to SQL Query</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752811#M268268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Max_TS:&lt;/P&gt;&lt;P&gt;Load Max(Timestamp_field) As Max_Timestamp From YourQvd.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vMaxTS=Peek('Max_Timestamp',0,'Max_TS');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tbl:&lt;/P&gt;&lt;P&gt;Sql Select Key,Field1,... From Table Where Timestamp &amp;gt; To_date('$(vMaxTS)','timestamp_format');&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;Load * From YourQvd.qvd(qvd) Where Not Exists(Key);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store Tbl into YourQvd.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 05:58:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752811#M268268</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-01-08T05:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Scripting how improve the performance of SQL Queries or Incrementals to SQL Query</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752812#M268269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vikas,&lt;/P&gt;&lt;P&gt;Here is the incremental Load concent with all steps &lt;/P&gt;&lt;P&gt;in the same way by instead od date field use Timestamp to performa the task.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 07:16:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Scripting-how-improve-the-performance-of-SQL-Queries-or/m-p/752812#M268269</guid>
      <dc:creator />
      <dc:date>2015-01-08T07:16:59Z</dc:date>
    </item>
  </channel>
</rss>

