informatica - Expression to replicate Aggregator -


i need replicate below piece of sql expression in informatica column1 decimal(25,6) :

replace(round(coalesce(trim(l '0' column1),0),0),'.000000','') 

i tried using below in aggregator expression :

iif(isnull(column1),0,(round(ltrim(column1,0),0))) 

encountered below error when validated same:

[round]: operand cannot converted number

please me fix issue

it's failing coz applying string function ltrim column1 implicitly converting string , applying round string.

a way solve use round. since column1 decimal, don't need strip left zeroes won't there.


Comments

Popular posts from this blog

javascript - oscilloscope of speaker input stops rendering after a few seconds -

javascript - gulp-nodemon - nodejs restart after file change - Error: listen EADDRINUSE events.js:85 -

Fatal Python error: Py_Initialize: unable to load the file system codec. ImportError: No module named 'encodings' -