<?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 how to load huge data from oracle with insert and update !!! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-load-huge-data-from-oracle-with-insert-and-update/m-p/1597750#M736553</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have over 150 millions rows daily to make insert or update scenario .&lt;/P&gt;&lt;P&gt;is there any best way to handle these things in qlik or similar to SQL , we can use Update syntax.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 20:32:45 GMT</pubDate>
    <dc:creator>qliklearnervir</dc:creator>
    <dc:date>2024-11-16T20:32:45Z</dc:date>
    <item>
      <title>how to load huge data from oracle with insert and update !!!</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-load-huge-data-from-oracle-with-insert-and-update/m-p/1597750#M736553</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have over 150 millions rows daily to make insert or update scenario .&lt;/P&gt;&lt;P&gt;is there any best way to handle these things in qlik or similar to SQL , we can use Update syntax.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-load-huge-data-from-oracle-with-insert-and-update/m-p/1597750#M736553</guid>
      <dc:creator>qliklearnervir</dc:creator>
      <dc:date>2024-11-16T20:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to load huge data from oracle with insert and update !!!</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-load-huge-data-from-oracle-with-insert-and-update/m-p/1607246#M736554</link>
      <description>&lt;P&gt;We do not recommend using QilkView for updating of backend data sources, we are primarily an analytics tool, not a database update tool, so not really sure what you are attempting to do, but I would believe it is likely best done using straight SQL in the DB side.&amp;nbsp; If you can provide further information regarding the full use case here, we may be able to provide a better answer, but this is the best I can do at the moment.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is possible to make SQL Execute and other calls from our script editor, but you must enable the setting in the attached screenshot in that case, but again, this is not something we recommend doing.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 21:22:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-load-huge-data-from-oracle-with-insert-and-update/m-p/1607246#M736554</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-07-29T21:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to load huge data from oracle with insert and update !!!</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-load-huge-data-from-oracle-with-insert-and-update/m-p/1607283#M736555</link>
      <description>&lt;P&gt;Hi Vir,&lt;/P&gt;&lt;P&gt;As you know we (QlikView) will create Reports with the help of existing Data base /Tables and we have the capability inbuilt &lt;STRONG&gt;ETL&lt;/STRONG&gt; (Extraction, Transformation, Loading)process in QV.&lt;/P&gt;&lt;P&gt;But we will support this a very little bit like Creating &lt;STRONG&gt;Incremental Load&lt;/STRONG&gt; ,&lt;STRONG&gt;Simple Joins,Concatenation&lt;/STRONG&gt;...etc.&lt;/P&gt;&lt;P&gt;So my recommendation to you is, Request either DB team/ETL team to finish the update things at DB level and get the data from that updated DB tables into QlikView script.&lt;/P&gt;&lt;P&gt;UPDATE Syntax&lt;/P&gt;&lt;DIV class="w3-example"&gt;&lt;DIV class="w3-code notranslate sqlHigh"&gt;&lt;SPAN class="sqlcolor"&gt;&lt;SPAN class="sqlkeywordcolor"&gt;UPDATE&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;table_name&lt;/EM&gt;&lt;BR /&gt;&lt;SPAN class="sqlkeywordcolor"&gt;SET&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;column1&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;=&lt;EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;value1&lt;/EM&gt;,&lt;EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column2&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;=&lt;EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;value2&lt;/EM&gt;, ...&lt;BR /&gt;&lt;SPAN class="sqlkeywordcolor"&gt;WHERE&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;condition&lt;/EM&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="w3-code notranslate sqlHigh"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="w3-panel w3-note"&gt;&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Be careful when updating records in a table! Notice the WHERE clause in the UPDATE statement. The WHERE clause specifies which record(s) that should be updated. If you omit the WHERE clause, all records in the table will be updated!&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 05:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-load-huge-data-from-oracle-with-insert-and-update/m-p/1607283#M736555</guid>
      <dc:creator>ramasaisaksoft</dc:creator>
      <dc:date>2019-07-30T05:39:44Z</dc:date>
    </item>
  </channel>
</rss>

