<?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 'Execution of Script Failed. Reload old data?' error message in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330111#M121597</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This error is commonly seen during development. What happens is you are developing a script and on reload you have some type of understandable error -- like a syntax error. You fix the error and reload but then start to receive the dreaded "General script error". This is usually due to the files (usually a QVD) being left locked by the first script failure. You can clear this problem up by exiting QV and starting again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jun 2012 15:06:37 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2012-06-07T15:06:37Z</dc:date>
    <item>
      <title>'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330106#M121592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting the following error message in QlikView when I do an incremental reload to an exsiting QVD: &lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="15094" alt="QVError.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/15094_QVError.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I find this error to be the most ambigious error ever! Just thought I should clear that up as this error frustrates me as it is not clear what it means. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a QVD which has all historic data stored in the same directory as my QVW. I am loading csv and Excel files which match the data structure of the QVD. The fields are exactly the same and the formats for each field are exaclty the same as the QVD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following is my code for setting up the historic QVD location and getting the maximum date when the data was last loaded. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;let vQVDPath='.\User_Data_Historic.qvd';&amp;nbsp;&amp;nbsp;&amp;nbsp; //?? The QVD filename &lt;/P&gt;&lt;P&gt;LET vExecution = now();&lt;/P&gt;&lt;P&gt;set vLastExecTime = 0;&lt;/P&gt;&lt;P&gt;if not isnull(QVDCreateTime('$(vQVDPath)')) then&lt;/P&gt;&lt;P&gt;LoadTime:&lt;/P&gt;&lt;P&gt;load max(date(User_CalendarDate)) as User_CalendarDate&lt;/P&gt;&lt;P&gt;from $(vQVDPath)(qvd);&lt;/P&gt;&lt;P&gt;let vLastExecTime = peek('User_CalendarDate', 0, 'LoadTime');&lt;/P&gt;&lt;P&gt;drop table LoadTime ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;noconcatenate load &lt;/P&gt;&lt;P&gt;U_ID,&lt;/P&gt;&lt;P&gt;[User_CalendarDate],&lt;/P&gt;&lt;P&gt;User_ID,&lt;/P&gt;&lt;P&gt;[User_Registration_Date],&lt;/P&gt;&lt;P&gt;ONLINE_ID, &lt;/P&gt;&lt;P&gt;[Login],&lt;/P&gt;&lt;P&gt;[POSTS],&lt;/P&gt;&lt;P&gt;[PAGE],&lt;/P&gt;&lt;P&gt;[LOGINS],&lt;/P&gt;&lt;P&gt;[MINUTES], &lt;/P&gt;&lt;P&gt;User_ACCEPTED,&lt;/P&gt;&lt;P&gt;User_GIVEN,&lt;/P&gt;&lt;P&gt;User_RECEIVED, &lt;/P&gt;&lt;P&gt;[User_NOTES],&lt;/P&gt;&lt;P&gt;Flag&lt;/P&gt;&lt;P&gt;resident MyTable where&amp;nbsp; [User_CalendarDate] &amp;gt;= '$(vLastExecTime)' and [User_CalendarDate] &amp;lt; '$(vExecution)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table MyTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next step is to append the data, evaluating the load time for the QVD on the last load. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;if not isnull(QvdCreateTime('$(vQVDPath)')) then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate (Data) load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* from $(vQVDPath) (qvd) where not exists(U_ID);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if NoOfRows('Data') &amp;gt; 0 then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store Data into $(vQVDPath) (qvd); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above is the load of new data. I have concatenated two Excel files together to form one table which should be appended to the historic QVD. Data should be loaded where the Calendar Date in the new data is higher than the maximum date in the historic QVD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After reloading my script I get the 'Execution of Script Load' error and I have used this exact code for another dataset and I have encountered no error and runs fine. After reading many posts on the QlikCommunity, I have exhausted the many possible reasons into why I get the error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does someone know why this is happening only on this load and not on other loads? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2012 12:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330106#M121592</guid>
      <dc:creator />
      <dc:date>2012-05-30T12:59:50Z</dc:date>
    </item>
    <item>
      <title>'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330107#M121593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, &lt;/P&gt;&lt;P&gt;Did you try to enable log files? Maybe the you can get more details on the point where your script if failling. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To enable it, go to settings - &amp;gt; Document properties -&amp;gt; General Tab -&amp;gt; check 'Enable log file'&lt;/P&gt;&lt;P&gt;After a reload (or when you try it) a file with the same name of your qvw but with the extension .log will be generated in the same folder of your qvw. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you post your results here it might be easier to help you.&lt;/P&gt;&lt;P&gt;From your script, I'd say it is problably during your store command. The file might be blocked or the path was not accepted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 01:21:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330107#M121593</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2012-05-31T01:21:34Z</dc:date>
    </item>
    <item>
      <title>'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330108#M121594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used your solution to enable log files. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miraculously the script works fine now and all my newly loaded data is being appended to my historic QVD. The path I use for storing and accessing the QVD is accessible and like I said in my previous post it is used in other QlikView documents successfully with no problems. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This error is unexplained and is a hidden 'Easter Egg' that the guys at Qliktech have planted! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply Erich. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 10:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330108#M121594</guid>
      <dc:creator />
      <dc:date>2012-06-07T10:01:50Z</dc:date>
    </item>
    <item>
      <title>'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330109#M121595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sometimes the file your qvw document try to write, is locked by someone else, that is writing too.&lt;/P&gt;&lt;P&gt;It happen very often to me, because I use more than one qv.exe istance in the same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, the error reported by QlikView is exactly what you get &lt;/P&gt;&lt;P&gt;Could be the same as your experience ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 10:23:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330109#M121595</guid>
      <dc:creator>robertomontanar</dc:creator>
      <dc:date>2012-06-07T10:23:47Z</dc:date>
    </item>
    <item>
      <title>'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330110#M121596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roberto&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your answer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To confirm, there are no other instances of QV.Exe or QVConnect in the task scheduler. This was the first thing I had checked. I agree that having more than one process for QV creates this error and I have experienced this before. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I usually try all possible avenues before I come on the community for a solution. To be honest, this error is ambigious as there is not a documented reason for this to occur. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 13:43:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330110#M121596</guid>
      <dc:creator />
      <dc:date>2012-06-07T13:43:24Z</dc:date>
    </item>
    <item>
      <title>'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330111#M121597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This error is commonly seen during development. What happens is you are developing a script and on reload you have some type of understandable error -- like a syntax error. You fix the error and reload but then start to receive the dreaded "General script error". This is usually due to the files (usually a QVD) being left locked by the first script failure. You can clear this problem up by exiting QV and starting again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 15:06:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330111#M121597</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-06-07T15:06:37Z</dc:date>
    </item>
    <item>
      <title>'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330112#M121598</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;That's certainly an ambiguous error message that means no more and no less than "something went wrong". The first step I always take when the issue is not obvious is to peform a limited debug load, with 100 records or even less, step by step to see where the script ends, and what values are the variables storing, how many records are being pulled from the sources, whether or not the connections are taking place, the files are stored properly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try that to see where the script crashes or what happens just after the load? You are using time functions like QvdCreateTime() to check when the file was created. Is there any chance that the difference between the successful and failed loads is in the OS time or local time settings?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the script variable "ScriptError" to check if you can get a reason according to those documented in the Reference Manual.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that makes some sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 15:16:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330112#M121598</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-06-07T15:16:36Z</dc:date>
    </item>
    <item>
      <title>'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330113#M121599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sometimes, deleting the previously created qvd before doing a reload also helps since qv has locked the qvd and does not overwrite it automatically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 16:04:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330113#M121599</guid>
      <dc:creator />
      <dc:date>2012-06-07T16:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330114#M121600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jasleen, this tip helped me out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 14:35:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330114#M121600</guid>
      <dc:creator />
      <dc:date>2012-09-28T14:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330115#M121601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am glad it help. Its one of those quirky things.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 18:01:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330115#M121601</guid>
      <dc:creator />
      <dc:date>2012-09-28T18:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330116#M121602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mostly it happens due to lock problem only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes, after modifying script when try to run the script and it gets failed, at times, log files get locked. And whenever we start reloading, immediately it says 'Execution of Script Failed'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To solve this problem, You can try either of followings : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If your log file generation is enabled, and you already have log file generated for previous execution, try to delete that log file. Possibly it won't allow you to delete. Hence, uncheck the option to generate log file and it'll work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Also, you can simply rename the document or generate a copy with some other name and it'll work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 07:37:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330116#M121602</guid>
      <dc:creator />
      <dc:date>2013-04-18T07:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330117#M121603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mostly it happens due to lock problem only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes, after modifying script when try to run the script and it gets failed, at times, log files get locked. And whenever we start reloading, immediately it says 'Execution of Script Failed'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To solve this problem, You can try either of followings : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If your log file generation is enabled, and you already have log file generated for previous execution, try to delete that log file. Possibly it won't allow you to delete. Hence, uncheck the option to generate log file and it'll work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Also, you can simply rename the document or generate a copy with some other name and it'll work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 07:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330117#M121603</guid>
      <dc:creator />
      <dc:date>2013-04-18T07:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330118#M121604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mostly it happens due to lock problem only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes, after modifying script when try to run the script and it gets failed, at times, log files get locked. And whenever we start reloading, immediately it says 'Execution of Script Failed'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To solve this problem, You can try either of followings : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If your log file generation is enabled, and you already have log file generated for previous execution, try to delete that log file. Possibly it won't allow you to delete. Hence, uncheck the option to generate log file and it'll work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Also, you can simply rename the document or generate a copy with some other name and it'll work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 07:43:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330118#M121604</guid>
      <dc:creator />
      <dc:date>2013-04-18T07:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330119#M121605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mostly it happens due to lock problem only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes, after modifying script when try to run the script and it gets failed, at times, log files get locked. And whenever we start reloading, immediately it says 'Execution of Script Failed'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To solve this problem, You can try either of followings : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If your log file generation is enabled, and you already have log file generated for previous execution, try to delete that log file. Possibly it won't allow you to delete. Hence, uncheck the option to generate log file and it'll work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Also, you can simply rename the document or generate a copy with some other name and it'll work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hardik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 08:16:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330119#M121605</guid>
      <dc:creator />
      <dc:date>2013-04-18T08:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330120#M121606</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 got exactly the same message after reloading the full script, which showed no errors. In the log files, there are no hints about what went wrong, but I reviewed carefully the sript and realised there were a "store" statement indicating a wrong path. I commented it and then the script worked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 11:33:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330120#M121606</guid>
      <dc:creator>felcar2013</dc:creator>
      <dc:date>2013-06-11T11:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330121#M121607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the location of the Qlikview log folder ? Is there a log folder on my local computer ? I could not find an answer on google.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 20:34:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330121#M121607</guid>
      <dc:creator />
      <dc:date>2014-03-17T20:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330122#M121608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, jasleen's method did not work for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 20:35:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330122#M121608</guid>
      <dc:creator />
      <dc:date>2014-03-17T20:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330123#M121609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my case I was able to resolve by following below approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i commented code after main tab and executed&lt;/P&gt;&lt;P&gt;slowly progressed by one tab at a time, finally I was able to successfully execute the complete script. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't ask me the logic behind this, but it worked &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2014 04:55:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330123#M121609</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2014-09-18T04:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330124#M121610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried every suggestion above. What im doing is through Hive sql database, connecting to two dbo's. if I import only one, it works, yet when I try to import both, either separate or by Multipule select statements. Both table have identicile column names as the one is current and the other is archived data.&lt;/P&gt;&lt;P&gt;Any other suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 08:35:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330124#M121610</guid>
      <dc:creator />
      <dc:date>2014-11-14T08:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: 'Execution of Script Failed. Reload old data?' error message</title>
      <link>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330125#M121611</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;the use of trace is important when developing in QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1 style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Trace&lt;/H1&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;trace&lt;/SPAN&gt; statement writes &lt;SPAN class="Italic" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;string&lt;/SPAN&gt; to the &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Script Execution Progress&lt;/SPAN&gt; window and to the script log file, when used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The syntax is:&lt;/P&gt;&lt;P class="syntax"&gt;&lt;/P&gt;&lt;P class="syntax" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;trace&lt;/SPAN&gt;&lt;SPAN class="Italic" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; string&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="example"&gt;&lt;/P&gt;&lt;P class="example" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Examples:&lt;/P&gt;&lt;P class="Code" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;trace Main table loaded;&lt;/P&gt;&lt;P class="Code" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;trace $(MyMessage);&lt;/P&gt;&lt;P class="Code" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P class="Code" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards&lt;/P&gt;&lt;P class="Code" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P class="Code" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;André Gomes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 08:40:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Execution-of-Script-Failed-Reload-old-data-error-message/m-p/330125#M121611</guid>
      <dc:creator>agomes1971</dc:creator>
      <dc:date>2014-11-14T08:40:06Z</dc:date>
    </item>
  </channel>
</rss>

