<?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 Qlikview Reload in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170475#M40887</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Appears to me that it is failing becasue current_day is not defined in the sql select statement.&lt;/P&gt;&lt;P&gt;You would need to alias the sysdate field in teh sql select e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sydate1:&lt;BR /&gt;load&lt;BR /&gt;current_day;&lt;BR /&gt;SQL select sysdate as current_day from dual;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: Vlad got there first&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Aug 2010 22:03:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-08-21T22:03:27Z</dc:date>
    <item>
      <title>Qlikview Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170473#M40885</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 had received a Qlikview file in which a Table [Sample]: was created using the LOAD statement. It has the ODBC connect syntax to connect to the db.&lt;/P&gt;&lt;P&gt;But when i added one more table sysdate1, the RELOAD fails with a statement, Field not found error.&lt;/P&gt;&lt;P&gt;What are the steps i need to follow when I add to the existing table loads in the RELOAD script.&lt;/P&gt;&lt;P&gt;Follwing is the Reload script I Used,&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;BR /&gt;SET DecimalSep='.';&lt;BR /&gt;SET MoneyThousandSep=',';&lt;BR /&gt;SET MoneyDecimalSep='.';&lt;BR /&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;BR /&gt;SET TimeFormat='h:mm:ss TT';&lt;BR /&gt;SET DateFormat='M/D/YYYY';&lt;BR /&gt;SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';&lt;BR /&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO GDWPRD (XUserId is YCUZVRdNHTdSWSdOVbcAG, XPassword is TTVeJZVMBDZADXFGZDIYG);&lt;/P&gt;&lt;P&gt;[SAMPLE]:&lt;BR /&gt;LOAD&lt;BR /&gt;ROW_DATE,&lt;BR /&gt;SPLIT,&lt;BR /&gt;ANSTIME,&lt;BR /&gt;ANSTIME_AVG,&lt;BR /&gt;SERVICE_LEVEL;&lt;BR /&gt;SQL SELECT ROW_DATE&lt;BR /&gt; , SPLIT&lt;BR /&gt; , ANSTIME&lt;BR /&gt; , ANSTIME_AVG&lt;BR /&gt; , SERVICE_LEVEL&lt;BR /&gt; FROM SMKDM."CS_CMS_DSPLIT_F";ODBC CONNECT TO GDWPRD;&lt;/P&gt;&lt;P&gt;sydate1:&lt;BR /&gt;load&lt;BR /&gt;current_day;&lt;BR /&gt;SQL select sysdate from dual;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script fails at the start of execution of the 2nd table sysdate1`. Why should this happen. The first tables gets loaded fully and fails only at the 2nd.&lt;/P&gt;&lt;P&gt;Also attached the snapshot.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 19:22:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170473#M40885</guid>
      <dc:creator>qlik_venu</dc:creator>
      <dc:date>2010-08-21T19:22:27Z</dc:date>
    </item>
    <item>
      <title>Qlikview Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170474#M40886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change it to something like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;sydate1:&lt;BR /&gt;LOAD&lt;BR /&gt; sysdate as current_day;&lt;BR /&gt;SQL select sysdate from dual;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;You need to alias the field that your SQL statement originally fetches.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 22:01:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170474#M40886</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2010-08-21T22:01:09Z</dc:date>
    </item>
    <item>
      <title>Qlikview Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170475#M40887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Appears to me that it is failing becasue current_day is not defined in the sql select statement.&lt;/P&gt;&lt;P&gt;You would need to alias the sysdate field in teh sql select e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sydate1:&lt;BR /&gt;load&lt;BR /&gt;current_day;&lt;BR /&gt;SQL select sysdate as current_day from dual;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: Vlad got there first&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 22:03:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170475#M40887</guid>
      <dc:creator />
      <dc:date>2010-08-21T22:03:27Z</dc:date>
    </item>
    <item>
      <title>Qlikview Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170476#M40888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Yes" src="http://community.qlik.com/emoticons/emotion-21.gif" /&gt; SQL-Cowboy, your signature is excellent! &lt;IMG alt="Yes" src="http://community.qlik.com/emoticons/emotion-21.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 22:06:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170476#M40888</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2010-08-21T22:06:43Z</dc:date>
    </item>
    <item>
      <title>Qlikview Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170477#M40889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why thank you, you're too kind! &lt;IMG alt="Embarrassed" src="http://community.qlik.com/emoticons/emotion-10.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 22:42:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170477#M40889</guid>
      <dc:creator />
      <dc:date>2010-08-21T22:42:16Z</dc:date>
    </item>
    <item>
      <title>Qlikview Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170478#M40890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to alias the filed in Select to match as in the Load. You can follow as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sydate1:&lt;BR /&gt;load&lt;BR /&gt;current_day;&lt;BR /&gt;SQL select sysdate as current_day&lt;/P&gt;&lt;P&gt;from dual;&lt;/P&gt;&lt;P&gt;Hope it will solve your issue.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!!&lt;/P&gt;&lt;P&gt;Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Aug 2010 19:08:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Reload/m-p/170478#M40890</guid>
      <dc:creator>montubhardwaj</dc:creator>
      <dc:date>2010-08-22T19:08:40Z</dc:date>
    </item>
  </channel>
</rss>

