简体   繁体   English

我在 informatica 中使用的以下表达式。 但是这种表达方式对我不起作用。 它显示错误。 任何人请帮助解决这个问题。谢谢

[英]The below expression I used in informatica. But the expression is not working for me. it shows error. Anyone please help to resolve this issue.Thanks

iif(Name='Chargedate',TO_CHAR(value,'YYYYMMDD'),null)

Please help me to change the date format as YYYYMMDD.请帮我将日期格式更改为 YYYYMMDD。

you need to ensure the out/variable column should be a string and value should be a date/time.您需要确保输出/变量列应该是字符串,值应该是日期/时间。

out_val (string) = iif(Name='Chargedate',TO_CHAR(value,'YYYYMMDD'),null)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在 Notepad++ 和 Informatica 中转换以下源文件。 查看给定的源表和我想要的 Output 表 - Convert Below Source File in Notepad++ & Informatica. See the Given Source Table & Output Table I Want 请帮助我创建一个正则表达式来解析我的SQL语句 - Please help me create a regular expression to parse my SQL statement ORA-00936:缺少表达式ORACLE请帮助我 - ORA-00936: missing expression ORACLE please help me Informatica 中表达式级别的语法错误 - Syntax error at expression level in Informatica 嗨,我是SQL / python的新手,有人可以帮助我使用python命令搜索数据库,谢谢:) - Hi, I'm new to SQL/python, could someone please help me with searching databases using python commands, thanks :) 有人可以帮我写一篇关于CTE的好文章吗? 公用表表达式 - Can someone please help me with a good article on CTE. Common table expression 有人可以帮我解决 GROUP BY 问题吗? - Can anyone help me with a GROUP BY issue? 谁能帮我解决以下 sql 问题? - Can anyone help me to solve below sql question? 为什么在以下查询中出现不是按表达式分组的语法错误? - why do I get syntax error of not a group by expression in below query? 请帮助我在以下情况下使用 XML (' ') - Please help me to make use of for XML (' ') in the below case
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM