需要在Informatica云表达转换中将比例1到2的双数据类型精度转换

发布于 2025-01-20 16:10:54 字数 218 浏览 0 评论 0原文

我的传入领域 - > double datatType(veeva) - >例如,134.0,45.4,61.234 我的输出必须始终是十进制的2个位置---> file --->现场值:134.00,45.40,61.23

我尝试在Informatica Cloud上创建一个表达式: to_decimal(in_tax,2) 但是它没有给出预期的输出。

My incoming field -->double datattype (veeva)--> for eg.s, 134.0 , 45.4,61.234
My output needs to be always 2 places of decimal --->file ---> field value: 134.00, 45.40, 61.23

I have tried creating an expression on informatica cloud:
TO_DECIMAL( IN_TAX, 2 )
but its not giving the expected output.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

阳光①夏 2025-01-27 16:10:54

将数据类型与十进制点= 2加倍,并使用rough()。我假设您的目标是一个平坦的文件。
如下所示,在Exp变换中创建一个外端口 -

out_tax = ROUND(in_tax,2)  -- data type is DOUBLE(xx,2), where xx is your precision. 

将此端口链接到目标。

Keep the data type to double with decimal point =2 and use round(). I am assuming your target is a flat file.
create an out port in exp transformation like below -

out_tax = ROUND(in_tax,2)  -- data type is DOUBLE(xx,2), where xx is your precision. 

Link this port to target.

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