<?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: Adding variables to SQL query for input in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293916#M66848</link>
    <description>&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.JPG" style="width: 572px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzXX.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144367i1FA484B75B132A2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzXX.jpg" alt="0683p000009LzXX.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.JPG" style="width: 127px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzRt.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130487i3AB68C131B2E57FB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzRt.jpg" alt="0683p000009LzRt.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;And in the tPostgresqlRow, a simplified version :&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;"CREATE OR REPLACE FUNCTION initFirst() RETURNS boolean AS $$&lt;BR /&gt;DECLARE personne RECORD;&lt;/P&gt; 
&lt;P&gt;BEGIN&lt;/P&gt; 
&lt;P&gt;For personne IN (&lt;BR /&gt;SELECT '"+X.nom+"' nom&lt;/P&gt; 
&lt;P&gt;)&lt;BR /&gt;LOOP&lt;/P&gt; 
&lt;P&gt;INSERT INTO REF_PERSONNE (idEcole, idCivilite, idSexe, idSitMaritale, idPersCreat, codePaysNaiss,&lt;BR /&gt;codeNationnalite, codedblenationnalite, nom, nomUsage, bPubliNomMari, prenom, prenomAutre,&lt;BR /&gt;nbEnfants, dateNaiss, villeNaiss, bInactif, siteWeb, dateCreat)&lt;BR /&gt;VALUES (1,147,150,null,1,null, null, null, personne.nom, personne.nom, true, personne.nom, null,&lt;BR /&gt;null, null, null, false, null, localtimestamp(0));&lt;/P&gt; 
&lt;P&gt;INSERT INTO REF_PERS_CATEGORIE (idPersonne, idCategorie, idPersDemande, dateDebEffet, dateFinEffet,&lt;BR /&gt;dateDemande)&lt;BR /&gt;select max(rp.id) ,181, 1, localtimestamp(0),null, localtimestamp(0) from ref_personne rp;&lt;/P&gt; 
&lt;P&gt;END LOOP ;&lt;/P&gt; 
&lt;P&gt;RETURN true;&lt;BR /&gt;END;&lt;BR /&gt;$$ LANGUAGE plpgsql;&lt;/P&gt; 
&lt;P&gt;select initFirstPersonne();&lt;BR /&gt;drop function initFirstPersonne();"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I always have the same problem :&lt;/P&gt; 
&lt;P&gt;ERROR: unterminated quoted string at or near "' nom&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My question is : how i can correctly construct the "SELECT" request ( escaping characters, etc. ?).&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;EDIT : if i use this query :&lt;/P&gt; 
&lt;P&gt;SELECT "+"'"+X.nom+"'"+"' nom&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;my error is now&amp;nbsp;ERROR: unterminated quoted string at or near "'Rouffeteau'' nom (so the X.nom has been correctly set). But still an error...&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Aug 2018 06:41:07 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-08-07T06:41:07Z</dc:date>
    <item>
      <title>Adding variables to SQL query for input</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293911#M66843</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a problem formating a SQL query. I format some datas using tmap, and i want to do a huge query using tPorestgresqlRow :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My SQL request begin with that :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"CREATE OR REPLACE FUNCTION initFirst() RETURNS boolean AS $$&lt;BR /&gt;DECLARE people RECORD;&lt;/P&gt;&lt;P&gt;BEGIN&lt;/P&gt;&lt;P&gt;For people IN (&lt;BR /&gt;SELECT '"+X.name+"' name, ......&lt;/P&gt;&lt;P&gt;)&lt;BR /&gt;LOOP&lt;/P&gt;&lt;P&gt;INSERT INTO ......&lt;BR /&gt;Etc.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If i don't add the ' before " (or after "), i have an SQL error indicating that X.name is not a column.&lt;/P&gt;&lt;P&gt;If i do with&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;'"+X.name+"', i have another error :&amp;nbsp;ERROR: unterminated quoted string at or near "'&amp;nbsp;name&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any ideas how i can solve this issue ?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks !&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 15:50:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293911#M66843</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-06T15:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Adding variables to SQL query for input</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293912#M66844</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Could you please try as shown in the screen shot? I have given employee_id as the column name but underlying DB column name is id.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; You can give the column and table name details first and press Guess query button to get a proper query code. Once you get the code, you can add necessary where clauses in same format.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzkC.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/140268i6031CF59AA246935/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzkC.png" alt="0683p000009LzkC.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; If the answer has helped you, could you please mark the topic as solution provided?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 16:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293912#M66844</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-06T16:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Adding variables to SQL query for input</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293913#M66845</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I try to do an insert request, using loops and select.&amp;nbsp;it's a multitable request in output and not a database in input.I can't specify a tablename in input.&lt;/P&gt;
&lt;P&gt;For example, X.name is not from a database, but a text. I need to add ' ' around in order to be considered as a value and not as a column name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 16:51:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293913#M66845</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-06T16:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Adding variables to SQL query for input</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293914#M66846</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;If you are fine, could you please share the&amp;nbsp;code you have inserted in the problematic component? It will help in detailed analysis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 18:29:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293914#M66846</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-06T18:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Adding variables to SQL query for input</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293915#M66847</link>
      <description>&lt;P&gt;This is the code i posted first.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;More of the code&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;CREATE OR REPLACE FUNCTION initFirst() RETURNS boolean AS $$&lt;BR /&gt;DECLARE people RECORD;&lt;/P&gt; 
&lt;P&gt;BEGIN&lt;/P&gt; 
&lt;P&gt;For people IN (&lt;BR /&gt;SELECT " + X.sexe + " sexe, " + X.civ + " civilite, " + X.nom + " nom, " + X.prenom + " prenom, " + X.ine + " ine, " + X.login + " login, " + X.mail + " mail "&lt;BR /&gt;)&lt;/P&gt; 
&lt;P&gt;LOOP&lt;BR /&gt;---------------------------------------------------------------&lt;BR /&gt;-- 1st&lt;/P&gt; 
&lt;P&gt;---------------------------------------------------------------&lt;BR /&gt;INSERT INTO REF_PERSONNE (idEcole, idCivilite, idSexe, idSitMaritale, idPersCreat, codePaysNaiss, codeNationnalite, codedblenationnalite, nom, nomUsage, bPubliNomMari, prenom, prenomAutre, nbEnfants, dateNaiss, villeNaiss, bInactif, siteWeb, dateCreat, idexterne)&lt;BR /&gt;VALUES (1,personne.civilite,personne.sexe,null,1,null, null, null, personne.nom, personne.nom, true, personne.prenom, null, null, null, personne.villenaissance, false, null, localtimestamp(0), personne.xuniqueid);&lt;/P&gt; 
&lt;P&gt;INSERT INTO REF_PERS_CATEGORIE (idPersonne, idCategorie, idPersDemande, dateDebEffet, dateFinEffet, dateDemande)&lt;BR /&gt;VALUES (getLastId('ref_personne_id_seq'),181, 1, localtimestamp(0),null, localtimestamp(0));&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;[---]&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;END LOOP ;&lt;/P&gt; 
&lt;P&gt;RETURN true;&lt;BR /&gt;END;&lt;BR /&gt;$$ LANGUAGE plpgsql;&lt;/P&gt; 
&lt;P&gt;select initFirst();&lt;BR /&gt;drop function initFirst();"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I'm using function in order to insert all the values at once. If there's any problems in any insert into, it stop the function, so i'm sure all the queries are done.&lt;/P&gt; 
&lt;P&gt;My problem is : how can i correctly write this part :&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;SELECT " + X.sexe + " sexe, " + X.civ + " civilite, " + X.nom + " nom, " + X.prenom + " prenom, " + X.ine + " ine, " + X.login + " login, " + X.mail + " mail "&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;so, the X.sexe, X.civ, ...&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I send a screenshot tomorrow because i don't have my laptop, but just before the request (inserted in a tPostregresqRow), there's a tMap (and the output are the variables X.sexe, etc.)&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I already use this complete query, but not interfacing it with Talend (by hand, creating the SELECT lines with UNION at the end of each select line).&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 18:49:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293915#M66847</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-06T18:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Adding variables to SQL query for input</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293916#M66848</link>
      <description>&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.JPG" style="width: 572px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzXX.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144367i1FA484B75B132A2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzXX.jpg" alt="0683p000009LzXX.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.JPG" style="width: 127px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LzRt.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130487i3AB68C131B2E57FB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LzRt.jpg" alt="0683p000009LzRt.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;And in the tPostgresqlRow, a simplified version :&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;"CREATE OR REPLACE FUNCTION initFirst() RETURNS boolean AS $$&lt;BR /&gt;DECLARE personne RECORD;&lt;/P&gt; 
&lt;P&gt;BEGIN&lt;/P&gt; 
&lt;P&gt;For personne IN (&lt;BR /&gt;SELECT '"+X.nom+"' nom&lt;/P&gt; 
&lt;P&gt;)&lt;BR /&gt;LOOP&lt;/P&gt; 
&lt;P&gt;INSERT INTO REF_PERSONNE (idEcole, idCivilite, idSexe, idSitMaritale, idPersCreat, codePaysNaiss,&lt;BR /&gt;codeNationnalite, codedblenationnalite, nom, nomUsage, bPubliNomMari, prenom, prenomAutre,&lt;BR /&gt;nbEnfants, dateNaiss, villeNaiss, bInactif, siteWeb, dateCreat)&lt;BR /&gt;VALUES (1,147,150,null,1,null, null, null, personne.nom, personne.nom, true, personne.nom, null,&lt;BR /&gt;null, null, null, false, null, localtimestamp(0));&lt;/P&gt; 
&lt;P&gt;INSERT INTO REF_PERS_CATEGORIE (idPersonne, idCategorie, idPersDemande, dateDebEffet, dateFinEffet,&lt;BR /&gt;dateDemande)&lt;BR /&gt;select max(rp.id) ,181, 1, localtimestamp(0),null, localtimestamp(0) from ref_personne rp;&lt;/P&gt; 
&lt;P&gt;END LOOP ;&lt;/P&gt; 
&lt;P&gt;RETURN true;&lt;BR /&gt;END;&lt;BR /&gt;$$ LANGUAGE plpgsql;&lt;/P&gt; 
&lt;P&gt;select initFirstPersonne();&lt;BR /&gt;drop function initFirstPersonne();"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I always have the same problem :&lt;/P&gt; 
&lt;P&gt;ERROR: unterminated quoted string at or near "' nom&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My question is : how i can correctly construct the "SELECT" request ( escaping characters, etc. ?).&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;EDIT : if i use this query :&lt;/P&gt; 
&lt;P&gt;SELECT "+"'"+X.nom+"'"+"' nom&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;my error is now&amp;nbsp;ERROR: unterminated quoted string at or near "'Rouffeteau'' nom (so the X.nom has been correctly set). But still an error...&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 06:41:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293916#M66848</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-07T06:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Adding variables to SQL query for input</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293917#M66849</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;If I understood the requirement correctly, you would like to load multiple records to two tables based on business condition and if there is any reject or issue, you would like to do the rollback for entire transaction.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;For this scenario, you can refer the below post which helped to implement the rollback for entire transaction if there are any issues.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCrBnCAK" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/resolved-Rollback-entire-transaction/td-p/114025&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Could you please try this approach and let us know whether it helped you?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Nikhil Thampi&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 09:29:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Adding-variables-to-SQL-query-for-input/m-p/2293917#M66849</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-07T09:29:15Z</dc:date>
    </item>
  </channel>
</rss>

