简体   繁体   English

IICS 中的 Oracle 替换和翻译命令

[英]Oracle replace and translate command in IICS

I need to translate these oracle command into Informatica (IICS).我需要将这些 oracle 命令翻译成 Informatica (IICS)。

Please could you tell me how to do?请问你能告诉我怎么做吗?

Regards问候

replace(translate(HDDJD_DG,'²¿àçéèîÀÇɵ','           '),' ','')

and the last one和最后一个

cast('RAP' as varchar2(3)) 

Thanks for your help谢谢你的帮助

Try using the REG_REPLACE function .尝试使用REG_REPLACE 函数 I'm not sure if this will work simply as:我不确定这是否会简单地工作为:

REG_REPLACE( HDDJD_DG, '²¿àçéèîÀÇɵ', '')

or if you'd need to trim after replace:或者如果您需要在更换后修剪:

LTRIM(RTRIM(REG_REPLACE( HDDJD_DG, '²¿àçéèîÀÇɵ', '')))

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM