<?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 Out Of Virtual Memory (boot.ini) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211152#M65515</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gabriel, but when I import 11 files this problem does not occur.&lt;BR /&gt;&lt;BR /&gt;I changed the code and managed to import 16 of the 18 files without problem, but in 17 the problem occurred again.&lt;BR /&gt;&lt;BR /&gt;You know how to use the boot.ini?&lt;BR /&gt;if yes, please explain how to use it.&lt;BR /&gt;&lt;BR /&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Oct 2009 23:40:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-10-08T23:40:40Z</dc:date>
    <item>
      <title>Out Of Virtual Memory (boot.ini)</title>
      <link>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211150#M65513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV dir="ltr"&gt;I use QlikView to import multiple text files with more than 1.5 million lines and the message OUT OF VIRTUAL MEMORY always seems to mind when the 12th file.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I read other topics about the same problem and noticed that to try to solve the problem you must edit the boot.ini file and change the value of the variable QVM to 3Gb.&lt;BR /&gt;I tried this file (boot.ini) on my machine and did not find it, can someone pass me an example?&lt;BR /&gt;&lt;BR /&gt;Following is the script load.&lt;BR /&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;inicio=374;&lt;BR /&gt;final=380;&lt;BR /&gt;for cont=inicio to final step 2&lt;BR /&gt; //Carregar novos registros&lt;BR /&gt; [base]:&lt;BR /&gt; LOAD&lt;BR /&gt; num(@112:119T,'00000000') &amp;amp;&lt;BR /&gt; num(@173:178T,'000000') &amp;amp;&lt;BR /&gt; num(@179:180T,'00') as [Link-Pagamentos],&lt;BR /&gt; num(@112:119T,'00000000') &amp;amp;&lt;BR /&gt; num(@173:178T,'000000') &amp;amp;&lt;BR /&gt; num(@179:180T,'00') as [PP37-ID],&lt;BR /&gt; num(@1:2T) as [PP37-TP],&lt;BR /&gt; @4:4T as [PP37-Estrela],&lt;BR /&gt; num(@105:107T) as [[PP37-Banco],&lt;BR /&gt; num(@108:111T) as [PP37-Setor],&lt;BR /&gt; @112:119T as [PP37-RA-Registro],&lt;BR /&gt; @120:169T as [PP37-RA-Nome],&lt;BR /&gt; num(@170:172T,'000') as [PP37-RA-LOS],&lt;BR /&gt; num(@173:178T,'000000') as [PP37-OrderID],&lt;BR /&gt; num(@179:180T,'00') as [PP37-CP],&lt;BR /&gt; @181:184T as [PP37-CP-Ano],&lt;BR /&gt; @179:180T &amp;amp; '/' &amp;amp; @181:184T as [PP37-CP-FMT],&lt;BR /&gt; num(@181:184T &amp;amp; @179:180T) as [PP37-CP-ORD],&lt;BR /&gt; date(left(@185:192T,2) &amp;amp; '/' &amp;amp;&lt;BR /&gt; mid(@185:192T,3,2) &amp;amp; '/' &amp;amp;&lt;BR /&gt; right(@185:192T,4)) as [PP37-DT-Fat],&lt;BR /&gt; date(left(@193:200T,2) &amp;amp; '/' &amp;amp;&lt;BR /&gt; mid(@193:200T,3,2) &amp;amp; '/' &amp;amp;&lt;BR /&gt; right(@193:200T,4)) as [PP37-DT-Venc],&lt;BR /&gt; date(left(@201:208T,2) &amp;amp; '/' &amp;amp;&lt;BR /&gt; mid(@201:208T,3,2) &amp;amp; '/' &amp;amp;&lt;BR /&gt; right(@201:208T,4)) as [PP37-DT-Val],&lt;BR /&gt; money(num(@209:219T)/100) as [PP37-vlr-Fat],&lt;BR /&gt; money(num(@220:230T)/100) as [PP37-vlr-Deb],&lt;BR /&gt; money(num(@231:241T)/100) as [PP37-vlr-Pagto-Parcial],&lt;BR /&gt; money(num(@242:252T)/100) as [PP37-vlr-Saldo],&lt;BR /&gt; @367:367T as [PP37-MB],&lt;BR /&gt; filebasename() as [PP37-Arquivo-Nome]&lt;BR /&gt; FROM C:\Temp\PP37\PP37A$(cont).TXT (ansi, fix, no labels, header is 0, record is line);&lt;BR /&gt; JOIN LOAD&lt;BR /&gt; [PP37-ID],&lt;BR /&gt; [PP37-TP],&lt;BR /&gt; [PP37-Estrela],&lt;BR /&gt; [PP37-Setor],&lt;BR /&gt; [PP37-RA-Registro],&lt;BR /&gt; [PP37-RA-Nome],&lt;BR /&gt; [PP37-RA-LOS],&lt;BR /&gt; [PP37-OrderID],&lt;BR /&gt; [PP37-CP],&lt;BR /&gt; [PP37-CP-Ano],&lt;BR /&gt; [PP37-CP-FMT],&lt;BR /&gt; [PP37-CP-ORD],&lt;BR /&gt; [PP37-DT-Fat],&lt;BR /&gt; [PP37-DT-Venc],&lt;BR /&gt; [PP37-DT-Val],&lt;BR /&gt; [PP37-vlr-Fat],&lt;BR /&gt; [PP37-vlr-Deb],&lt;BR /&gt; [PP37-vlr-Pagto-Parcial],&lt;BR /&gt; [PP37-vlr-Saldo],&lt;BR /&gt; [PP37-MB],&lt;BR /&gt; [PP37-Arquivo-Nome]&lt;BR /&gt; FROM C:\QVD\pp37.qvd (qvd)&lt;BR /&gt; WHERE NOT exists([PP37-ID]);&lt;BR /&gt; store * from base into c:\qvd\pp37.qvd;&lt;BR /&gt; drop table base;&lt;BR /&gt;next&lt;/PRE&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;Marco&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2009 20:42:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211150#M65513</guid>
      <dc:creator />
      <dc:date>2009-10-08T20:42:40Z</dc:date>
    </item>
    <item>
      <title>Out Of Virtual Memory (boot.ini)</title>
      <link>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211151#M65514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marco. Sometimes the "Out of Virtual Memory" in the reload process is a problem with the data model. In order to discard this situation, I recommend you to run the reload process in debug mode, for 10 rows for example and to check if you have Syntetics Keys in the data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2009 21:46:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211151#M65514</guid>
      <dc:creator>GabrielAraya</dc:creator>
      <dc:date>2009-10-08T21:46:05Z</dc:date>
    </item>
    <item>
      <title>Out Of Virtual Memory (boot.ini)</title>
      <link>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211152#M65515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gabriel, but when I import 11 files this problem does not occur.&lt;BR /&gt;&lt;BR /&gt;I changed the code and managed to import 16 of the 18 files without problem, but in 17 the problem occurred again.&lt;BR /&gt;&lt;BR /&gt;You know how to use the boot.ini?&lt;BR /&gt;if yes, please explain how to use it.&lt;BR /&gt;&lt;BR /&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2009 23:40:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211152#M65515</guid>
      <dc:creator />
      <dc:date>2009-10-08T23:40:40Z</dc:date>
    </item>
    <item>
      <title>Out Of Virtual Memory (boot.ini)</title>
      <link>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211153#M65516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, In boot.ini file, you should have a line similar to:multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Microsoft Windows XP Professional" /noexecute=optin /fastdetect yo need to add at the end of the line: /3GB .&lt;/P&gt;&lt;P&gt;multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Microsoft Windows XP Professional" /noexecute=optin /fastdetect/3GB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2009 01:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Out-Of-Virtual-Memory-boot-ini/m-p/211153#M65516</guid>
      <dc:creator>GabrielAraya</dc:creator>
      <dc:date>2009-10-09T01:00:38Z</dc:date>
    </item>
  </channel>
</rss>

