<?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: Slow xls load only in QV Server in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94294#M15159</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad you found a solution. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Aug 2018 13:23:58 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2018-08-17T13:23:58Z</dc:date>
    <item>
      <title>Slow xls load only in QV Server</title>
      <link>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94289#M15154</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;I have a script that loads data from about 8 xls files. For some reason, it is really slow in QV Server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I run the script in my computer, it takes a less than a minute to load the data&lt;/P&gt;&lt;P&gt;When I load it in the QV Server, by openin QV Desktop on the server, it takes about 15 minutes only in the xls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm always running the same file with the same data.&lt;/P&gt;&lt;P&gt;I've checked the CPU (2-4%), RAM (10 Gb Free) and Network (2 Mb/s usage) of the server, but it is fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The xls files are on a second server. To test connectivity, I've copied the xls to the QV Server, and it took only 3 seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reload in my computer: &lt;/STRONG&gt;(about 3 minutes in reload all the script)&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QV Computer.png" class="jive-image image-1" height="276" src="/legacyfs/online/211085_QV Computer.png" style="height: 276.358px; width: 334px;" width="334" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reload in Server: &lt;STRONG&gt; &lt;/STRONG&gt;&lt;/STRONG&gt;(about 17 minutes in reload all the script)&lt;/P&gt;&lt;P&gt;-Slow only in the part that loads the xls files.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QV Server.jpg" class="jive-image image-2" height="352" src="/legacyfs/online/211086_QV Server.jpg" style="height: 352px; width: 335.238px;" width="335" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;This is the part of the code that is causing the problem in the server:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;SET RepositorioXLS = '\\HV-SERVER-CM\comex$\Archivos ASOEX';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CargaAsoex:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [CampoTemporal];&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;FOR each File in filelist(RepositorioXLS&amp;amp; '\T*--*-*-* al *-*-*.xls')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (CargaAsoex)&lt;/P&gt;&lt;P&gt;LOAD right(left(mid('$(File)',index('$(File)','\',-1)+1),5),4) as %pate_tempor,&lt;/P&gt;&lt;P&gt;ESPECIES,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VARIEDAD,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CAJAS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; KG.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORTADOR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [REGION DESTINO],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [PUERTO DESTINO],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [PAIS DESTINO],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECIBIDOR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NAVE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [TIPO NAVE],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SEMANA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FECHA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [PUERTO EMBARQUE],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileTime('$(File)') as FechaArchivo&lt;/P&gt;&lt;P&gt;FROM [$(File)] (biff, embedded labels, table is Asoex$)&lt;/P&gt;&lt;P&gt;Where right(left(mid('$(File)',index('$(File)','\',-1)+1),5),4)&amp;gt;=$(vAñoInicio)-3;&lt;/P&gt;&lt;P&gt;NEXT File&lt;/P&gt;&lt;P&gt;DROP FIELD CampoTemporal;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2018 15:58:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94289#M15154</guid>
      <dc:creator>cristian_av</dc:creator>
      <dc:date>2018-08-16T15:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Slow xls load only in QV Server</title>
      <link>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94290#M15155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds like a slow network connection. Have you tested with the excel files located in a directory on your QV server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2018 17:11:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94290#M15155</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-08-16T17:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Slow xls load only in QV Server</title>
      <link>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94291#M15156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've just tried it.. with no luck!&lt;/P&gt;&lt;P&gt;Any other idea?&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2018 20:10:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94291#M15156</guid>
      <dc:creator>cristian_av</dc:creator>
      <dc:date>2018-08-16T20:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Slow xls load only in QV Server</title>
      <link>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94292#M15157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean 'with no luck'? You can't put the excel files on the server? The reload fails? Or it all works, but just as slow as before?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2018 05:07:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94292#M15157</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-08-17T05:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: Slow xls load only in QV Server</title>
      <link>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94293#M15158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry!&lt;/P&gt;&lt;P&gt;All works, but just as slow!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally I've changed the format to xlsx and it works fine. Don't know why.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Acoording to this, it seems to be something tricky with xls (biff) files.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/75785"&gt;Bad Zip File Error from reading XLS files&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2018 12:48:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94293#M15158</guid>
      <dc:creator>cristian_av</dc:creator>
      <dc:date>2018-08-17T12:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Slow xls load only in QV Server</title>
      <link>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94294#M15159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad you found a solution. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2018 13:23:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Slow-xls-load-only-in-QV-Server/m-p/94294#M15159</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-08-17T13:23:58Z</dc:date>
    </item>
  </channel>
</rss>

