<?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: Limit SQL Rows Loaded in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838585#M997714</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the feedback and clearing up the difference between LOAD statement and SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code above when run end ups with "client out of memory" error.&lt;/P&gt;&lt;P&gt;From your explanation I now understand that i need to limit the load within the SQL code rather than through a Qlik statement.&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jun 2015 06:17:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-06-18T06:17:38Z</dc:date>
    <item>
      <title>Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838583#M997712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been tasked with loading the old script into Qlik and am having some trouble as there are over 10million rows in the subquery.&lt;/P&gt;&lt;P&gt;What i need is to limit the data loaded during testing as my 6GB of RAM is not enough. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My questions are as follows:&lt;/P&gt;&lt;P&gt;1. Looking at the code bellow have you used the correct code / code structure to achieve what is needed.&lt;/P&gt;&lt;P&gt;2. How do i limit the ROW's loaded for testing purposes. I have looked at "FIRST" and "BUFFER" but do not see those helping. What am i missing here. I have tested the code in MySQL Workbench with a load limit and all works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;OLD SCRIPT&lt;/STRONG&gt; - Some sort of reporting system&lt;/P&gt;&lt;P&gt;pricing&lt;/P&gt;&lt;P&gt;SELECT &lt;/P&gt;&lt;P&gt;`stock_management1`.`st_prodcode`, &lt;/P&gt;&lt;P&gt;`stock_management1`.`st_sdesc`, &lt;/P&gt;&lt;P&gt;`stock_management1`.`st_mstockist`, &lt;/P&gt;&lt;P&gt;`stock_management1`.`APS_rol`, &lt;/P&gt;&lt;P&gt;`stock_management1`.`APS_eoq`, &lt;/P&gt;&lt;P&gt;`stock_management1`.`APS_ms`&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp;&amp;nbsp; `pricing`.`stock_management` `stock_management1`&lt;/P&gt;&lt;P&gt;WHERE&amp;nbsp; (`stock_management1`.`st_mstockist`='BRA' &lt;/P&gt;&lt;P&gt;OR `stock_management1`.`st_mstockist`='FCS' &lt;/P&gt;&lt;P&gt;OR `stock_management1`.`st_mstockist`='FKE') &lt;/P&gt;&lt;P&gt;AND `stock_management1`.`APS_ms`&amp;gt;0&lt;/P&gt;&lt;P&gt;EXTERNAL JOIN&lt;/P&gt;&lt;P&gt;stock_management1.st_prodcode={?APS: ITEM1.ST_Prodcode} &lt;/P&gt;&lt;P&gt;AND stock_management1.st_prodcode={?FCS: stocktake1.S_ProdCode} &lt;/P&gt;&lt;P&gt;AND stock_management1.st_prodcode={?CENTRAL: Command.mv_PRODCODE}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;NEW QLIK CODE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;PRICING:&lt;/P&gt;&lt;P&gt;buffer SQL SELECT `APS_eoq`,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; `APS_ms`,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; `APS_rol`,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; stock_management.`st_mstockist`,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; stock_management.`st_prodcode`,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; stock_management.`st_sdesc`&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp; pricing.`stock_management`&lt;/P&gt;&lt;P&gt;Left Join (aps.`item`, cstores.`stocktake`, central.`mvmnt`) &lt;/P&gt;&lt;P&gt;ON pricing.`stock_management`.`st_prodcode` = aps.`item`.`ST_Prodcode` &lt;/P&gt;&lt;P&gt;AND pricing.`stock_management`.`st_prodcode` = cstores.`stocktake`.`s_prodcode`&lt;/P&gt;&lt;P&gt;AND pricing.`stock_management`.`st_prodcode` IN (SELECT MV_PRODCODE&lt;/P&gt;&lt;P&gt;FROM central.`outstanding_stv`&lt;/P&gt;&lt;P&gt;INNER JOIN central.`mvmnt` on central.`mvmnt`.`MV_TRANNO` = central.`outstanding_stv`.`IS_INVNO`&lt;/P&gt;&lt;P&gt;WHERE R_BRANCH="APS")&lt;/P&gt;&lt;P&gt;WHERE `stock_management`.`APS_ms`&amp;gt;0 &lt;/P&gt;&lt;P&gt;AND `stock_management`.`st_mstockist`="BRA"&lt;/P&gt;&lt;P&gt;OR `stock_management`.`st_mstockist`="FCS"&lt;/P&gt;&lt;P&gt;OR `stock_management`.`st_mstockist`="FKE";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am fairly new to Qlik and any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 06:08:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838583#M997712</guid>
      <dc:creator />
      <dc:date>2015-06-17T06:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838584#M997713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUFFER and FIRST are LOAD statements, not SQL statements. Therefore, you should use them (and they are supposed to work like)&lt;/P&gt;&lt;P&gt;FIRST 100 LOAD *;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM Customers;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens in the code above? The SQL is executed first, and will pull from the database all the rows from table&amp;nbsp; Customers. However, QlikView will only put into memory the first 100 rows loaded, then it will drop the rest.&lt;/P&gt;&lt;P&gt;There is no rule of thumb but to sample and test, as you know, a "row" as such can be as big as several kilobytes or as small as a byte. But if you know that, and having read the following:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3632"&gt;The Importance Of Being Distinct&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2848"&gt;Symbol Tables and Bit-Stuffed Pointers&lt;/A&gt;&lt;/P&gt;&lt;P&gt;That could help.&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 12:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838584#M997713</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2015-06-17T12:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838585#M997714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the feedback and clearing up the difference between LOAD statement and SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code above when run end ups with "client out of memory" error.&lt;/P&gt;&lt;P&gt;From your explanation I now understand that i need to limit the load within the SQL code rather than through a Qlik statement.&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 06:17:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838585#M997714</guid>
      <dc:creator />
      <dc:date>2015-06-18T06:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838586#M997715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like in your dev machine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;FROM table_name&lt;/P&gt;&lt;P&gt;LIMIT 1000;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For loading first 1000 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: while migrating to production remove LIMIT 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 06:22:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838586#M997715</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-06-18T06:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838587#M997716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of hitting on the run button to load the data&lt;/P&gt;&lt;P&gt;go to the script editor&lt;/P&gt;&lt;P&gt;click on the Debug button&lt;/P&gt;&lt;P&gt;select limit load and enter the number of records you want to load&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 06:25:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838587#M997716</guid>
      <dc:creator>svenkita</dc:creator>
      <dc:date>2015-06-18T06:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838588#M997717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to limit the load we can use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Where condition based on one primary key/field from the table.&lt;/P&gt;&lt;P&gt;2. Debug mode, we can limit records: 20000(eg)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and run the task so that only limited number of records will be loaded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 06:30:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838588#M997717</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2015-06-18T06:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838589#M997718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using SQL server as your database you can try like this&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;PRICING:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT TOP 1000&amp;nbsp; `APS_eoq`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; `APS_ms`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; `APS_rol`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; stock_management.`st_mstockist`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; stock_management.`st_prodcode`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; stock_management.`st_sdesc`&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&amp;nbsp; pricing.`stock_management`&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left Join (aps.`item`, cstores.`stocktake`, central.`mvmnt`)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ON pricing.`stock_management`.`st_prodcode` = aps.`item`.`ST_Prodcode`&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND pricing.`stock_management`.`st_prodcode` = cstores.`stocktake`.`s_prodcode`&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND pricing.`stock_management`.`st_prodcode` IN (SELECT MV_PRODCODE&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM central.`outstanding_stv`&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;INNER JOIN central.`mvmnt` on central.`mvmnt`.`MV_TRANNO` = central.`outstanding_stv`.`IS_INVNO`&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE R_BRANCH="APS")&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE `stock_management`.`APS_ms`&amp;gt;0&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND `stock_management`.`st_mstockist`="BRA"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;OR `stock_management`.`st_mstockist`="FCS"&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;OR `stock_management`.`st_mstockist`="FKE";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 06:50:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838589#M997718</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-06-18T06:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838590#M997719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem solved!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 07:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838590#M997719</guid>
      <dc:creator />
      <dc:date>2015-06-18T07:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838591#M997721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you got the answer please close this thread by giving Correct Answer to the post which helps you in finding the answer.&amp;nbsp; This helps others in identifying the correct answers easily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 07:22:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838591#M997721</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-06-18T07:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838592#M997723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 08:41:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/838592#M997723</guid>
      <dc:creator />
      <dc:date>2015-06-18T08:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Limit SQL Rows Loaded</title>
      <link>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/2076123#M1223831</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried this code and it works for me:&lt;/P&gt;
&lt;P&gt;Table:&lt;/P&gt;
&lt;P&gt;Load *&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;First 1000&lt;/P&gt;
&lt;P&gt;SQL Select&lt;/P&gt;
&lt;P&gt;*&lt;/P&gt;
&lt;P&gt;From table_name;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Alba&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 10:05:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limit-SQL-Rows-Loaded/m-p/2076123#M1223831</guid>
      <dc:creator>AlbaJPDupe</dc:creator>
      <dc:date>2023-05-25T10:05:49Z</dc:date>
    </item>
  </channel>
</rss>

