<?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 add an empty row in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339652#M107772</link>
    <description>Hi&lt;BR /&gt;There is an easy workaround.&lt;BR /&gt;Save all records in Oracle table into a temp delimited file.&lt;BR /&gt;You can't read rows one by one from DB. Because the performance will be awful.&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
    <pubDate>Tue, 28 Feb 2012 07:04:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-02-28T07:04:08Z</dc:date>
    <item>
      <title>how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339647#M107767</link>
      <description>hi,&lt;BR /&gt;i have input data as&lt;BR /&gt;acctid   acctno  status&lt;BR /&gt;-----------------------&lt;BR /&gt;1           IS1234   A&lt;BR /&gt;2           IS1234   A&lt;BR /&gt;3           BS1234   A&lt;BR /&gt;4           BS1234   A&lt;BR /&gt;5           IS129     A&lt;BR /&gt;I want data as&lt;BR /&gt;acctid   acctno  status&lt;BR /&gt;-----------------------&lt;BR /&gt;1           IS1234   A&lt;BR /&gt;2           IS1234   A&lt;BR /&gt;3           BS1234   A&lt;BR /&gt;4           BS1234   A&lt;BR /&gt;5           IS129     A&lt;BR /&gt;new empty row created after new account no exists. so, to differentiate between account nos, we need to insert a new empty row.&lt;BR /&gt;how to do this?&lt;BR /&gt;pls reply.</description>
      <pubDate>Sat, 16 Nov 2024 12:20:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339647#M107767</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339648#M107768</link>
      <description>Hi&lt;BR /&gt;Here is a screnario which may help you.&lt;BR /&gt;Use tLoop to iterate each row of input file and insert into target file.&lt;BR /&gt;The aim of tJavaRow is to compare current acctno column with previous row.&lt;BR /&gt;If they are different, set context.flag as true and trigger run-if to insert an empty row.&lt;BR /&gt;The following job is just an example. You'd better change it to fit your requirment.&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
      <pubDate>Mon, 27 Feb 2012 08:17:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339648#M107768</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-27T08:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339649#M107769</link>
      <description>hi,&lt;BR /&gt;thanks, it works fine.&lt;BR /&gt;but i have job as   tmap---&amp;gt;toracleoutput, i dont want tloop and tfileoutputdelimit append in my jobs.&lt;BR /&gt;is there any way to do this with out these components?</description>
      <pubDate>Tue, 28 Feb 2012 05:56:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339649#M107769</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-28T05:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339650#M107770</link>
      <description>Hi&lt;BR /&gt;You can use tOracleOutput instead of tFileDelimited.&lt;BR /&gt;But i want to say your requirment is a little special.&lt;BR /&gt;Oracle is relational database. Inserting an empty row into Oracle is abnormal.&lt;BR /&gt;Why do you want that?&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
      <pubDate>Tue, 28 Feb 2012 06:00:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339650#M107770</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-28T06:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339651#M107771</link>
      <description>my job looks as
&lt;BR /&gt;
&lt;BR /&gt;tmap---&amp;gt;toracleoutput
&lt;BR /&gt;on sub jobok
&lt;BR /&gt;toracleinput---&amp;gt;tfileoutputdelimit
&lt;BR /&gt;in output file i want to insert empty rows .
&lt;BR /&gt;but in example, you implement with tfileinputdelimit, tloop. 
&lt;BR /&gt;here how to implement them? I want to read data from toracleinput and insert empty rows into tfileoutputdelimit.
&lt;BR /&gt;how to read one row at a time from toracleinput
&lt;BR /&gt;how we can give the "to" value for tloop component with out hardcoding? I mean i have to give number of rows of toracleinput.</description>
      <pubDate>Tue, 28 Feb 2012 06:53:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339651#M107771</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-28T06:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339652#M107772</link>
      <description>Hi&lt;BR /&gt;There is an easy workaround.&lt;BR /&gt;Save all records in Oracle table into a temp delimited file.&lt;BR /&gt;You can't read rows one by one from DB. Because the performance will be awful.&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
      <pubDate>Tue, 28 Feb 2012 07:04:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339652#M107772</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-28T07:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339653#M107773</link>
      <description>Hello,&lt;BR /&gt;Where and how are you defining the second images context.flag and context.line?&lt;BR /&gt;I am new with Talend, I am trying to replay this example but I can't find where to define it.&lt;BR /&gt;thks for your response&lt;BR /&gt;valery</description>
      <pubDate>Tue, 28 Feb 2012 10:16:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339653#M107773</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-28T10:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339654#M107774</link>
      <description>Hi Valery&lt;BR /&gt;Click on "Contexts" tag and you will find a "+" button.&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
      <pubDate>Tue, 28 Feb 2012 11:47:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339654#M107774</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-28T11:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339655#M107775</link>
      <description>thks a lot and excuse me for thi simple question but it's not obvious when you start with the product.&lt;BR /&gt;thks&lt;BR /&gt;Valery</description>
      <pubDate>Tue, 28 Feb 2012 12:42:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339655#M107775</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-28T12:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to add an empty row</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339656#M107776</link>
      <description>thanks,&lt;BR /&gt; &lt;BR /&gt;i will try this.</description>
      <pubDate>Wed, 29 Feb 2012 09:25:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-add-an-empty-row/m-p/2339656#M107776</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-29T09:25:12Z</dc:date>
    </item>
  </channel>
</rss>

