I'm using Pentaho Data Integration Version: 8.0.0.0-28.
Steps used in transformation:
- Table input (Connection: MySQL database)
- Select values
- Insert/ Update (Connection: MySQL database with the same data types as the input)
The input table has a column containing DOUBLE values. I want to always keep two digits after the '.', examples:
1587.657 -> 1587.65
32.5 -> 32.50
693 -> 693.00
0 -> 0.00
I tried to change the format in the Select values step selecting 0.00 in the meta-data format field. It works when I click on preview. The problem is when I check the output table nothing happens.
Any suggestions?