<?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: Date parsing not working correctly in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250968#M35059</link>
    <description>Hi
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Exception in component tFileingOutputDelimited_1&lt;BR /&gt;java.text.ParseException: Unparseable date: "2013-10-01 00:00:57.8501"&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Are you reading the data from a text file or trying to write the data into a file? Why the exception is occurring on tFileOutputDelimited? Can you upload a screenshot of the job? It will be helpful for us to find out the problem.
&lt;BR /&gt;Shong</description>
    <pubDate>Fri, 22 Nov 2013 09:35:05 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-11-22T09:35:05Z</dc:date>
    <item>
      <title>Date parsing not working correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250965#M35056</link>
      <description>When using the tFileInputDelimited component to parse large text files, I encounter parse exceptions on some lines but not all. 
&lt;BR /&gt;For example, this date cannot be parsed: "2013-10-01 00:00:57.8501" using pattern "yyyy-MM-dd HH:mm:ss.SSSS". Which is strange as the pattern matches. 
&lt;BR /&gt;However, when I parse the date using custom Java code in the tMap component, as shown below, it works perfectly: 
&lt;BR /&gt;new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSSS").parse(row1.timestamp); 
&lt;BR /&gt;This is the error thrown: 
&lt;BR /&gt; 
&lt;FONT color="red"&gt;Exception in component tFileOutputDelimited_1&lt;BR /&gt;java.text.ParseException: Unparseable date: "2013-10-01 00:00:57.8501"&lt;BR /&gt; at java.text.DateFormat.parse(DateFormat.java:357)&lt;BR /&gt; at vex_poc.loadvps_0_1.LoadVPS.tMSSqlInput_1Process(LoadVPS.java:1657)&lt;BR /&gt; at vex_poc.loadvps_0_1.LoadVPS.runJobInTOS(LoadVPS.java:2795)&lt;BR /&gt; at vex_poc.loadvps_0_1.LoadVPS.main(LoadVPS.java:2660)&lt;BR /&gt;&lt;/FONT&gt; 
&lt;BR /&gt;On two million rows of data the following date parsing errors were shown: 
&lt;BR /&gt; 
&lt;FONT color="red"&gt;&lt;BR /&gt;Unparseable date: "2013-10-01 00:00:44.7136"&lt;BR /&gt;Unparseable date: "2013-10-01 00:01:35.1515"&lt;BR /&gt;Unparseable date: "2013-10-01 00:01:37.1904"&lt;BR /&gt;Unparseable date: "2013-10-01 00:01:44.4690"&lt;BR /&gt;Unparseable date: "2013-10-01 00:00:40.5869"&lt;BR /&gt;Unparseable date: "2013-10-01 00:01:09.4939"&lt;BR /&gt;Unparseable date: "2013-10-01 00:00:50.2467"&lt;BR /&gt;Unparseable date: "2013-10-01 00:01:44.8292"&lt;BR /&gt;Unparseable date: "2013-10-01 00:00:06.7424"&lt;BR /&gt;Unparseable date: "2013-10-01 00:00:57.8501"&lt;BR /&gt;Unparseable date: "2013-10-02 00:01:52.1378"&lt;BR /&gt;Unparseable date: "2013-10-02 00:00:10.6584"&lt;BR /&gt;Unparseable date: "2013-10-02 00:00:56.9370"&lt;BR /&gt;Unparseable date: "2013-10-02 00:01:24.1466"&lt;BR /&gt;Unparseable date: "2013-10-02 00:00:44.6291"&lt;BR /&gt;Unparseable date: "2013-10-02 00:01:40.5416"&lt;BR /&gt;Unparseable date: "2013-10-02 00:00:14.2098"&lt;BR /&gt;Unparseable date: "2013-10-02 00:01:19.0343"&lt;BR /&gt;Unparseable date: "2013-10-02 00:01:07.2618"&lt;BR /&gt;Unparseable date: "2013-10-02 00:00:02.1862"&lt;BR /&gt;Unparseable date: "2013-10-02 00:00:33.9170"&lt;BR /&gt;Unparseable date: "2013-10-03 00:00:04.4873"&lt;BR /&gt;Unparseable date: "2013-10-03 00:00:44.0131"&lt;BR /&gt;Unparseable date: "2013-10-03 00:00:35.4066"&lt;BR /&gt;Unparseable date: "2013-10-03 00:01:59.1118"&lt;BR /&gt;Unparseable date: "2013-10-03 00:01:50.8237"&lt;BR /&gt;Unparseable date: "2013-10-03 00:00:19.9430"&lt;BR /&gt;Unparseable date: "2013-10-03 00:00:27.6579"&lt;BR /&gt;Unparseable date: "2013-10-03 00:00:23.7156"&lt;BR /&gt;Unparseable date: "2013-10-04 00:00:35.8906"&lt;BR /&gt;Unparseable date: "2013-10-04 00:01:07.6214"&lt;BR /&gt;Unparseable date: "2013-10-04 00:01:37.4683"&lt;BR /&gt;Unparseable date: "2013-10-04 00:01:22.7267"&lt;BR /&gt;Unparseable date: "2013-10-04 00:00:20.1533"&lt;BR /&gt;Unparseable date: "2013-10-04 00:00:07.9380"&lt;BR /&gt;Unparseable date: "2013-10-04 00:00:51.2984"&lt;BR /&gt;Unparseable date: "2013-10-04 00:01:03.6638"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:29.5364"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:20.7690"&lt;BR /&gt;Unparseable date: "2013-10-05 00:00:29.6125"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:05.9774"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:48.0046"&lt;BR /&gt;Unparseable date: "2013-10-05 00:00:39.0355"&lt;BR /&gt;Unparseable date: "2013-10-05 00:00:22.7387"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:20.0623"&lt;BR /&gt;Unparseable date: "2013-10-06 00:01:08.3299"&lt;BR /&gt;Unparseable date: "2013-10-06 00:01:36.5042"&lt;BR /&gt;Unparseable date: "2013-10-06 00:00:53.0247"&lt;BR /&gt;Unparseable date: "2013-10-06 00:01:01.8703"&lt;BR /&gt;Unparseable date: "2013-10-06 00:00:27.1125"&lt;BR /&gt;Unparseable date: "2013-10-06 00:00:03.9768"&lt;BR /&gt;Unparseable date: "2013-10-06 00:00:31.8917"&lt;BR /&gt;Unparseable date: "2013-10-06 00:00:58.2272"&lt;BR /&gt;Unparseable date: "2013-10-07 00:00:30.3225"&lt;BR /&gt;Unparseable date: "2013-10-07 00:00:26.8298"&lt;BR /&gt;Unparseable date: "2013-10-07 00:00:06.1332"&lt;BR /&gt;Unparseable date: "2013-10-07 00:00:26.5540"&lt;BR /&gt;Unparseable date: "2013-10-07 00:02:01.9031"&lt;BR /&gt;Unparseable date: "2013-10-07 00:01:02.4971"&lt;BR /&gt;Unparseable date: "2013-10-07 00:01:18.0759"&lt;BR /&gt;Unparseable date: "2013-10-07 00:02:12.7640"&lt;BR /&gt;Unparseable date: "2013-10-08 00:01:48.6258"&lt;BR /&gt;Unparseable date: "2013-10-08 00:00:42.5078"&lt;BR /&gt;Unparseable date: "2013-10-08 00:01:57.3518"&lt;BR /&gt;Unparseable date: "2013-10-08 00:00:21.1289"&lt;BR /&gt;Unparseable date: "2013-10-08 00:00:53.8282"&lt;BR /&gt;Unparseable date: "2013-10-08 00:00:09.6477"&lt;BR /&gt;Unparseable date: "2013-10-08 00:00:00.4702"&lt;BR /&gt;Unparseable date: "2013-10-08 00:01:29.7475"&lt;BR /&gt;Unparseable date: "2013-10-01 08:31:51.1603"&lt;BR /&gt;Unparseable date: "2013-10-01 00:45:16.7969"&lt;BR /&gt;Unparseable date: "2013-10-01 00:46:13.9862"&lt;BR /&gt;Unparseable date: "2013-10-01 07:15:08.4224"&lt;BR /&gt;Unparseable date: "2013-10-01 07:10:23.2221"&lt;BR /&gt;Unparseable date: "2013-10-01 00:44:58.3764"&lt;BR /&gt;Unparseable date: "2013-10-01 07:38:02.0846"&lt;BR /&gt;Unparseable date: "2013-10-01 00:45:52.1720"&lt;BR /&gt;Unparseable date: "2013-10-01 07:39:18.0950"&lt;BR /&gt;Unparseable date: "2013-10-01 07:15:49.1590"&lt;BR /&gt;Unparseable date: "2013-10-01 07:33:26.2823"&lt;BR /&gt;Unparseable date: "2013-10-02 00:59:12.5594"&lt;BR /&gt;Unparseable date: "2013-10-02 06:22:16.8337"&lt;BR /&gt;Unparseable date: "2013-10-02 06:23:33.3612"&lt;BR /&gt;Unparseable date: "2013-10-02 06:23:50.5728"&lt;BR /&gt;Unparseable date: "2013-10-02 06:23:24.4567"&lt;BR /&gt;Unparseable date: "2013-10-02 06:22:35.3111"&lt;BR /&gt;Unparseable date: "2013-10-02 06:21:52.6602"&lt;BR /&gt;Unparseable date: "2013-10-02 06:23:08.6709"&lt;BR /&gt;Unparseable date: "2013-10-02 06:10:16.4948"&lt;BR /&gt;Unparseable date: "2013-10-02 06:23:57.7057"&lt;BR /&gt;Unparseable date: "2013-10-02 06:23:19.0003"&lt;BR /&gt;Unparseable date: "2013-10-03 06:11:52.5383"&lt;BR /&gt;Unparseable date: "2013-10-03 00:10:13.5562"&lt;BR /&gt;Unparseable date: "2013-10-03 00:11:43.7269"&lt;BR /&gt;Unparseable date: "2013-10-03 06:04:14.0712"&lt;BR /&gt;Unparseable date: "2013-10-03 06:04:45.5816"&lt;BR /&gt;Unparseable date: "2013-10-03 06:06:31.6253"&lt;BR /&gt;Unparseable date: "2013-10-03 06:07:41.5555"&lt;BR /&gt;Unparseable date: "2013-10-03 06:09:28.2038"&lt;BR /&gt;Unparseable date: "2013-10-04 00:03:35.2952"&lt;BR /&gt;Unparseable date: "2013-10-04 00:01:10.0863"&lt;BR /&gt;Unparseable date: "2013-10-04 00:06:48.6132"&lt;BR /&gt;Unparseable date: "2013-10-04 00:06:11.8361"&lt;BR /&gt;Unparseable date: "2013-10-04 00:02:07.5166"&lt;BR /&gt;Unparseable date: "2013-10-04 00:01:27.0331"&lt;BR /&gt;Unparseable date: "2013-10-04 00:00:04.7771"&lt;BR /&gt;Unparseable date: "2013-10-04 00:03:20.4186"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:00.2701"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:11.6116"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:16.3666"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:13.3251"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:32.9035"&lt;BR /&gt;Unparseable date: "2013-10-05 00:01:01.4999"&lt;BR /&gt;Unparseable date: "2013-10-05 00:02:16.6372"&lt;BR /&gt;Unparseable date: "2013-10-05 00:02:01.2309"&lt;BR /&gt;Unparseable date: "2013-10-06 00:10:00.5059"&lt;BR /&gt;Unparseable date: "2013-10-06 00:00:10.1404"&lt;BR /&gt;Unparseable date: "2013-10-06 00:01:44.0231"&lt;BR /&gt;Unparseable date: "2013-10-06 00:00:39.9982"&lt;BR /&gt;Unparseable date: "2013-10-06 00:01:29.6085"&lt;BR /&gt;Unparseable date: "2013-10-06 00:02:12.7442"&lt;BR /&gt;Unparseable date: "2013-10-06 00:01:56.7907"&lt;BR /&gt;Unparseable date: "2013-10-06 00:05:29.9706"&lt;BR /&gt;Unparseable date: "2013-10-07 00:37:06.2371"&lt;BR /&gt;Unparseable date: "2013-10-07 00:23:23.5935"&lt;BR /&gt;Unparseable date: "2013-10-07 00:11:32.9989"&lt;BR /&gt;Unparseable date: "2013-10-07 00:04:08.3591"&lt;BR /&gt;Unparseable date: "2013-10-07 00:11:09.9572"&lt;BR /&gt;Unparseable date: "2013-10-07 00:07:56.0767"&lt;BR /&gt;Unparseable date: "2013-10-07 00:04:06.3676"&lt;BR /&gt;Unparseable date: "2013-10-07 00:16:40.0237"&lt;BR /&gt;Unparseable date: "2013-10-08 00:01:58.6417"&lt;BR /&gt;Unparseable date: "2013-10-08 00:03:27.2543"&lt;BR /&gt;Unparseable date: "2013-10-08 00:01:14.4822"&lt;BR /&gt;Unparseable date: "2013-10-08 00:04:20.0631"&lt;BR /&gt;Unparseable date: "2013-10-08 00:02:30.4096"&lt;BR /&gt;Unparseable date: "2013-10-08 00:04:37.6765"&lt;BR /&gt;Unparseable date: "2013-10-08 00:00:46.9281"&lt;BR /&gt;Unparseable date: "2013-10-08 00:01:11.7449"&lt;BR /&gt;Unparseable date: "2013-10-09 00:00:31.7545"&lt;BR /&gt;Unparseable date: "2013-10-09 00:00:05.0934"&lt;BR /&gt;Unparseable date: "2013-10-09 00:00:16.7251"&lt;BR /&gt;Unparseable date: "2013-10-09 00:00:04.2281"&lt;BR /&gt;Unparseable date: "2013-10-09 00:00:02.5598"&lt;BR /&gt;Unparseable date: "2013-10-09 00:00:01.2796"&lt;BR /&gt;Unparseable date: "2013-10-09 00:00:43.5848"&lt;BR /&gt;Unparseable date: "2013-10-09 00:00:03.1136"&lt;BR /&gt;Unparseable date: "2013-10-10 00:00:10.7399"&lt;BR /&gt;Unparseable date: "2013-10-10 00:00:11.7387"&lt;BR /&gt;Unparseable date: "2013-10-10 00:00:09.9275"&lt;BR /&gt;Unparseable date: "2013-10-10 00:00:00.4898"&lt;BR /&gt;Unparseable date: "2013-10-10 00:00:12.2962"&lt;BR /&gt;Unparseable date: "2013-10-10 00:00:03.8540"&lt;BR /&gt;Unparseable date: "2013-10-10 00:00:13.5002"&lt;BR /&gt;Unparseable date: "2013-10-10 00:00:09.2189"&lt;BR /&gt;Unparseable date: "2013-10-11 00:00:06.4925"&lt;BR /&gt;Unparseable date: "2013-10-11 00:00:21.9676"&lt;BR /&gt;Unparseable date: "2013-10-11 00:00:02.2022"&lt;BR /&gt;Unparseable date: "2013-10-11 00:00:11.2966"&lt;BR /&gt;Unparseable date: "2013-10-11 00:00:07.8026"&lt;BR /&gt;Unparseable date: "2013-10-11 00:00:03.1848"&lt;BR /&gt;Unparseable date: "2013-10-11 00:00:10.8030"&lt;BR /&gt;Unparseable date: "2013-10-11 00:00:01.4940"&lt;BR /&gt;Unparseable date: "2013-10-12 00:00:06.0656"&lt;BR /&gt;Unparseable date: "2013-10-12 00:00:00.7374"&lt;BR /&gt;Unparseable date: "2013-10-12 00:00:00.6524"&lt;BR /&gt;Unparseable date: "2013-10-12 00:00:09.9331"&lt;BR /&gt;Unparseable date: "2013-10-12 00:00:00.1383"&lt;BR /&gt;Unparseable date: "2013-10-12 00:00:03.7568"&lt;BR /&gt;Unparseable date: "2013-10-12 00:00:04.8284"&lt;BR /&gt;Unparseable date: "2013-10-12 00:00:00.9484"&lt;BR /&gt;Unparseable date: "2013-10-13 00:00:04.7033"&lt;BR /&gt;Unparseable date: "2013-10-13 00:00:02.0740"&lt;BR /&gt;Unparseable date: "2013-10-13 00:00:05.4356"&lt;BR /&gt;Unparseable date: "2013-10-13 00:00:03.0842"&lt;BR /&gt;Unparseable date: "2013-10-13 00:00:05.8875"&lt;BR /&gt;Unparseable date: "2013-10-13 00:00:24.5297"&lt;BR /&gt;&lt;/FONT&gt;</description>
      <pubDate>Sat, 16 Nov 2024 11:49:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250965#M35056</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T11:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Date parsing not working correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250966#M35057</link>
      <description>Hi, 
&lt;BR /&gt;Is it working when you check out option "Trim all columns" in Advanced Setting of tFileInputDelimited component? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MBpC.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154070i96C925019C989915/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MBpC.png" alt="0683p000009MBpC.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Fri, 22 Nov 2013 02:14:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250966#M35057</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-11-22T02:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Date parsing not working correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250967#M35058</link>
      <description>Hello,
&lt;BR /&gt;Thanks for your answer. The trimming option doesn't help.
&lt;BR /&gt;Below is what my input looks like. It's tab delimited. For some reason the date on the 8257th line is not correctly parsed.
&lt;BR /&gt;2013-10-01 23:58:44.8850 248723 VPS 2726 372542
&lt;BR /&gt;2013-10-01 23:59:22.2324 3049544 VPS 2714 372612
&lt;BR /&gt;2013-10-01 23:59:45.7266 1468083 VPS 2676 372823
&lt;BR /&gt;
&lt;FONT color="red"&gt;2013-10-01 00:00:44.7136 346492 VPS 2700 372740&lt;/FONT&gt;
&lt;BR /&gt;2013-10-01 00:02:33.9008 1039553 VPS 2652 372337
&lt;BR /&gt;2013-10-01 00:02:37.7853 2067373 VPS 2726 372550
&lt;BR /&gt;2013-10-01 00:02:56.6462 310077 VPS 2726 372581
&lt;BR /&gt;2013-10-01 00:03:15.0547 317185 VPS 2694 371915
&lt;BR /&gt;2013-10-01 00:03:30.2963 310077 VPS 2726 372577
&lt;BR /&gt;This is (part of) the error output:
&lt;BR /&gt;Starting job LoadVPS at 09:49 22/11/2013.
&lt;BR /&gt;
&lt;FONT color="red"&gt;&lt;BR /&gt; connecting to socket on port 3823&lt;BR /&gt; connected&lt;BR /&gt;Unparseable date: "2013-10-01 00:00:44.7136"&lt;BR /&gt;Unparseable date: "2013-10-01 00:01:35.1515"&lt;BR /&gt;Unparseable date: "2013-10-01 00:01:37.1904"&lt;BR /&gt;Unparseable date: "2013-10-01 00:01:44.4690"&lt;BR /&gt;Unparseable date: "2013-10-01 00:00:40.5869"&lt;BR /&gt;...&lt;BR /&gt;&lt;/FONT&gt;</description>
      <pubDate>Fri, 22 Nov 2013 09:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250967#M35058</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-11-22T09:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Date parsing not working correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250968#M35059</link>
      <description>Hi
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Exception in component tFileingOutputDelimited_1&lt;BR /&gt;java.text.ParseException: Unparseable date: "2013-10-01 00:00:57.8501"&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Are you reading the data from a text file or trying to write the data into a file? Why the exception is occurring on tFileOutputDelimited? Can you upload a screenshot of the job? It will be helpful for us to find out the problem.
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 22 Nov 2013 09:35:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250968#M35059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-11-22T09:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Date parsing not working correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250969#M35060</link>
      <description>Hi again, 
&lt;BR /&gt;Thanks for your help! 
&lt;BR /&gt;I found the problem in the end. The data contained several non-printable characters at the start of some lines in the dataset. I only found these characters on Linux using 'cat --show-nonprinting'. During my first work on Mac OS I couldn't see them for some unknown reason. 
&lt;BR /&gt;Glad it's solved now, my bad. Doesn't the trimming function in Talend remove these? 
&lt;BR /&gt;52737 2013-10-01 23:59:21.9805 608197 VPS 2701 372474^M 
&lt;BR /&gt; 52738 
&lt;FONT color="red"&gt;M-oM-;M-?&lt;/FONT&gt;2013-10-01 00:01:09.4939 175144 VPS 2700 372654^M 
&lt;BR /&gt; 52739 2013-10-01 00:02:06.0605 195582 VPS 2726 372558^M 
&lt;BR /&gt; 52740 2013-10-01 00:02:06.8094 310077 VPS 2726 372549^M 
&lt;BR /&gt;Cheers,</description>
      <pubDate>Fri, 22 Nov 2013 14:45:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-parsing-not-working-correctly/m-p/2250969#M35060</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-11-22T14:45:51Z</dc:date>
    </item>
  </channel>
</rss>

