将数据从 db2 table 加载到 informatica

Load data from db2 table to informatica

我想使用 informatica 将数据从 db2 table 加载到 oracle table。

我的 db2 table 的列 update_user_timestamp 中存储了最新的更新时间戳。我只想加载具有上个月时间戳的数据。

有人可以帮我吗

您可以在源限定符查询的 where 条件中放置如下内容:

month(update_user_timestamp) = month(current timestamp - 1 month)