<?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 Date format and loading into an Oracle Database. in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207974#M7399</link>
    <description>Hi,
&lt;BR /&gt;I have a comma delimited file and one of the columns in the file is a date. The date format is as follows
&lt;BR /&gt;1/5/2011 2:25:54 AM. I am trying to insert this date format into an Oracle database using the tOracleBulkExec. What is the best way of inserting this date format into a column of type date in an Oracle 10G database.
&lt;BR /&gt;Any help/advice/suggestion is greatly appreciated.
&lt;BR /&gt;Thank you,
&lt;BR /&gt;Santhosh.</description>
    <pubDate>Sat, 16 Nov 2024 13:09:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T13:09:18Z</dc:date>
    <item>
      <title>Date format and loading into an Oracle Database.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207974#M7399</link>
      <description>Hi,
&lt;BR /&gt;I have a comma delimited file and one of the columns in the file is a date. The date format is as follows
&lt;BR /&gt;1/5/2011 2:25:54 AM. I am trying to insert this date format into an Oracle database using the tOracleBulkExec. What is the best way of inserting this date format into a column of type date in an Oracle 10G database.
&lt;BR /&gt;Any help/advice/suggestion is greatly appreciated.
&lt;BR /&gt;Thank you,
&lt;BR /&gt;Santhosh.</description>
      <pubDate>Sat, 16 Nov 2024 13:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207974#M7399</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Date format and loading into an Oracle Database.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207975#M7400</link>
      <description>you will need to define the date pattern in your input schema correctly. from your sample data it should probably be:
&lt;BR /&gt;
&lt;PRE&gt;dd/MM/yyyy hh:mm:ss aa&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Jan 2011 20:47:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207975#M7400</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-07T20:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Date format and loading into an Oracle Database.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207976#M7401</link>
      <description>Hello John, 
&lt;BR /&gt;My date format is MM/dd/yyyy hh:mm:ss aa. I tried changing date pattern for one of the date columns to this format in the schema but it still does not work. So I am using the "into table clause" in tOracleBulkExec to insert data into the database by mentioning the date format as 
&lt;BR /&gt;column datatype format 
&lt;BR /&gt;EVENTDATE DATE 'MM/DD/YYYY HH:MI 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M9p6.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134116iFBD5D7F21624A744/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M9p6.png" alt="0683p000009M9p6.png" /&gt;&lt;/span&gt;S AM' 
&lt;BR /&gt;which is in an Oracle format. 
&lt;BR /&gt;I still have not figured out how to use the date pattern format in the schema to insert date datatype data into an Oracle database. Can somebody please advice/help on how this can be done. How is the date pattern in the schema used effectively to insert a date into an Oracle database? 
&lt;BR /&gt;Thank you, 
&lt;BR /&gt;Santhosh.</description>
      <pubDate>Fri, 07 Jan 2011 23:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207976#M7401</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-07T23:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Date format and loading into an Oracle Database.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207977#M7402</link>
      <description>You can always have Oracle parse the date for you by passing it as a string and then using a TO_DATE in your inserts: 
&lt;BR /&gt; Under advanced settings in your ouput, replace your date column with something like this: 
&lt;BR /&gt;TO_DATE('MM/DD/YYYY HH:MI 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M9p6.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134116iFBD5D7F21624A744/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M9p6.png" alt="0683p000009M9p6.png" /&gt;&lt;/span&gt;S AM',?)</description>
      <pubDate>Sat, 08 Jan 2011 18:28:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-format-and-loading-into-an-Oracle-Database/m-p/2207977#M7402</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-08T18:28:59Z</dc:date>
    </item>
  </channel>
</rss>

