<?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 How to read the data from the failure in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304558#M76316</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a requirement. In my source we have 1000(example) records and performing logic and loading into database.&lt;/P&gt;&lt;P&gt;The job failed after loading 450 records. Now I want to start loading/ reading the source file from 451 to 1000 and It should not read 1-450(which already loaded). Please suggest how can we achieve this using talend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Job:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tfileinputdeleimeted-&amp;gt;tmap-&amp;gt;toracledb.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
    <pubDate>Wed, 25 Oct 2017 05:04:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-10-25T05:04:00Z</dc:date>
    <item>
      <title>How to read the data from the failure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304558#M76316</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a requirement. In my source we have 1000(example) records and performing logic and loading into database.&lt;/P&gt;&lt;P&gt;The job failed after loading 450 records. Now I want to start loading/ reading the source file from 451 to 1000 and It should not read 1-450(which already loaded). Please suggest how can we achieve this using talend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Job:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tfileinputdeleimeted-&amp;gt;tmap-&amp;gt;toracledb.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2017 05:04:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304558#M76316</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-25T05:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the data from the failure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304559#M76317</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;There is a lot of way&amp;nbsp;for this.&lt;/P&gt;
&lt;P&gt;If you just want to ignore the n first records from your input file (that's your request), you may have a context variable set to 1 by default ignore the header if any (set to 0 in case of no header), and set the number of records to ignore (450 in your example) + 1 if you&amp;nbsp;have a header.&lt;/P&gt;
&lt;P&gt;Then, use this variable to populate the&amp;nbsp;tFileInputDelimited "Header" field.&lt;/P&gt;
&lt;P&gt;That's all.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2017 07:52:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304559#M76317</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-10-25T07:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the data from the failure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304560#M76318</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There are two ways to achieve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) If you have a unique key in your&amp;nbsp;delimited file, then you can apply a join (inner join) between the file and&amp;nbsp; the database table in which you are inserting the records. That can be done through tMap. In this way it will escape all the records that are already inserted into the table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Its not the ideal way, but you can set the header value to 451 (If you have headers) OR 450 (If you don't have headers). In this way it will escape the first 450 records.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it will help you in resolving your query !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2017 08:26:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304560#M76318</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-25T08:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the data from the failure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304561#M76319</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;From the information you've provided, and assuming this is a one-off exercise, you just need to&amp;nbsp;temporarily change the Header property in your tFileInputDelimited to 450, as suggested by&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKj7AAG"&gt;@TRF&lt;/A&gt;&amp;nbsp;ad&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LMHzAAO"&gt;@abhishek&lt;/A&gt;.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;If there are actual header lines in the source file, then you'll also need to add the number of header lines, so e.g. if you have a two line header, the Header value should be 452.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2017 09:12:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304561#M76319</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-25T09:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the data from the failure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304562#M76320</link>
      <description>Thanks all for your reply..giving the value at header resolved the issue.</description>
      <pubDate>Wed, 25 Oct 2017 09:20:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304562#M76320</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-25T09:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the data from the failure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304563#M76321</link>
      <description>&lt;P&gt;I notice that you have 3 components with a tMap being in the middle. Therefore it is likely that your tMap is where the error occurs. Here is a tutorial on how you can trap the error row in a tMap (&lt;A href="https://www.rilhia.com/quicktips/quick-tip-how-debug-tmap-errors).&amp;nbsp;" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.rilhia.com/quicktips/quick-tip-how-debug-tmap-errors).&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2017 09:39:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304563#M76321</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-25T09:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the data from the failure</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304564#M76322</link>
      <description>Did you found an answer to your initial question?&lt;BR /&gt;If so, mark your case as solved by choosing the appropriate answer.</description>
      <pubDate>Wed, 25 Oct 2017 18:40:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-read-the-data-from-the-failure/m-p/2304564#M76322</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-10-25T18:40:23Z</dc:date>
    </item>
  </channel>
</rss>

