如何在informatica中将日期时间拆分为日期和时间

发布于 2024-07-26 01:51:20 字数 195 浏览 8 评论 0原文

我使用的是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

另类 2024-08-02 01:51:21

您可以使用以下命令加载平面文件:

对于日期字段:

to_char(get_date_part(in_date,'YYYY'))||to_cha r(get_date_part(in_date,'MM'))||to_char(get_date_pa rt(in_date,'DD')) 

对于时间字段:

to_char(get_date_part(in_date,'HH24'))||to_cha r(get_date_part(in_date,'MI'))||to_char(get_date_pa rt(in_date,'SS'))

You could use the following to load the flat file:

For the date field:

to_char(get_date_part(in_date,'YYYY'))||to_cha r(get_date_part(in_date,'MM'))||to_char(get_date_pa rt(in_date,'DD')) 

For the time field:

to_char(get_date_part(in_date,'HH24'))||to_cha r(get_date_part(in_date,'MI'))||to_char(get_date_pa rt(in_date,'SS'))
情归归情 2024-08-02 01:51:21

无需分裂。 只需将日期和时间列连接到同一端口即可。

No need to split. just connect date and time column with the same port.

海风掠过北极光 2024-08-02 01:51:21

阅读有关 GETDATEPART 函数的帮助部分

Read the help section on the GETDATEPART function

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文