Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys!!!!
Little help here needed
I have a Table and one column (B) has values in the format of XXX.##### (for example BSN.70249 )
Is there a way to change the Letter? Lets say BSN.70249 into NIK.70249????
Thank you in advence
Seemed to have worked for me
Table:
LOAD *,
Replace(OriginalValue, 'BSN', 'NIK') as NewValue;
LOAD * Inline [
OriginalValue
BSN.70249
BSN.78931
];
May be this
Replace(B, 'BSN', 'NIK')
Or this for multiple changes
No it doesnt work.
BSN.70249 into NIK.70249
BSN.78931 into NIK.78931
and so on
I cant use the proposed ways
Replace function isn't working? Really?
not in my load script sorry
Seemed to have worked for me
Table:
LOAD *,
Replace(OriginalValue, 'BSN', 'NIK') as NewValue;
LOAD * Inline [
OriginalValue
BSN.70249
BSN.78931
];
Check the attached sample
ok .... my misstake. forgot to rename the new one..... sorry!!!!
Thank you very much