<?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] Problem inserting dateTime into MDM entity in Talend Data Catalog</title>
    <link>https://community.qlik.com/t5/Talend-Data-Catalog/resolved-Problem-inserting-dateTime-into-MDM-entity/m-p/2327086#M564</link>
    <description>Hi,&lt;BR /&gt;Thanks a lot for your reply.&lt;BR /&gt;It's working now.&lt;BR /&gt;Sheila</description>
    <pubDate>Fri, 16 Jan 2015 07:45:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-01-16T07:45:00Z</dc:date>
    <item>
      <title>[resolved] Problem inserting dateTime into MDM entity</title>
      <link>https://community.qlik.com/t5/Talend-Data-Catalog/resolved-Problem-inserting-dateTime-into-MDM-entity/m-p/2327084#M562</link>
      <description>Hi,
&lt;BR /&gt;I'm a newbie to talend and java. I'm stuck with a problem.
&lt;BR /&gt;
&lt;FONT color="#505050"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Geneva, sans-serif"&gt;I need to insert data into MDM from a MySQL database. So, I have a tMysqlInput component reading rows from a MySQL database. The latter component is linked to a tMap component to transform data which is then sent to a tMDMOutput component for inserting data into the MDM.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT color="#505050"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Geneva, sans-serif"&gt;I have having problems with dateTime values. The field dte_cre of type datetime in MySQL database. Its contents has to be mapped to the field dteCreation of type dateTime in the MDM. The field in the tMap component corresponding to dteCreation is of type Date and date model "dd-MM-yyyy HH:mm:ss".&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT color="#505050"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Geneva, sans-serif"&gt;When I execute the job, I get the following error :&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT color="#505050"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Geneva, sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :-1:-1: cvc-datatype-valid.1.2.1: '06-01-2015 10:04:50' is not a valid value for 'dateTime'.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT color="#505050"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Geneva, sans-serif"&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :-1:-1: cvc-type.3.1.3: The value '06-01-2015 10:04:50' of element 'dteCreation' is not valid.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT color="#505050"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Geneva, sans-serif"&gt;I don't understand why I'm getting this error. The value looks very much like a dateTime to me. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT color="#505050"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Geneva, sans-serif"&gt;Can anybody help me please ?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT color="#505050"&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana, Geneva, sans-serif"&gt;Thanks.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Wed, 14 Jan 2015 14:09:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Data-Catalog/resolved-Problem-inserting-dateTime-into-MDM-entity/m-p/2327084#M562</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-14T14:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Problem inserting dateTime into MDM entity</title>
      <link>https://community.qlik.com/t5/Talend-Data-Catalog/resolved-Problem-inserting-dateTime-into-MDM-entity/m-p/2327085#M563</link>
      <description>Hi,&lt;BR /&gt;As explained in &lt;A href="http://www.w3.org/TR/xmlschema-2/" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/TR/xmlschema-2/&lt;/A&gt;, the date time format for a xsd:datetime is "yyyy-MM-dd'T'HH:mm:ss". It looks like:&lt;BR /&gt;&lt;BR /&gt;you're missing the 'T' separator between the date and the time.&lt;BR /&gt;the date part does not follow "yyyy-MM-dd" format (should be "2015-01-06").&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Wed, 14 Jan 2015 14:16:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Data-Catalog/resolved-Problem-inserting-dateTime-into-MDM-entity/m-p/2327085#M563</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-14T14:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Problem inserting dateTime into MDM entity</title>
      <link>https://community.qlik.com/t5/Talend-Data-Catalog/resolved-Problem-inserting-dateTime-into-MDM-entity/m-p/2327086#M564</link>
      <description>Hi,&lt;BR /&gt;Thanks a lot for your reply.&lt;BR /&gt;It's working now.&lt;BR /&gt;Sheila</description>
      <pubDate>Fri, 16 Jan 2015 07:45:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Data-Catalog/resolved-Problem-inserting-dateTime-into-MDM-entity/m-p/2327086#M564</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-16T07:45:00Z</dc:date>
    </item>
  </channel>
</rss>

