I have added example as below :
input : 31-12-2019
output :31-dec-2019
How to get the month name from month number in Data stage? Is there any function in data stage to do it?
I have added example as below :
input : 31-12-2019
output :31-dec-2019
How to get the month name from month number in Data stage? Is there any function in data stage to do it?
Check out the date format options
%mmm would return "Dec" for your case - if you you really need it lower case as shown in your example you could also use string functionality to substring and concat it manually. Like
datefield[1,3] : "dec" : datefield[7,5]