<?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: Unparseable date &amp;quot;null&amp;quot; in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258857#M40517</link>
    <description>Hi,&lt;BR /&gt;If your date input is string, try with :&lt;BR /&gt;date.equals("")?null:TalendDate.ParseDate("MM-dd-yyyy HH:mm:ss",date)&lt;BR /&gt;&lt;BR /&gt;I had a case like this, for exemple :&lt;BR /&gt;(input_map.DT_DEB_VALID_OBJ.equals(""))?null:TalendDate.parseDate("MM/dd/yyyy",input_map.DT_DEB_VALID_OBJ)   &lt;BR /&gt;Best Regards,&lt;BR /&gt;Guillaume.</description>
    <pubDate>Mon, 09 Feb 2009 09:28:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-02-09T09:28:58Z</dc:date>
    <item>
      <title>Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258856#M40516</link>
      <description>Hi,&lt;BR /&gt;I work on TIS 2.4.2. and I  have a problem with some dates.&lt;BR /&gt;I have a source datebase that have a field date that can be sometimes "null"&lt;BR /&gt;And I tried to :&lt;BR /&gt;- convert it to string in the SQL request&lt;BR /&gt;- I tried to change the type in a schema of the source to String&lt;BR /&gt;- I tried to make a condition in a tmap : date.equals("null")? " ":date or I tried  date == "null"? " ":date&lt;BR /&gt;What I have to do? create a routine?&lt;BR /&gt;Thanks in advance</description>
      <pubDate>Sat, 16 Nov 2024 14:04:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258856#M40516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258857#M40517</link>
      <description>Hi,&lt;BR /&gt;If your date input is string, try with :&lt;BR /&gt;date.equals("")?null:TalendDate.ParseDate("MM-dd-yyyy HH:mm:ss",date)&lt;BR /&gt;&lt;BR /&gt;I had a case like this, for exemple :&lt;BR /&gt;(input_map.DT_DEB_VALID_OBJ.equals(""))?null:TalendDate.parseDate("MM/dd/yyyy",input_map.DT_DEB_VALID_OBJ)   &lt;BR /&gt;Best Regards,&lt;BR /&gt;Guillaume.</description>
      <pubDate>Mon, 09 Feb 2009 09:28:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258857#M40517</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-02-09T09:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258858#M40518</link>
      <description>But my input is not a String It's a date. &lt;BR /&gt;And I already tried what you propose. &lt;BR /&gt;In addition, It's not " " but null that I have on my source database so it's not the same case.&lt;BR /&gt;But thanks</description>
      <pubDate>Mon, 09 Feb 2009 09:59:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258858#M40518</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-02-09T09:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258859#M40519</link>
      <description>In fact I have a problem to read a date that is null</description>
      <pubDate>Mon, 09 Feb 2009 10:14:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258859#M40519</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-02-09T10:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258860#M40520</link>
      <description>not sure what exactly ur requirement is
&lt;BR /&gt;what i understood is , u r trying tp parse thedate and it is hitting null pointer exception.
&lt;BR /&gt;if this is the case 
&lt;BR /&gt;try
&lt;BR /&gt;null != date? parse : do not parse or set it to null 
&lt;BR /&gt;hopr this would help</description>
      <pubDate>Mon, 09 Feb 2009 10:17:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258860#M40520</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-02-09T10:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258861#M40521</link>
      <description>thanks I will try</description>
      <pubDate>Mon, 09 Feb 2009 10:30:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258861#M40521</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-02-09T10:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258862#M40522</link>
      <description>thanks i had same issue with " "&amp;nbsp;&lt;BR /&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;date.equals("")?null:TalendDate.ParseDate("MM-dd-yyyy HH:mm:ss",date)&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;and I tried and it works for me</description>
      <pubDate>Mon, 24 Nov 2014 09:17:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258862#M40522</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-24T09:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258863#M40523</link>
      <description>How to handle null value in talend.I m using date data type.at the time of excel &amp;nbsp;writing i m unable to handle null value.</description>
      <pubDate>Mon, 18 Apr 2016 07:38:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258863#M40523</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2016-04-18T07:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Unparseable date "null"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258864#M40524</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;How to handle null date value in talend.I m using date data type.at the time of excel &amp;nbsp;writing i m unable to handle null value.plz provide sme suggestion&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 18 Apr 2016 07:40:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparseable-date-quot-null-quot/m-p/2258864#M40524</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2016-04-18T07:40:35Z</dc:date>
    </item>
  </channel>
</rss>

