<?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] Read using tfileinputexcel and load into Oracle db in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219240#M14122</link>
    <description>Hi Mathur,&lt;BR /&gt;Many Thanks for your response.I will clarify the points.&lt;BR /&gt;1.The input file not has 2 rows. I gave 2 rows as an example. Each input excel file has 100s of records.&lt;BR /&gt;2. 1st iteration should read only 1st record. And it is inserted in 1st output table and 2nd output table(two insertion only in 2nd output table).&lt;BR /&gt;3. 2nd iteration should read 2nd row and inserts in 1st output table and also in 2nd output table(two insertion only in 2nd output table).&lt;BR /&gt;4. Hence if i have 100 rows in sheet, table1 will have 100 rows. And table2 will have 200 rows.&lt;BR /&gt;5. 'taxt_status_flag' column ,'state','type','state_tx_flg' columns data is not coming from sheet. I have to hardcoded this values in tmap for table2.&lt;BR /&gt;Sorry I have provided input file wrongly in my earlier post. I am reposting the input file and expected output. Also i am posting the sql scripts which iam using to do this insert.&lt;BR /&gt;1st iteration&lt;BR /&gt;------------------&lt;BR /&gt;insert into table1 (imtx_num, imtx_type, sub_org,weight) &amp;nbsp;values (row1.imtx_num+&lt;B&gt;_1&lt;/B&gt;,row1.imtx_type,row1.sub_org,row1.weight)&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type) values (row1.imtx_num&lt;B&gt;+_1&lt;/B&gt;,row1.imtx_type,'Y','Tulsa','PTNR_IMPORT')&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type,state_tx_flg) values (row1.imtx_num&lt;B&gt;+_1&lt;/B&gt;,row1.imtx_type,'N','Warwick','PTNR_EXPORT','Y')&lt;BR /&gt;2nd &amp;nbsp;iteration&lt;BR /&gt;---------------------&lt;BR /&gt;insert into table1 (imtx_num, imtx_type, sub_org,weight) &amp;nbsp;values (row1.imtx_num&lt;B&gt;+_2&lt;/B&gt;,row1.imtx_type,row1.sub_org,row1.weight)&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type) values (row1.imtx_num&lt;B&gt;+_2&lt;/B&gt;,row1.imtx_type,'Y','Tulsa','PTNR_IMPORT')&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type,state_tx_flg) values (row1.imtx_num&lt;B&gt;+_2&lt;/B&gt;,row1.imtx_type,'N','Warwick','PTNR_EXPORT','Y')&lt;BR /&gt;3rd iteration&lt;BR /&gt;----------------&lt;BR /&gt;insert into table1 (imtx_num, imtx_type, sub_org,weight) &amp;nbsp;values (row1.imtx_num&lt;B&gt;+_3&lt;/B&gt;,row1.imtx_type,row1.sub_org,row1.weight)&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type) values (row1.imtx_num&lt;B&gt;+_3&lt;/B&gt;,row1.imtx_type,'Y','Tulsa','PTNR_IMPORT')&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type,state_tx_flg) values (row1.imtx_num&lt;B&gt;+_3&lt;/B&gt;,row1.imtx_type,'N','Warwick','PTNR_EXPORT','Y')&lt;BR /&gt;Input File&lt;BR /&gt;Taxt_Num &amp;nbsp; &amp;nbsp;Taxt_type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Sub_org &amp;nbsp; &amp;nbsp; &amp;nbsp;weight&lt;BR /&gt;-----------------------------------------------------------&lt;BR /&gt;A_1000 &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3.3 &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;A_1000 &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2.2&lt;BR /&gt;&amp;nbsp;A_100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 7.8&lt;BR /&gt;Output Table1 :&lt;BR /&gt;&amp;nbsp;Imtx_Num &amp;nbsp; imtx_type &amp;nbsp; &amp;nbsp; Sub_org &amp;nbsp; &amp;nbsp; &amp;nbsp;weight&lt;BR /&gt;-----------------------------------------------------&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; 3.3&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.2&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 7.8&lt;BR /&gt;Output Table2:&lt;BR /&gt;&amp;nbsp;Imtx_Num &amp;nbsp; &amp;nbsp;imtx_type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;taxt_status_flg &amp;nbsp; &amp;nbsp; &amp;nbsp;state &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;State_tx_flg&lt;BR /&gt;-------------------------------------------------------------------------------------------------------------&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tulsa&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PTNR_IMPORT &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; N &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Warwick &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PTNR_EXPORT &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tulsa &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PTNR_IMPORT&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; N &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Warwick &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PTNR_EXPORT &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tulsa &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PTNR_IMPORT&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; N &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Warwick &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PTNR_EXPORT &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Seena</description>
    <pubDate>Tue, 23 Dec 2014 06:13:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-12-23T06:13:26Z</dc:date>
    <item>
      <title>[resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219234#M14116</link>
      <description>Hi , 
&lt;BR /&gt;I am a newbee to talend and not a java person.I want to perform a small task exploring talend components. I am using Talend Open Studio for data integration for the purpose. 
&lt;BR /&gt;I have an excel sheet with 2 records like this in below structure.From this sheet,i have to read each record and do one insert into one table and next 2 insert into second table . After this it should read second row and insert 1 record to 1st table and then next 2 inserts to second table.So for 3 loops,the output will be like below: 
&lt;BR /&gt;Input File 
&lt;BR /&gt;Taxt_Num &amp;nbsp;Taxt_type &amp;nbsp; &amp;nbsp;&amp;nbsp;Sub_org taxt_status-flg &amp;nbsp;State 
&lt;BR /&gt;------------------------------------------------------------------------ 
&lt;BR /&gt;A_1000 &amp;nbsp;commercial 100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; we &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 
&lt;BR /&gt;A_1000 &amp;nbsp;commercial 100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ga &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 
&lt;BR /&gt;&amp;nbsp; 
&lt;BR /&gt;Output Table1 : 
&lt;BR /&gt;&amp;nbsp; 
&lt;FONT size="2"&gt;Imtx_Num &amp;nbsp;&amp;nbsp;&lt;/FONT&gt; 
&lt;FONT size="2"&gt;imtx_type&lt;/FONT&gt; 
&lt;FONT size="2"&gt;&amp;nbsp;&lt;/FONT&gt; 
&lt;FONT size="2"&gt;Sub_org&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;FONT size="2"&gt;--------------------------------------------&lt;/FONT&gt; 
&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp;&amp;nbsp;100 
&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial &amp;nbsp;&amp;nbsp;100 
&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial &amp;nbsp;&amp;nbsp;100 
&lt;BR /&gt; 
&lt;BR /&gt;Output Table2: 
&lt;BR /&gt;&amp;nbsp;Imtx_Num imtx_type &amp;nbsp; &amp;nbsp;taxt_status_flg state 
&lt;BR /&gt;------------------------------------------------------------------- 
&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; commercial w Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;we 
&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial y Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;ga 
&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial K Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;we 
&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial w Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;ga 
&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial y Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;we 
&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial y Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;ga 
&lt;BR /&gt; 
&lt;BR /&gt;how to add a sequence number (x+1) to 1st column in each loop.Should I have to write a java code to add sequence number to 1st column in every loop.Or can we achieve this in tmap ? 
&lt;BR /&gt; 
&lt;BR /&gt;Hoping a help from the community. 
&lt;BR /&gt;Thanks in Advance, 
&lt;BR /&gt;Seena</description>
      <pubDate>Fri, 19 Dec 2014 14:21:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219234#M14116</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-19T14:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219235#M14117</link>
      <description>hi, Seena..&lt;BR /&gt;you can create a string variable in tMap and it should look like this:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;row1.Taxt_Num+"_"+Integer.toString(((Integer)globalMap.get("tLoop_1_CURRENT_VALUE")))&lt;/PRE&gt;&lt;BR /&gt;hope that'll helps!</description>
      <pubDate>Fri, 19 Dec 2014 21:31:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219235#M14117</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-19T21:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219236#M14118</link>
      <description>Hi sky_angel, 
&lt;BR /&gt;Thanks for your response. 
&lt;BR /&gt;In this case so i should use a tloop component to call this variable inside tmap right? 
&lt;BR /&gt;I havent used a tloop component yet. I tried connecting a tloop to tmap.But its not possible. Can u help me how to use a tloop in my job? 
&lt;BR /&gt;Currently my job looks like this 
&lt;BR /&gt;tfielist--&amp;gt;ttFileinputexcel--&amp;gt;tmap--&amp;gt;toracleoutput 
&lt;BR /&gt;Iam reading files ,mapping it and loading it to oracle tables. 2 loops /iteration i should perform:The first loop is like this: 
&lt;BR /&gt;it reads 1 row from file and do 2 insert(1 insert in 1st output table,and next output table) 
&lt;BR /&gt;Then it read second row and do 2 nsert(1 insert in 1st output table,and next output table) 
&lt;BR /&gt;Second loop is : 
&lt;BR /&gt;When it reading second row, the first column taxt_num should be incremented sequentially. 
&lt;BR /&gt;input: 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;A_1000 &amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;Output:&amp;nbsp; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;A_1000_1&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;BR /&gt;Can any1 help me in achieving this 2 loop? 
&lt;BR /&gt;It will be very helpfull. 
&lt;BR /&gt;Many Thanks, 
&lt;BR /&gt;Seena 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MBre.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/128647i6FF1B13985F96B1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MBre.png" alt="0683p000009MBre.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Mon, 22 Dec 2014 06:20:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219236#M14118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-22T06:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219237#M14119</link>
      <description>Hi sky_angel- Thanks for your response. 
&lt;BR /&gt;In this case so i should use a tloop component to call this variable inside tmap right? 
&lt;BR /&gt;I havent used a tloop component yet. I tried connecting a tloop to tmap.But its not possible. Can u help me how to use a tloop in my job? 
&lt;BR /&gt;Currently my job looks like this.I am attaching a screen shot of my job. 
&lt;BR /&gt;tfielist--&amp;gt;ttFileinputexcel--&amp;gt;tmap--&amp;gt;toracleoutput 
&lt;BR /&gt;Iam reading files ,mapping it and loading it to oracle tables. 2 loops /iteration i should perform:The first loop is like this: 
&lt;BR /&gt;it reads 1 row from file and do 2 insert(1 insert in 1st output table,and next insert of same row in 2nd output table) 
&lt;BR /&gt;Then it read second row and do 2 nsert(1 insert in 1st output table,and next insert of same row in 2nd output table) 
&lt;BR /&gt;Second loop is : 
&lt;BR /&gt;When it reading second row, the first column taxt_num should be incremented sequentially. 
&lt;BR /&gt;input: 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;A_1000 &amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;Output:&amp;nbsp; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;A_1000_1&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;BR /&gt;Can any1 help me in achieving this 2 loop? 
&lt;BR /&gt;It will be very helpfull. 
&lt;BR /&gt;Many Thanks, 
&lt;BR /&gt;Seena 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MC5o.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151174iEEA1B771DD61A5B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MC5o.png" alt="0683p000009MC5o.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Mon, 22 Dec 2014 06:22:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219237#M14119</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-22T06:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219238#M14120</link>
      <description>Hi ,&lt;BR /&gt;Can any1 helps me on the above query?&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Seena</description>
      <pubDate>Mon, 22 Dec 2014 12:28:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219238#M14120</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-22T12:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219239#M14121</link>
      <description>Hi Seena,
&lt;BR /&gt;Before we proceed, I would like to have confirmation on a few points:
&lt;BR /&gt;1. Every time the processing takes place, is the input file(s) going to have exactly 2 rows?
&lt;BR /&gt;2. 1st iteration reads both rows, &amp;amp; 2nd iteration reads only the 2nd row (i.e. last row)??
&lt;BR /&gt;3. The output data in your first post is a bit misleading. You showed 3 entries in Table1 &amp;amp; 6 in Table2. Whereas, if I've understood your last post correctly, there would be 3 rows in Table1 &amp;amp; 3 in Table2, where the 3rd row in both the tables would have incremented 'taxt_num' column.
&lt;BR /&gt;4. Also, please explain how the values in Table2 column 'taxt_status_flg' gets populated.
&lt;BR /&gt;MathurM</description>
      <pubDate>Mon, 22 Dec 2014 12:56:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219239#M14121</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-22T12:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219240#M14122</link>
      <description>Hi Mathur,&lt;BR /&gt;Many Thanks for your response.I will clarify the points.&lt;BR /&gt;1.The input file not has 2 rows. I gave 2 rows as an example. Each input excel file has 100s of records.&lt;BR /&gt;2. 1st iteration should read only 1st record. And it is inserted in 1st output table and 2nd output table(two insertion only in 2nd output table).&lt;BR /&gt;3. 2nd iteration should read 2nd row and inserts in 1st output table and also in 2nd output table(two insertion only in 2nd output table).&lt;BR /&gt;4. Hence if i have 100 rows in sheet, table1 will have 100 rows. And table2 will have 200 rows.&lt;BR /&gt;5. 'taxt_status_flag' column ,'state','type','state_tx_flg' columns data is not coming from sheet. I have to hardcoded this values in tmap for table2.&lt;BR /&gt;Sorry I have provided input file wrongly in my earlier post. I am reposting the input file and expected output. Also i am posting the sql scripts which iam using to do this insert.&lt;BR /&gt;1st iteration&lt;BR /&gt;------------------&lt;BR /&gt;insert into table1 (imtx_num, imtx_type, sub_org,weight) &amp;nbsp;values (row1.imtx_num+&lt;B&gt;_1&lt;/B&gt;,row1.imtx_type,row1.sub_org,row1.weight)&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type) values (row1.imtx_num&lt;B&gt;+_1&lt;/B&gt;,row1.imtx_type,'Y','Tulsa','PTNR_IMPORT')&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type,state_tx_flg) values (row1.imtx_num&lt;B&gt;+_1&lt;/B&gt;,row1.imtx_type,'N','Warwick','PTNR_EXPORT','Y')&lt;BR /&gt;2nd &amp;nbsp;iteration&lt;BR /&gt;---------------------&lt;BR /&gt;insert into table1 (imtx_num, imtx_type, sub_org,weight) &amp;nbsp;values (row1.imtx_num&lt;B&gt;+_2&lt;/B&gt;,row1.imtx_type,row1.sub_org,row1.weight)&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type) values (row1.imtx_num&lt;B&gt;+_2&lt;/B&gt;,row1.imtx_type,'Y','Tulsa','PTNR_IMPORT')&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type,state_tx_flg) values (row1.imtx_num&lt;B&gt;+_2&lt;/B&gt;,row1.imtx_type,'N','Warwick','PTNR_EXPORT','Y')&lt;BR /&gt;3rd iteration&lt;BR /&gt;----------------&lt;BR /&gt;insert into table1 (imtx_num, imtx_type, sub_org,weight) &amp;nbsp;values (row1.imtx_num&lt;B&gt;+_3&lt;/B&gt;,row1.imtx_type,row1.sub_org,row1.weight)&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type) values (row1.imtx_num&lt;B&gt;+_3&lt;/B&gt;,row1.imtx_type,'Y','Tulsa','PTNR_IMPORT')&lt;BR /&gt;insert into table2 (imtx_num, imtx_type, taxt_status_flg,state,type,state_tx_flg) values (row1.imtx_num&lt;B&gt;+_3&lt;/B&gt;,row1.imtx_type,'N','Warwick','PTNR_EXPORT','Y')&lt;BR /&gt;Input File&lt;BR /&gt;Taxt_Num &amp;nbsp; &amp;nbsp;Taxt_type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Sub_org &amp;nbsp; &amp;nbsp; &amp;nbsp;weight&lt;BR /&gt;-----------------------------------------------------------&lt;BR /&gt;A_1000 &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3.3 &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;A_1000 &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2.2&lt;BR /&gt;&amp;nbsp;A_100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 7.8&lt;BR /&gt;Output Table1 :&lt;BR /&gt;&amp;nbsp;Imtx_Num &amp;nbsp; imtx_type &amp;nbsp; &amp;nbsp; Sub_org &amp;nbsp; &amp;nbsp; &amp;nbsp;weight&lt;BR /&gt;-----------------------------------------------------&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;commercial &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; 3.3&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.2&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp;100 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 7.8&lt;BR /&gt;Output Table2:&lt;BR /&gt;&amp;nbsp;Imtx_Num &amp;nbsp; &amp;nbsp;imtx_type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;taxt_status_flg &amp;nbsp; &amp;nbsp; &amp;nbsp;state &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;State_tx_flg&lt;BR /&gt;-------------------------------------------------------------------------------------------------------------&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tulsa&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PTNR_IMPORT &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;A_1000_1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; N &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Warwick &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PTNR_EXPORT &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tulsa &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PTNR_IMPORT&lt;BR /&gt;A_1000_2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; N &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Warwick &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PTNR_EXPORT &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; Y &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tulsa &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PTNR_IMPORT&lt;BR /&gt;A_1000_3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; commercial &amp;nbsp; &amp;nbsp; &amp;nbsp; N &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Warwick &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PTNR_EXPORT &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Seena</description>
      <pubDate>Tue, 23 Dec 2014 06:13:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219240#M14122</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-23T06:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219241#M14123</link>
      <description>Hi Seena, 
&lt;BR /&gt;Thanks for the clarification.&amp;nbsp; 
&lt;BR /&gt;Try the following approach: 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MC4I.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144749i2EB03B6585AB3B3C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MC4I.png" alt="0683p000009MC4I.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MC4r.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/141435iDF08CD4047C6987C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MC4r.png" alt="0683p000009MC4r.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MC5t.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142132i580BFE8274F69236/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MC5t.png" alt="0683p000009MC5t.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;This should help you. 
&lt;BR /&gt;Let me know it it still doesn't. 
&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;MathurM</description>
      <pubDate>Tue, 23 Dec 2014 09:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219241#M14123</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-23T09:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219242#M14124</link>
      <description>tMap screen-shot 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA19.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/149673i3A1764A39E7EA146/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA19.png" alt="0683p000009MA19.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 23 Dec 2014 09:52:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219242#M14124</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-23T09:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Read using tfileinputexcel and load into Oracle db</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219243#M14125</link>
      <description>Hi Mathur,
&lt;BR /&gt;Thanks for guiding me.It perfectly fixes my issue.I am loving Talend for these beautiful components.tjava,tfixedflowinput all these components are amazing.Even though I am not a java resource,I am able to work using this components.
&lt;BR /&gt;Thankyou Mathur.
&lt;BR /&gt;Best Regards,
&lt;BR /&gt;Seena</description>
      <pubDate>Tue, 23 Dec 2014 10:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Read-using-tfileinputexcel-and-load-into-Oracle-db/m-p/2219243#M14125</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-23T10:24:09Z</dc:date>
    </item>
  </channel>
</rss>

