<?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 Invalide Expression in SQL Load Statement in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1630927#M47175</link>
    <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I'm working both on oracle and Qliksense and i'm trying to extract datas from oracle.&lt;/P&gt;&lt;P&gt;My script looks the following:&lt;/P&gt;&lt;P&gt;TMP_SOLL:&lt;BR /&gt;LOAD&lt;BR /&gt;COD_RLX,&lt;BR /&gt;Date#(COD_DAT,'DD/MM/YYYY') as COD_DAT,&lt;BR /&gt;Year(Date#(COD_DAT,'DD/MM/YYYY')) as ANNEE,&lt;BR /&gt;Month(Date#(COD_DAT,'DD/MM/YYYY')) as MOIS,&lt;BR /&gt;COD_RES,&lt;BR /&gt;LIB_RES,&lt;BR /&gt;COD_SOC,&lt;BR /&gt;COD_DAT_CLO,&lt;BR /&gt;LIB_FAM,&lt;BR /&gt;LIB_NAT,&lt;BR /&gt;LIB_STA,&lt;BR /&gt;LIB_TYP_DEM,&lt;BR /&gt;COD_AGE_TRAI,&lt;BR /&gt;LIB_AGE_RLX,&lt;BR /&gt;COD_SEC_RLX,&lt;BR /&gt;LIB_SEC_RLX,&lt;BR /&gt;COD_INSEE,&lt;BR /&gt;COD_AGE_GEO,&lt;BR /&gt;LIB_AGE_GEO;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;BR /&gt;"COD_RLX",&lt;BR /&gt;"COD_DAT",&lt;BR /&gt;"COD_RES",&lt;BR /&gt;"LIB_RES",&lt;BR /&gt;"COD_SOC",&lt;BR /&gt;"COD_DAT_CLO",&lt;BR /&gt;"LIB_FAM",&lt;BR /&gt;"LIB_NAT",&lt;BR /&gt;"LIB_STA",&lt;BR /&gt;"LIB_TYP_DEM",&lt;BR /&gt;"COD_AGE_TRAI",&lt;BR /&gt;"LIB_AGE_RLX",&lt;BR /&gt;"COD_SEC_RLX",&lt;BR /&gt;"LIB_SEC_RLX",&lt;BR /&gt;"COD_INSEE",&lt;BR /&gt;"COD_AGE_GEO",&lt;BR /&gt;"LIB_AGE_GEO"&lt;BR /&gt;FROM "LMH"."V_SOLLI_VS_QS";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first thing i noticed is that it's impossible for me to do a&amp;nbsp;&lt;STRONG&gt;preceding LOAD LIKE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;TMP_SOLL:&lt;/P&gt;&lt;P&gt;LOAD*,&lt;/P&gt;&lt;P&gt;Count (RLX) as NB_FILES&amp;nbsp;;&lt;BR /&gt;LOAD&lt;BR /&gt;COD_RLX,&lt;BR /&gt;Date#(COD_DAT,'DD/MM/YYYY') as COD_DAT,&lt;BR /&gt;Year(Date#(COD_DAT,'DD/MM/YYYY')) as ANNEE,&lt;BR /&gt;Month(Date#(COD_DAT,'DD/MM/YYYY')) as MOIS,&lt;/P&gt;&lt;P&gt;(more fields not showed);&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;BR /&gt;"COD_RLX",&lt;BR /&gt;"COD_DAT",&lt;BR /&gt;"COD_RES",&lt;BR /&gt;"LIB_RES",&lt;BR /&gt;(more fields not showed);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get an error message saying that the statement is not good.&lt;/P&gt;&lt;P&gt;Then i created another table to do the transformation :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SOLL:&lt;BR /&gt;LOAD&lt;BR /&gt;COD_DAT,&lt;BR /&gt;ANNEE,&lt;BR /&gt;MOIS,&lt;BR /&gt;COD_RES,&lt;BR /&gt;LIB_RES,&lt;BR /&gt;COD_SOC,&lt;BR /&gt;//Date#(COD_DAT,'DD/MM/YYYY') as COD_DAT_CLO,&lt;BR /&gt;LIB_FAM,&lt;BR /&gt;LIB_NAT,&lt;BR /&gt;LIB_STA,&lt;BR /&gt;LIB_TYP_DEM,&lt;BR /&gt;COD_AGE_TRAI,&lt;BR /&gt;LIB_AGE_RLX,&lt;BR /&gt;COD_SEC_RLX,&lt;BR /&gt;LIB_SEC_RLX,&lt;BR /&gt;COD_INSEE,&lt;BR /&gt;COD_AGE_GEO,&lt;BR /&gt;LIB_AGE_GEO,&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Count(Trim(Text(COD_RLX))) as COD_RLX // I get an error message when i add the count (Invalid expressiojn)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;Resident TMP_SOLL&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GROUP BY "COD_RES",&lt;BR /&gt;/COD_INSEE",&lt;BR /&gt;"COD_AGE_GEO",&lt;BR /&gt;&amp;nbsp;"LIB_NAT",&lt;BR /&gt;"LIB_STA",&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"ANNEE"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"MOIS"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I also get an error message when i add the field in the clause group by .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SOmeone can help me please.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;thank you&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 19:57:59 GMT</pubDate>
    <dc:creator>lessassy</dc:creator>
    <dc:date>2024-11-16T19:57:59Z</dc:date>
    <item>
      <title>Invalide Expression in SQL Load Statement</title>
      <link>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1630927#M47175</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I'm working both on oracle and Qliksense and i'm trying to extract datas from oracle.&lt;/P&gt;&lt;P&gt;My script looks the following:&lt;/P&gt;&lt;P&gt;TMP_SOLL:&lt;BR /&gt;LOAD&lt;BR /&gt;COD_RLX,&lt;BR /&gt;Date#(COD_DAT,'DD/MM/YYYY') as COD_DAT,&lt;BR /&gt;Year(Date#(COD_DAT,'DD/MM/YYYY')) as ANNEE,&lt;BR /&gt;Month(Date#(COD_DAT,'DD/MM/YYYY')) as MOIS,&lt;BR /&gt;COD_RES,&lt;BR /&gt;LIB_RES,&lt;BR /&gt;COD_SOC,&lt;BR /&gt;COD_DAT_CLO,&lt;BR /&gt;LIB_FAM,&lt;BR /&gt;LIB_NAT,&lt;BR /&gt;LIB_STA,&lt;BR /&gt;LIB_TYP_DEM,&lt;BR /&gt;COD_AGE_TRAI,&lt;BR /&gt;LIB_AGE_RLX,&lt;BR /&gt;COD_SEC_RLX,&lt;BR /&gt;LIB_SEC_RLX,&lt;BR /&gt;COD_INSEE,&lt;BR /&gt;COD_AGE_GEO,&lt;BR /&gt;LIB_AGE_GEO;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;BR /&gt;"COD_RLX",&lt;BR /&gt;"COD_DAT",&lt;BR /&gt;"COD_RES",&lt;BR /&gt;"LIB_RES",&lt;BR /&gt;"COD_SOC",&lt;BR /&gt;"COD_DAT_CLO",&lt;BR /&gt;"LIB_FAM",&lt;BR /&gt;"LIB_NAT",&lt;BR /&gt;"LIB_STA",&lt;BR /&gt;"LIB_TYP_DEM",&lt;BR /&gt;"COD_AGE_TRAI",&lt;BR /&gt;"LIB_AGE_RLX",&lt;BR /&gt;"COD_SEC_RLX",&lt;BR /&gt;"LIB_SEC_RLX",&lt;BR /&gt;"COD_INSEE",&lt;BR /&gt;"COD_AGE_GEO",&lt;BR /&gt;"LIB_AGE_GEO"&lt;BR /&gt;FROM "LMH"."V_SOLLI_VS_QS";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first thing i noticed is that it's impossible for me to do a&amp;nbsp;&lt;STRONG&gt;preceding LOAD LIKE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;TMP_SOLL:&lt;/P&gt;&lt;P&gt;LOAD*,&lt;/P&gt;&lt;P&gt;Count (RLX) as NB_FILES&amp;nbsp;;&lt;BR /&gt;LOAD&lt;BR /&gt;COD_RLX,&lt;BR /&gt;Date#(COD_DAT,'DD/MM/YYYY') as COD_DAT,&lt;BR /&gt;Year(Date#(COD_DAT,'DD/MM/YYYY')) as ANNEE,&lt;BR /&gt;Month(Date#(COD_DAT,'DD/MM/YYYY')) as MOIS,&lt;/P&gt;&lt;P&gt;(more fields not showed);&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;BR /&gt;"COD_RLX",&lt;BR /&gt;"COD_DAT",&lt;BR /&gt;"COD_RES",&lt;BR /&gt;"LIB_RES",&lt;BR /&gt;(more fields not showed);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get an error message saying that the statement is not good.&lt;/P&gt;&lt;P&gt;Then i created another table to do the transformation :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SOLL:&lt;BR /&gt;LOAD&lt;BR /&gt;COD_DAT,&lt;BR /&gt;ANNEE,&lt;BR /&gt;MOIS,&lt;BR /&gt;COD_RES,&lt;BR /&gt;LIB_RES,&lt;BR /&gt;COD_SOC,&lt;BR /&gt;//Date#(COD_DAT,'DD/MM/YYYY') as COD_DAT_CLO,&lt;BR /&gt;LIB_FAM,&lt;BR /&gt;LIB_NAT,&lt;BR /&gt;LIB_STA,&lt;BR /&gt;LIB_TYP_DEM,&lt;BR /&gt;COD_AGE_TRAI,&lt;BR /&gt;LIB_AGE_RLX,&lt;BR /&gt;COD_SEC_RLX,&lt;BR /&gt;LIB_SEC_RLX,&lt;BR /&gt;COD_INSEE,&lt;BR /&gt;COD_AGE_GEO,&lt;BR /&gt;LIB_AGE_GEO,&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Count(Trim(Text(COD_RLX))) as COD_RLX // I get an error message when i add the count (Invalid expressiojn)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;Resident TMP_SOLL&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GROUP BY "COD_RES",&lt;BR /&gt;/COD_INSEE",&lt;BR /&gt;"COD_AGE_GEO",&lt;BR /&gt;&amp;nbsp;"LIB_NAT",&lt;BR /&gt;"LIB_STA",&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"ANNEE"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"MOIS"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I also get an error message when i add the field in the clause group by .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SOmeone can help me please.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;thank you&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:57:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1630927#M47175</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2024-11-16T19:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Invalide Expression in SQL Load Statement</title>
      <link>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631063#M47176</link>
      <description>&lt;P&gt;What is RLX here? I see COD_RLX, but do you have RLX also?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 402px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/20620i7E1DCA623343B829/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Also, you need to add group by in your preceding load... but the way it is structured, you will have a count of 1 for each row because you will be grouping it by all the fields unless you have multiple rows where all columns can repeat. I guess what exactly is your underlying goal here?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 12:25:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631063#M47176</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-03T12:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Invalide Expression in SQL Load Statement</title>
      <link>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631130#M47177</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;I just want to do a preceding load but i have issue with the group by i guess:&lt;/P&gt;&lt;P&gt;TMP_SOLL:&lt;BR /&gt;LOAD *,&lt;BR /&gt;COUNT(COD_RLX) as NB_DOSS&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Group by &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;COD_DAT, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ANNEE,&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;MOIS,&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;COD_RES, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;LIB_RES, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;COD_SOC, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;LIB_FAM, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;LIB_NAT, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;LIB_STA, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;LIB_TYP_DEM, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;COD_AGE_TRAI, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;LIB_AGE_RLX, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;COD_SEC_RLX, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;LIB_SEC_RLX, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;COD_INSEE, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;COD_AGE_GEO, &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;LIB_AGE_GEO;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;COD_RLX,&lt;BR /&gt;Date#(COD_DAT,'DD/MM/YYYY') as COD_DAT,&lt;BR /&gt;Year(Date#(COD_DAT,'DD/MM/YYYY')) as ANNEE,&lt;BR /&gt;Month(Date#(COD_DAT,'DD/MM/YYYY')) as MOIS,&lt;BR /&gt;COD_RES,&lt;BR /&gt;LIB_RES,&lt;BR /&gt;COD_SOC,&lt;BR /&gt;COD_DAT_CLO,&lt;BR /&gt;LIB_FAM,&lt;BR /&gt;LIB_NAT,&lt;BR /&gt;LIB_STA,&lt;BR /&gt;LIB_TYP_DEM,&lt;BR /&gt;COD_AGE_TRAI,&lt;BR /&gt;LIB_AGE_RLX,&lt;BR /&gt;COD_SEC_RLX,&lt;BR /&gt;LIB_SEC_RLX,&lt;BR /&gt;COD_INSEE,&lt;BR /&gt;COD_AGE_GEO,&lt;BR /&gt;LIB_AGE_GEO;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;BR /&gt;"COD_RLX",&lt;BR /&gt;"COD_DAT",&lt;BR /&gt;"COD_RES",&lt;BR /&gt;"LIB_RES",&lt;BR /&gt;"COD_SOC",&lt;BR /&gt;"COD_DAT_CLO",&lt;BR /&gt;"LIB_FAM",&lt;BR /&gt;"LIB_NAT",&lt;BR /&gt;"LIB_STA",&lt;BR /&gt;"LIB_TYP_DEM",&lt;BR /&gt;"COD_AGE_TRAI",&lt;BR /&gt;"LIB_AGE_RLX",&lt;BR /&gt;"COD_SEC_RLX",&lt;BR /&gt;"LIB_SEC_RLX",&lt;BR /&gt;"COD_INSEE",&lt;BR /&gt;"COD_AGE_GEO",&lt;BR /&gt;"LIB_AGE_GEO"&lt;BR /&gt;FROM "LMH"."V_SOLLI_VS_QS";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the same message "unvalid expression"&lt;/P&gt;&lt;P&gt;What i did was to use the count expression and put all other fields in the group by but it doesn't work and i don't know why.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 14:25:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631130#M47177</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2019-10-03T14:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Invalide Expression in SQL Load Statement</title>
      <link>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631136#M47178</link>
      <description>&lt;P&gt;How about this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TMP_SOLL:
LOAD COD_DAT,
ANNEE,
MOIS,
COD_RES,
LIB_RES,
COD_SOC,
LIB_FAM,
LIB_NAT,
LIB_STA,
LIB_TYP_DEM,
COD_AGE_TRAI,
LIB_AGE_RLX,
COD_SEC_RLX,
LIB_SEC_RLX,
COD_INSEE,
COD_AGE_GEO,
LIB_AGE_GEO,
COUNT(COD_RLX) as NB_DOSS
Group by
COD_DAT,
ANNEE,
MOIS,
COD_RES,
LIB_RES,
COD_SOC,
LIB_FAM,
LIB_NAT,
LIB_STA,
LIB_TYP_DEM,
COD_AGE_TRAI,
LIB_AGE_RLX,
COD_SEC_RLX,
LIB_SEC_RLX,
COD_INSEE,
COD_AGE_GEO,
LIB_AGE_GEO;

LOAD
COD_RLX,
Date#(COD_DAT,'DD/MM/YYYY') as COD_DAT,
Year(Date#(COD_DAT,'DD/MM/YYYY')) as ANNEE,
Month(Date#(COD_DAT,'DD/MM/YYYY')) as MOIS,
COD_RES,
LIB_RES,
COD_SOC,
COD_DAT_CLO,
LIB_FAM,
LIB_NAT,
LIB_STA,
LIB_TYP_DEM,
COD_AGE_TRAI,
LIB_AGE_RLX,
COD_SEC_RLX,
LIB_SEC_RLX,
COD_INSEE,
COD_AGE_GEO,
LIB_AGE_GEO;

SQL SELECT
"COD_RLX",
"COD_DAT",
"COD_RES",
"LIB_RES",
"COD_SOC",
"COD_DAT_CLO",
"LIB_FAM",
"LIB_NAT",
"LIB_STA",
"LIB_TYP_DEM",
"COD_AGE_TRAI",
"LIB_AGE_RLX",
"COD_SEC_RLX",
"LIB_SEC_RLX",
"COD_INSEE",
"COD_AGE_GEO",
"LIB_AGE_GEO"
FROM "LMH"."V_SOLLI_VS_QS";&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 03 Oct 2019 14:33:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631136#M47178</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-03T14:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Invalide Expression in SQL Load Statement</title>
      <link>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631153#M47179</link>
      <description>&lt;P&gt;Thank you it worked !&lt;/P&gt;&lt;P&gt;SO basically you just replace the '*' symbol by all the fields, right ?&lt;/P&gt;&lt;P&gt;Can you tell me why it doesn't work with a simple LOAD *, Count(n) as NB_DOSS ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help !!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 15:13:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631153#M47179</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2019-10-03T15:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Invalide Expression in SQL Load Statement</title>
      <link>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631157#M47180</link>
      <description>&lt;P&gt;because I don't think when you listed fields .. you actually listed all of them? Did you list&amp;nbsp;COD_RLX? I don't see it... so what that means is that * includes is, but listing the fields explicitly... it did not and that was the difference&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 15:23:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Invalide-Expression-in-SQL-Load-Statement/m-p/1631157#M47180</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-03T15:23:59Z</dc:date>
    </item>
  </channel>
</rss>

