<?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: Numeric sequence reset in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242736#M29463</link>
    <description>I suggest you to add a feature to improve it.&lt;BR /&gt;Yet, you can duplicate Numeric routine and add a method such as:&lt;BR /&gt;&lt;PRE&gt;    public static void resetSequence(String seqName, int startValue) {&lt;BR /&gt;        seq_Hash.put(seqName, startValue);&lt;BR /&gt;    }&lt;/PRE&gt;</description>
    <pubDate>Fri, 11 Jul 2008 12:39:55 GMT</pubDate>
    <dc:creator>amaumont</dc:creator>
    <dc:date>2008-07-11T12:39:55Z</dc:date>
    <item>
      <title>Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242733#M29460</link>
      <description>Hello,
&lt;BR /&gt;i am using a variable inside a tMap like this ---&amp;gt; Numeric.sequence("s1",1,1) * 10 
&lt;BR /&gt;so for each record processed i get 10, 20 ,30 and so on
&lt;BR /&gt;the problem is that i need to reset this sequence each time i launch the job...
&lt;BR /&gt;when launching the job from inside talend, the sequence is correctly resetted but if i export my job as 
&lt;BR /&gt;webservice, the sequence never resets.
&lt;BR /&gt;is it possible to resolve this problem? Thanks in advance.</description>
      <pubDate>Sat, 16 Nov 2024 14:18:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242733#M29460</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T14:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242734#M29461</link>
      <description>can anyone help?</description>
      <pubDate>Thu, 10 Jul 2008 09:35:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242734#M29461</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-07-10T09:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242735#M29462</link>
      <description>up</description>
      <pubDate>Fri, 11 Jul 2008 10:58:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242735#M29462</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-07-11T10:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242736#M29463</link>
      <description>I suggest you to add a feature to improve it.&lt;BR /&gt;Yet, you can duplicate Numeric routine and add a method such as:&lt;BR /&gt;&lt;PRE&gt;    public static void resetSequence(String seqName, int startValue) {&lt;BR /&gt;        seq_Hash.put(seqName, startValue);&lt;BR /&gt;    }&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Jul 2008 12:39:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242736#M29463</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-07-11T12:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242737#M29464</link>
      <description>thanks a lot, it worked!
&lt;BR /&gt;i created a new Routine, i copied Numeric routine code and i added this method:
&lt;BR /&gt;public static void resetSequence(String seqName){
&lt;BR /&gt; seq_Hash.put(seqName, 0);
&lt;BR /&gt; } 
&lt;BR /&gt;Then i call the method from a tava component. Thanks again for your answer</description>
      <pubDate>Fri, 11 Jul 2008 15:48:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242737#M29464</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2008-07-11T15:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242738#M29465</link>
      <description>Please create a feature to improve the product even this method works, it will improve the product for the next release, thank you.</description>
      <pubDate>Fri, 11 Jul 2008 16:00:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242738#M29465</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-07-11T16:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242739#M29466</link>
      <description>When I try to install this routine, the "seq_Hash.put(seqName, 0);" part get's red-underlined. seq_Hash in particullar.. Any ideas why my TIS 3.2 doesn't have that Java class? Is there any particullar class I need to import on the top of the routine package??&lt;BR /&gt;Help would be much appreciated.</description>
      <pubDate>Thu, 03 Jun 2010 12:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242739#M29466</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-03T12:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242740#M29467</link>
      <description>You should copy sequence related code from Numeric system routine, add new method and use your routine instead of system.</description>
      <pubDate>Fri, 11 Mar 2011 16:44:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242740#M29467</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2011-03-11T16:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242741#M29468</link>
      <description>This may be an old post, but it saved my days of work. Thanks to all that contribute back to the forum.</description>
      <pubDate>Wed, 13 Apr 2016 17:25:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242741#M29468</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-13T17:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242742#M29469</link>
      <description>There's a function to do this now.</description>
      <pubDate>Wed, 20 Apr 2016 08:57:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242742#M29469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-20T08:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242743#M29470</link>
      <description>Do you want to help people by posting the function?</description>
      <pubDate>Wed, 20 Apr 2016 15:16:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242743#M29470</guid>
      <dc:creator>talendtester</dc:creator>
      <dc:date>2016-04-20T15:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric sequence reset</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242744#M29471</link>
      <description>It's in the Numeric system routine at 5.6.2</description>
      <pubDate>Thu, 21 Apr 2016 10:16:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Numeric-sequence-reset/m-p/2242744#M29471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T10:16:58Z</dc:date>
    </item>
  </channel>
</rss>

