如何在informatica中将日期时间拆分为日期和时间
我使用的是 Informatica 8.1.1。 源平面文件包含一个日期/时间字段。 我想将其作为两个单独的列日期和时间加载到目标表中。 我尝试使用 TO_DATE 函数来分别获取日期和时间。 但它给出了一些错误。
如何将此日期/时间拆分为日期和时间? 或者 我们可以将源平面文件中的字符串值加载到目标表中的日期值中吗?
I am using Informatica 8.1.1. Source flat file contains one date/time field. I want to load it as two separate columns date and time in target table.
I tried TO_DATE function to get the date and time separately.
But it is giving some errors.
How can I split this date/time into date and time?
or
Can we load a string value from source flat file into a date value in target table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用以下命令加载平面文件:
对于日期字段:
对于时间字段:
You could use the following to load the flat file:
For the date field:
For the time field:
无需分裂。 只需将日期和时间列连接到同一端口即可。
No need to split. just connect date and time column with the same port.
阅读有关 GETDATEPART 函数的帮助部分
Read the help section on the GETDATEPART function