
Anonymous
Not applicable
2014-02-10
06:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
[resolved] Insert Date into Oracle DB (Date column)
Hi,
How to insert into a Oracle DB column that only supports Date type, using a tOracleRow component, a date in the format yyyy/mm/dd HH:mm:ss ? I may have already the Date in Talend Date format, or I may have a String (it's indifferent).
Thanks
How to insert into a Oracle DB column that only supports Date type, using a tOracleRow component, a date in the format yyyy/mm/dd HH:mm:ss ? I may have already the Date in Talend Date format, or I may have a String (it's indifferent).
Thanks
275 Views
1 Solution
Accepted Solutions

Anonymous
Not applicable
2014-02-11
04:33 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I've solved it with: TO_DATE('20140211093358', 'YYYYMMDDHH24MISS') , like I found it's done in Oracle sql language.
I've solved it with: TO_DATE('20140211093358', 'YYYYMMDDHH24MISS') , like I found it's done in Oracle sql language.
275 Views
3 Replies

Anonymous
Not applicable
2014-02-10
06:43 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The Talend Date format is exactly the Java Date format and the tOracleOutput component takes that as Date. Oracle DATE type also stores the time unlike other database which truncates the time in DATE typed columns.
275 Views

Anonymous
Not applicable
2014-02-11
04:33 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I've solved it with: TO_DATE('20140211093358', 'YYYYMMDDHH24MISS') , like I found it's done in Oracle sql language.
I've solved it with: TO_DATE('20140211093358', 'YYYYMMDDHH24MISS') , like I found it's done in Oracle sql language.
276 Views

Anonymous
Not applicable
2014-02-11
05:26 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can do this but you lose the possibility to check the input data for correct format and create rejects and helpful log outputs.
275 Views
