<?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 to get 15 min   time interval data from database in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309934#M81111</link>
    <description>&lt;P&gt;&lt;U&gt;hello, I have to add (timestamp '2018-01-16 16:30:00' and timestamp '2018-01-16 16:30:00' + interval '15' MINUTE) this condition in talend job, how to add this time interval in talend&lt;/U&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jan 2018 13:33:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-01-17T13:33:53Z</dc:date>
    <item>
      <title>to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309934#M81111</link>
      <description>&lt;P&gt;&lt;U&gt;hello, I have to add (timestamp '2018-01-16 16:30:00' and timestamp '2018-01-16 16:30:00' + interval '15' MINUTE) this condition in talend job, how to add this time interval in talend&lt;/U&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 13:33:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309934#M81111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-17T13:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309935#M81112</link>
      <description>&lt;P&gt;I'm assuming you mean that you need to load the current system time and the system time plus 15 minutes using Talend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this code in a tJava and see if it does what you want. If not, can you elaborate on your requirement a little?&lt;/P&gt;&lt;PRE&gt;Date now = routines.TalendDate.getCurrentDate();
System.out.println(now);
Date nowPlus15 = routines.TalendDate.addDate(now, 15, "mm");
System.out.println(nowPlus15);&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Jan 2018 14:22:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309935#M81112</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-17T14:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309936#M81113</link>
      <description>I want every 15 min data only from oracle database means input table is&lt;BR /&gt;Oracle database and I want every 15 min interval data into csv file. How&lt;BR /&gt;can I create job suggest me.</description>
      <pubDate>Wed, 17 Jan 2018 15:26:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309936#M81113</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-17T15:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309937#M81114</link>
      <description>&lt;P&gt;Write a job to get the data you want and set it to append 1 row to your CSV file for each run. Then schedule the job to run every 15 minutes (using crontab, a windows scheduler or Talend Administration Center if you have the Enterprise Edition).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want a Job to run continuously to do this, that is a bad idea with the ETL product. You could use the ESB product and have a Route running with a timer set to run every 15 mins. Then connect a cTalendJob component to the Timer to carry out the work I suggested in the paragraph above.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 16:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309937#M81114</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-17T16:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309938#M81115</link>
      <description>Okay... Is there any option in talend open source not Enterprise edition</description>
      <pubDate>Wed, 17 Jan 2018 17:09:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309938#M81115</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-17T17:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309939#M81116</link>
      <description>&lt;P&gt;No. Not for scheduling. But I gave you some alternatives you could try. The ESB route may be tricky to get your head round, but it may open up a plethora of opportunities to you when you get to grips with it. Alternatively, use the crontab to do it (or a Windows scheduler).&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2018 02:07:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309939#M81116</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-18T02:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309940#M81117</link>
      <description>What is the code to add time interval in tjava and how it works to get every 15 min data from oracle input table into csv file.. can u explain the job</description>
      <pubDate>Tue, 23 Jan 2018 06:16:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309940#M81117</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-23T06:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309941#M81118</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to schedule a daily job for every 15 Minutes of time interval need to run. Could you please suggest me to configure a trigger every 15 Minute need to run ?&lt;/P&gt;&lt;P&gt;Please Help me.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 04:14:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309941#M81118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-29T04:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309942#M81119</link>
      <description>&lt;P&gt;For Windows you could try using the Task Scheduler (&lt;A href="https://www.digitalcitizen.life/how-create-task-basic-task-wizard" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.digitalcitizen.life/how-create-task-basic-task-wizard&lt;/A&gt;). For Linux you might try the crontab (&lt;A href="https://tecadmin.net/crontab-in-linux-with-20-examples-of-cron-schedule/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://tecadmin.net/crontab-in-linux-with-20-examples-of-cron-schedule/&lt;/A&gt;).&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 09:26:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309942#M81119</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-29T09:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309943#M81120</link>
      <description>&lt;P&gt;I want every 15 min of systime data... what is the java code for this job???&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 12:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309943#M81120</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-01T12:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: to get 15 min   time interval data from database</title>
      <link>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309944#M81121</link>
      <description>Hello , your tjava code gives the output of 15 min time interval but could u please suggest me how can I get data from toracleinput using tjava, could u please explain the job??&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Feb 2018 15:20:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/to-get-15-min-time-interval-data-from-database/m-p/2309944#M81121</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-01T15:20:02Z</dc:date>
    </item>
  </channel>
</rss>

