<?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: no timestamp data type in talend? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216253#M12334</link>
    <description>amm and is the same as the timestamp format ?</description>
    <pubDate>Wed, 05 Nov 2008 17:34:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-11-05T17:34:37Z</dc:date>
    <item>
      <title>no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216250#M12331</link>
      <description>-&lt;BR /&gt;It converts it into date types .......... or is there any date pattern like - yyyy-mm-dd hh:mm:ss</description>
      <pubDate>Sat, 16 Nov 2024 14:10:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216250#M12331</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216251#M12332</link>
      <description>I also want to know an answer to it please.</description>
      <pubDate>Wed, 05 Nov 2008 12:34:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216251#M12332</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-05T12:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216252#M12333</link>
      <description>the Date type can be formatted however you want, by using &lt;BR /&gt;&lt;PRE&gt;TalendDate.formatDate("yyyy-MM-dd HH:mm:ss",context.myDate)&lt;/PRE&gt;&lt;BR /&gt;personally, if I want just the date or time of a context variable with the type Date, I do this:&lt;BR /&gt;&lt;PRE&gt;TalendDate.parseDate("yyyy-MM-dd",TalendDate.formatDate("yyyy-MM-dd",context.myDate))&lt;BR /&gt;TalendDate.parseDate("HH:mm:ss",TalendDate.formatDate("HH:mm:ss",context.myDate))&lt;/PRE&gt;&lt;BR /&gt;&lt;A href="http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html" rel="nofollow noopener noreferrer"&gt;http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html&lt;/A&gt;</description>
      <pubDate>Wed, 05 Nov 2008 17:32:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216252#M12333</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-05T17:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216253#M12334</link>
      <description>amm and is the same as the timestamp format ?</description>
      <pubDate>Wed, 05 Nov 2008 17:34:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216253#M12334</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-05T17:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216254#M12335</link>
      <description>yea, if you don't format the date it will come out in this format:&lt;BR /&gt;&lt;PRE&gt;EEE MMM dd HH:mm:ss zzz yyyy&lt;/PRE&gt;&lt;BR /&gt;example: &lt;BR /&gt;&lt;PRE&gt;context.myDate = TalendDate.getCurrentDate();&lt;BR /&gt;System.out.println(context.myDate);&lt;BR /&gt;System.out.println();&lt;BR /&gt;System.out.println(TalendDate.formatDate("EEE MMM dd HH:mm:ss zzz yyyy",context.myDate));&lt;BR /&gt;System.out.println(TalendDate.formatDate("yyyy-MM-dd HH:mm:ss",context.myDate));&lt;BR /&gt;System.out.println(TalendDate.formatDate("yyyy-MM-dd",context.myDate));&lt;BR /&gt;System.out.println(TalendDate.formatDate("HH:mm:ss",context.myDate));&lt;BR /&gt;System.out.println();&lt;BR /&gt;System.out.println(TalendDate.parseDate("yyyy-MM-dd",TalendDate.formatDate("yyyy-MM-dd",context.myDate)));&lt;BR /&gt;System.out.println(TalendDate.parseDate("HH:mm:ss",TalendDate.formatDate("HH:mm:ss",context.myDate)));&lt;/PRE&gt;&lt;BR /&gt;outputs these results:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Starting job tFileList_filter at 12:41 05/11/2008.&lt;BR /&gt;Wed Nov 05 12:41:07 EST 2008&lt;BR /&gt;Wed Nov 05 12:41:07 EST 2008&lt;BR /&gt;2008-11-05 12:41:07&lt;BR /&gt;2008-11-05&lt;BR /&gt;12:41:07&lt;BR /&gt;Wed Nov 05 00:00:00 EST 2008&lt;BR /&gt;Thu Jan 01 12:41:07 EST 1970&lt;BR /&gt;Job tFileList_filter ended at 12:41 05/11/2008. &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 05 Nov 2008 17:40:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216254#M12335</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-05T17:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216255#M12336</link>
      <description>Hello &lt;BR /&gt;I am using TalendDate.parseDate("dd/MM/yyyy", row1.value1) to make my value1 (which is in String) to Date. It works but if i let the field null, i have an error message unpaseable field "".&lt;BR /&gt;how can i solve it?&lt;BR /&gt;thanks</description>
      <pubDate>Fri, 07 Nov 2008 10:52:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216255#M12336</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-07T10:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216256#M12337</link>
      <description>thanks for posting that question... 
&lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://yutwg22796.i.lithium.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; waiting for replies</description>
      <pubDate>Fri, 07 Nov 2008 10:59:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216256#M12337</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-07T10:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216257#M12338</link>
      <description>I am still asking, is timestamp and date are the same thing ?</description>
      <pubDate>Fri, 07 Nov 2008 11:01:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216257#M12338</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-07T11:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216258#M12339</link>
      <description>well , you can set default value as "0000-00-00 00:00:00" even for date in Talend , even though the corressponding field is timestamp type in ur table.It works for me. And at the same time , also use:- TalendDate.formatDate("yyyy-MM-dd HH:mm:ss",context.myDate)</description>
      <pubDate>Fri, 07 Nov 2008 11:22:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216258#M12339</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-07T11:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216259#M12340</link>
      <description>weel if you should put 00/00/0000 it sould be worked, but i would like to let nothing in it like "".&lt;BR /&gt;What is the difference between formatDate and parseDate?</description>
      <pubDate>Fri, 07 Nov 2008 14:31:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216259#M12340</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-07T14:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216260#M12341</link>
      <description>if your row1 is nullable you can write this :
&lt;BR /&gt;(row1.value1==null)?null:TalendDate.parseDate("dd/MM/yyyy", row1.value1)
&lt;BR /&gt;with this formula if value1 is null the expression will return null else it will use the TalendDate.parseDate method
&lt;BR /&gt;please notice that this formula is usefull if you don't want to have nullPointerException using a method
&lt;BR /&gt;cheer</description>
      <pubDate>Fri, 07 Nov 2008 14:45:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216260#M12341</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-07T14:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216261#M12342</link>
      <description>ok thanks that works execpt that i don't do &lt;BR /&gt;(row1.value1==null)?null:TalendDate.parseDate("dd/MM/yyyy", row1.value1)  but i do&lt;BR /&gt;&lt;BR /&gt;(row1.value1.equals("")?null:TalendDate.parseDate("dd/MM/yyyy", row1.value1)</description>
      <pubDate>Fri, 07 Nov 2008 15:11:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216261#M12342</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-07T15:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216262#M12343</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;What is the difference between formatDate and parseDate?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;when you press CTRL-SPACE and the list pops up/down, if you click on a formula once, a box should pop up to the side telling you about that formula 
&lt;BR /&gt;but from what i recall, parseDate takes a string value and makes it into a date. formatDate takes a date value and makes it into a string 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;I am still asking, is timestamp and date are the same thing ?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;A href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html" rel="nofollow noopener noreferrer"&gt;http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html&lt;/A&gt; 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;The class Date represents a specific instant in time, with millisecond precision.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;if your row1 is nullable you can write this :&lt;BR /&gt;(row1.value1==null)?null:TalendDate.parseDate("dd/MM/yyyy", row1.value1)&lt;BR /&gt;with this formula if value1 is null the expression will return null else it will use the TalendDate.parseDate method&lt;BR /&gt;please notice that this formula is usefull if you don't want to have nullPointerException using a method&lt;BR /&gt;cheer&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;I'm glad I decided to read through the rest of the topic before posting to use an if statement, since you've already told him how to do it, and cleaner than I was going to suggest</description>
      <pubDate>Fri, 07 Nov 2008 17:46:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216262#M12343</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-07T17:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216263#M12344</link>
      <description>Hello ,&lt;BR /&gt;I have an issue with MSSQL. &lt;BR /&gt;I have a field in a MSSQL table of TIMESTAMP datatype. I didn?t find a corresponding type in Talend&lt;BR /&gt;So I used the ?date? type. Unfortunately, it doesn?t load the data in MSSQL table and I have the following error message:&lt;BR /&gt;Disallowed implicit conversion from data type datetime to data type timestamp,&lt;BR /&gt; table 'IT_Test.Invoice', column 'TS'. &lt;BR /&gt;Use the CONVERT function to run this query. &lt;BR /&gt;The ?date? type in Talend seems not to be compatible with ?timestamp? in MSSQL server.&lt;BR /&gt;Do you have any ideea what to do ?&lt;BR /&gt;Thank you very much !&lt;BR /&gt;Gabi</description>
      <pubDate>Wed, 06 Jan 2010 22:23:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216263#M12344</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-01-06T22:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216264#M12345</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hello ,&lt;BR /&gt;I have an issue with MSSQL. &lt;BR /&gt;I have a field in a MSSQL table of TIMESTAMP datatype. I didn?t find a corresponding type in Talend&lt;BR /&gt;So I used the ?date? type. Unfortunately, it doesn?t load the data in MSSQL table and I have the following error message:&lt;BR /&gt;Disallowed implicit conversion from data type datetime to data type timestamp,&lt;BR /&gt; table 'IT_Test.Invoice', column 'TS'. &lt;BR /&gt;Use the CONVERT function to run this query. &lt;BR /&gt;The ?date? type in Talend seems not to be compatible with ?timestamp? in MSSQL server.&lt;BR /&gt;Do you have any ideea what to do ?&lt;BR /&gt;Thank you very much !&lt;BR /&gt;Gabi&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;What's your data looks like in mssql table? 
&lt;BR /&gt;Have you defined the date pattern on schema? For example, here is a data in mssql table 2009-10-12 15:14:10, you should define the date pattern on schema as 
&lt;IMG id="smileysad" class="emoticon emoticon-smileysad" src="https://yutwg22796.i.lithium.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;see my screenshot) 
&lt;BR /&gt;"yyyy-MM-dd HH:mm:ss" 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Thu, 07 Jan 2010 03:02:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216264#M12345</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-01-07T03:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216265#M12346</link>
      <description>Hi Shong, 
&lt;BR /&gt;Yes, I've defined exactly like in MSSQL, which is "yyyy-MM-dd HH:mm:ss" 
&lt;BR /&gt;I still get the error : 
&lt;BR /&gt;Disallowed implicit conversion from data type datetime to data type timestamp</description>
      <pubDate>Thu, 07 Jan 2010 18:38:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216265#M12346</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-01-07T18:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216266#M12347</link>
      <description>i have input table contains: 
&lt;BR /&gt;abc, 20 
&lt;BR /&gt;xyz,45 
&lt;BR /&gt;and i m mapping directly in tmap from input to output and connecting to output table(toraclebulkexec) 
&lt;BR /&gt;now i m getting output like; 
&lt;BR /&gt;"abc",20 
&lt;BR /&gt;"xyz",45 
&lt;BR /&gt;why i m getting double quotes 
&lt;BR /&gt;how can i remove double quotes 
&lt;BR /&gt;help me pls.</description>
      <pubDate>Wed, 01 Jun 2011 17:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216266#M12347</guid>
      <dc:creator>nara1</dc:creator>
      <dc:date>2011-06-01T17:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216267#M12348</link>
      <description>hi all, &lt;BR /&gt;i thought this thread was relevant to ask my question. &lt;BR /&gt;i have a string "yyyy-mm-dd HH:mm:ss" for example "2011-04-23 17:23:26". how do i convert this string to date using talend?</description>
      <pubDate>Wed, 01 Jun 2011 18:24:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216267#M12348</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-01T18:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216268#M12349</link>
      <description>hi&lt;BR /&gt;use TalendDate.parseDate("yyyy-MM-dd HH:mm:ss","2011-04-23 17:23:26")</description>
      <pubDate>Thu, 02 Jun 2011 09:45:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216268#M12349</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-02T09:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: no timestamp data type in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216269#M12350</link>
      <description>Thanks a lot!</description>
      <pubDate>Thu, 02 Jun 2011 21:26:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/no-timestamp-data-type-in-talend/m-p/2216269#M12350</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-02T21:26:20Z</dc:date>
    </item>
  </channel>
</rss>

