<?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: [resolved] Stop reading rows from Input (csv or excel) when field &amp;quot;end&amp;quot; = &amp;quot;x&amp;quot; in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223821#M16776</link>
    <description>Hello 
&lt;BR /&gt;It is impossible to stop reading the new row from the input component, but we can stop it when a fileds end with 'x' on tJavaRow component, so need to read all the rows from file and filter/process on tJavaRow.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
    <pubDate>Tue, 18 Jan 2011 06:39:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-01-18T06:39:36Z</dc:date>
    <item>
      <title>[resolved] Stop reading rows from Input (csv or excel) when field "end" = "x"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223820#M16775</link>
      <description>How can I stop reading rows from a input file (csv or excel) when a field has a certain value?&lt;BR /&gt;So if in field "end" the value is "x" I would like stop/interupt reading new rows from the input. &lt;BR /&gt;The Job should not end with a error.&lt;BR /&gt;Thank you for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Sat, 16 Nov 2024 13:08:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223820#M16775</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Stop reading rows from Input (csv or excel) when field "end" = "x"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223821#M16776</link>
      <description>Hello 
&lt;BR /&gt;It is impossible to stop reading the new row from the input component, but we can stop it when a fileds end with 'x' on tJavaRow component, so need to read all the rows from file and filter/process on tJavaRow.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 18 Jan 2011 06:39:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223821#M16776</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-18T06:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Stop reading rows from Input (csv or excel) when field "end" = "x"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223822#M16777</link>
      <description>Hello Shong,
&lt;BR /&gt;so how would I Skip all following lines when I see the first apereance of the string "x" in row1?
&lt;BR /&gt;Would I have to use a variable to do this?
&lt;BR /&gt;Greetings
&lt;BR /&gt;Roger</description>
      <pubDate>Wed, 19 Jan 2011 21:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223822#M16777</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-19T21:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Stop reading rows from Input (csv or excel) when field "end" = "x"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223823#M16778</link>
      <description>Hello 
&lt;BR /&gt;Here is simple demo job, the tFileInputFullRow extract all the records from the source file: 
&lt;BR /&gt;source file: 
&lt;BR /&gt;a 
&lt;BR /&gt;b 
&lt;BR /&gt;c 
&lt;BR /&gt;x 
&lt;BR /&gt;c 
&lt;BR /&gt;d 
&lt;BR /&gt;result: 
&lt;BR /&gt;Starting job forum13857 at 16:35 20/01/2011. 
&lt;BR /&gt; connecting to socket on port 3783 
&lt;BR /&gt; connected 
&lt;BR /&gt;a 
&lt;BR /&gt;b 
&lt;BR /&gt;c 
&lt;BR /&gt;x 
&lt;BR /&gt; disconnected 
&lt;BR /&gt;Job forum13857 ended at 16:35 20/01/2011. 
&lt;BR /&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 20 Jan 2011 08:34:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223823#M16778</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-20T08:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Stop reading rows from Input (csv or excel) when field "end" = "x"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223824#M16779</link>
      <description>Hello Shong, 
&lt;BR /&gt;This is exacly what I was looking for. 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Many thanks for this quick response. 
&lt;BR /&gt;Greetings 
&lt;BR /&gt;Roger</description>
      <pubDate>Thu, 20 Jan 2011 12:11:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223824#M16779</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-20T12:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Stop reading rows from Input (csv or excel) when field "end" = "x"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223825#M16780</link>
      <description>Will the tFileInputFullRow read all the lines in the file in here??? if that is the case then it will consume time in reading the file right, which is not an efficient way</description>
      <pubDate>Thu, 09 Feb 2012 10:18:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Stop-reading-rows-from-Input-csv-or-excel-when-field/m-p/2223825#M16780</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-09T10:18:48Z</dc:date>
    </item>
  </channel>
</rss>

