<?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] Unix date to normal date (tmap) in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342754#M110583</link>
    <description>Ok, I asked a developer at my company and he had a java class for me, so thanks for your help</description>
    <pubDate>Thu, 09 Apr 2009 08:35:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-04-09T08:35:18Z</dc:date>
    <item>
      <title>[resolved] Unix date to normal date (tmap)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342748#M110577</link>
      <description>I have a Unix date and want to convert it to a normale Date&lt;BR /&gt;for example: 13959.583 -&amp;gt; what will be 21.03.2008 13:59:31&lt;BR /&gt;&lt;BR /&gt;can anyone help me?&lt;BR /&gt;Thanks Florian</description>
      <pubDate>Sat, 16 Nov 2024 14:00:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342748#M110577</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T14:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Unix date to normal date (tmap)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342749#M110578</link>
      <description>Hello
&lt;BR /&gt;Using the following code:
&lt;BR /&gt;
&lt;PRE&gt;new java.util.Date((long)(row1.unixDate*1000))&lt;/PRE&gt;
&lt;BR /&gt;Input file:
&lt;BR /&gt;
&lt;B&gt;&lt;BR /&gt;13959.583&lt;BR /&gt;123451254&lt;BR /&gt;232012.2132&lt;BR /&gt;&lt;/B&gt;
&lt;BR /&gt;Result:
&lt;BR /&gt;
&lt;PRE&gt;Starting job test at 11:17 09/04/2009.&lt;BR /&gt;.-------------------.&lt;BR /&gt;|     tLogRow_1     |&lt;BR /&gt;|=-----------------=|&lt;BR /&gt;|date               |&lt;BR /&gt;|=-----------------=|&lt;BR /&gt;|01.01.1970 11:52:39|&lt;BR /&gt;|30.11.1973 04:00:54|&lt;BR /&gt;|04.01.1970 00:26:52|&lt;BR /&gt;'-------------------'&lt;BR /&gt;Job test ended at 11:17 09/04/2009. &lt;/PRE&gt;
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Thu, 09 Apr 2009 04:22:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342749#M110578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-09T04:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Unix date to normal date (tmap)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342750#M110579</link>
      <description>Hello, thanks for that help, my Unix date is a float, can you help me please?&lt;BR /&gt;It's called SOLL_START Type: float length: 15 precision:10&lt;BR /&gt;It is possible to convert that to Double</description>
      <pubDate>Thu, 09 Apr 2009 07:31:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342750#M110579</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2009-04-09T07:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Unix date to normal date (tmap)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342751#M110580</link>
      <description>Hello friend
&lt;BR /&gt;You only need to select fload to replade double when defining the schema.
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Thu, 09 Apr 2009 07:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342751#M110580</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-09T07:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Unix date to normal date (tmap)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342752#M110581</link>
      <description>That are my Unix Dates in float: &lt;BR /&gt;13959.583&lt;BR /&gt;13964.261&lt;BR /&gt;13958.415&lt;BR /&gt;And that is, what I get as date:&lt;BR /&gt;01.01.1970 04:52:39&lt;BR /&gt;01.01.1970 04:52:44&lt;BR /&gt;01.01.1970 04:52:38&lt;BR /&gt;And it should be:&lt;BR /&gt;21.03.2008 13:59:31&lt;BR /&gt;26.03.2008 06:15:50&lt;BR /&gt;20.03.2008 09:57:36&lt;BR /&gt;So, I need some help please&lt;BR /&gt;Thanks Florian</description>
      <pubDate>Thu, 09 Apr 2009 08:08:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342752#M110581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-09T08:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Unix date to normal date (tmap)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342753#M110582</link>
      <description>Hello 
&lt;BR /&gt;If the unix Dates is 13959.583, the really human date shoule be: 01.01.1970 04:52:39, you can convert it on website: 
&lt;A href="http://www.epochconverter.com/" rel="nofollow noopener noreferrer"&gt;http://www.epochconverter.com/&lt;/A&gt; 
&lt;BR /&gt;I wonder how do you convert it to 21.03.2008 13:59:31 with other tools or is there some relationship between 13959.583 and 21.03.2008 13:59:31? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Thu, 09 Apr 2009 08:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342753#M110582</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-09T08:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Unix date to normal date (tmap)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342754#M110583</link>
      <description>Ok, I asked a developer at my company and he had a java class for me, so thanks for your help</description>
      <pubDate>Thu, 09 Apr 2009 08:35:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Unix-date-to-normal-date-tmap/m-p/2342754#M110583</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-09T08:35:18Z</dc:date>
    </item>
  </channel>
</rss>

