<?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: How to setup a startup index to a xml file? in Installing and Upgrading</title>
    <link>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384823#M5039</link>
    <description>Hi,&lt;BR /&gt;Could you please elaborate your case with an example with input and expected output values?&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
    <pubDate>Wed, 22 Feb 2017 07:25:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-02-22T07:25:38Z</dc:date>
    <item>
      <title>How to setup a startup index to a xml file?</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384822#M5038</link>
      <description>I have a data of 100 details.If the processing is done till 100 and If I add 20 more details.The processing of the file should start from 101 till 120.How can I do this job in talend?</description>
      <pubDate>Sat, 16 Nov 2024 10:03:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384822#M5038</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T10:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a startup index to a xml file?</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384823#M5039</link>
      <description>Hi,&lt;BR /&gt;Could you please elaborate your case with an example with input and expected output values?&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Wed, 22 Feb 2017 07:25:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384823#M5039</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-22T07:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a startup index to a xml file?</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384824#M5040</link>
      <description>Here I am giving a .csv or xml file as input with 100 details and collecting the output in .csv format.Now I again modify input file by adding 20 more details and now when I run it should only generate from 101 to 120 details without generating the first 100 details.like My csv file has 100 details now and generated the job and .csv output has 100 details.Now I have added 20 more files to input .csv file and now the same job should run 101 to 120 details but not from 1st detail again.How can I do this job in talend? 
&lt;BR /&gt;My Sample Job: Here I have used tInputFiledelimited to pass input and then sorted with tsortrow in desc order and get to find the last row and I am unable to pass this as a parameter to generate the next updated files with this detail as a startindex and obtain the output with this 20 details.&amp;nbsp;</description>
      <pubDate>Wed, 22 Feb 2017 10:26:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384824#M5040</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-22T10:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a startup index to a xml file?</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384825#M5041</link>
      <description>In any case - logic for CSV and XML will be different 
&lt;BR /&gt;generally Talend not support "tail" function (and I do not know any software which can do this for remote files) 
&lt;BR /&gt;in case of csv, if You do not worry about concurrent writes, You can save last processed row and on next iteration use saved number for skip first XXX lines 
&lt;BR /&gt;with XML this could not work - depending from XML format (it could work only if each row is separate XML document) 
&lt;BR /&gt;again, If You know this new id's - You can run XQUERY over XML iterate over file for id's from list 
&lt;BR /&gt;For this reason most often used way (with files) - processed, than moved or deleted and new iteration start from new file 
&lt;BR /&gt;Other way - use combination of different technologies: 
&lt;BR /&gt;- do not store data in file at all, but send them to message queue or topic 
&lt;BR /&gt;You can do this direct from Your source software, or if You can not do this, using external software like -&amp;nbsp; 
&lt;A href="https://github.com/mguindin/tail-kafka" rel="nofollow noopener noreferrer"&gt;https://github.com/mguindin/tail-kafka&lt;/A&gt;&amp;nbsp; 
&lt;BR /&gt;than by Talend parse this queue/topic</description>
      <pubDate>Wed, 22 Feb 2017 12:30:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384825#M5041</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2017-02-22T12:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a startup index to a xml file?</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384826#M5042</link>
      <description>@vapukov&lt;BR /&gt;Thanks for the response.Could you please elaborate on how to process the csv file after saving the last row.&lt;BR /&gt;My Job:&lt;BR /&gt;tFileInputDelimited--&amp;gt;tsortrow--&amp;gt;tsamplerow(here I have collected the last row) after this could you please explain the process to generate the data setting the last row as a start index and generating the remaining data.&amp;nbsp;</description>
      <pubDate>Thu, 23 Feb 2017 04:55:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384826#M5042</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-23T04:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a startup index to a xml file?</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384827#M5043</link>
      <description>component tFileInputDelimited have settings - Header, this is really number of skipped rows (include "header" row) 
&lt;BR /&gt;Talend do not parse header - it just skip number of rows, and map columns by delimiter in order which You are use in schema for component 
&lt;BR /&gt;so, write value to variable and use this variable as value for component 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDOW.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/141018iF3EB0C015658D214/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDOW.png" alt="0683p000009MDOW.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Thu, 23 Feb 2017 09:17:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/How-to-setup-a-startup-index-to-a-xml-file/m-p/2384827#M5043</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2017-02-23T09:17:48Z</dc:date>
    </item>
  </channel>
</rss>

