<?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 vs. QlikView for Complex Loads in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635067#M679031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think&amp;nbsp; that you can do almost everything in the sql (query or procedural language for very complex needs) or in qlikview; just 2 suggestions&amp;nbsp; &lt;/P&gt;&lt;P&gt;- knowledge of the tool (I remember your answers in the forum, you know very well qlik)&lt;/P&gt;&lt;P&gt;- relation between data processed (number of record) and number of records needed in qlikview; an example: processing on sql 1000000 of records and group by to get 10 records transferred in qlikview is very different from transfer all these records to qlik and group by in qlik&lt;/P&gt;&lt;P&gt;-and of course, try not to mix&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2014 16:56:57 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2014-05-15T16:56:57Z</dc:date>
    <item>
      <title>SQL vs. QlikView for Complex Loads</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635065#M679029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've just started a new job, and the load script is written in a completely different manner than it was at my old job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At my old job, we would have very simple SQL select statements, and would allow QV to do any transformations, joins, calculations, etc.:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Table:&lt;/P&gt;
&lt;P&gt;SQL Select * FROM SQLTable;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Left JOIN (Table)&lt;/P&gt;
&lt;P&gt;SQL Select * FROM SQLTable2;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At my new job, they have very complex SQL select statements, and do everything in SQL.&amp;nbsp; QlikView is stictly used just for displaying the data (not for doing any transformations, joins, calculations, etc. on the data itself):&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Table:&lt;/P&gt;
&lt;P&gt;SQL Select * FROM SQLTable s&lt;/P&gt;
&lt;P&gt;LEFT JOIN SQLTable2 s2 on s.Id = s2.Id;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My examples above are much simpler than anything that I've worked with, but it should at least give you an idea of what I'm talking about.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is one way better performance wise than the other?&amp;nbsp; Are there any concerns with doing it either way?&amp;nbsp; I'd just like to get the community's thoughts.&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>Thu, 15 May 2014 16:38:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635065#M679029</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-05-15T16:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: SQL vs. QlikView for Complex Loads</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635066#M679030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nicole,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First - congratulations with new job! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Next, I expect that join in SQL is faster than join in QV.&amp;nbsp; You can easily test this to prove me wrong.&amp;nbsp; At the same time, no matter how complex SQL's I use, there is always a lot of work left for transformations in the QV script itself...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 16:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635066#M679030</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-15T16:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: SQL vs. QlikView for Complex Loads</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635067#M679031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think&amp;nbsp; that you can do almost everything in the sql (query or procedural language for very complex needs) or in qlikview; just 2 suggestions&amp;nbsp; &lt;/P&gt;&lt;P&gt;- knowledge of the tool (I remember your answers in the forum, you know very well qlik)&lt;/P&gt;&lt;P&gt;- relation between data processed (number of record) and number of records needed in qlikview; an example: processing on sql 1000000 of records and group by to get 10 records transferred in qlikview is very different from transfer all these records to qlik and group by in qlik&lt;/P&gt;&lt;P&gt;-and of course, try not to mix&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 16:56:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635067#M679031</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-05-15T16:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: SQL vs. QlikView for Complex Loads</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635068#M679032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I agree that transformations may run faster in SQL than in QV, however I think that the answer of which approach is better is &lt;STRONG&gt;It depends. &lt;/STRONG&gt;If you already have, for example, an environment with a datawarehouse and a DBA who can&lt;/P&gt;&lt;P&gt;create queries, store procedures, custom tables, views etc, then take that into advantage and focus QV in visualization. On the other hand, if you're working with plenty XLS docs, several descentralized databases, then probably the best way would be to use QlikView for the whole ETL process, and just like &lt;A href="https://community.qlik.com/qlik-users/10670"&gt;Massimo Grossi&lt;/A&gt; said, whatever approach you use, try no to mix them,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 17:51:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635068#M679032</guid>
      <dc:creator>jaimeaguilar</dc:creator>
      <dc:date>2014-05-15T17:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: SQL vs. QlikView for Complex Loads</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635069#M679033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2014 19:44:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-vs-QlikView-for-Complex-Loads/m-p/635069#M679033</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-05-16T19:44:01Z</dc:date>
    </item>
  </channel>
</rss>

