1

I would like to remove the decimal point from the column.

For example, D21.3 would become D213

Someone help me, please.

Krishna
  • 25
  • 4

2 Answers2

0

If you are using DataStage 9.1 or above, try:

Ereplace(ColumnName, ".", "")
K H A N
  • 234
  • 1
  • 8
0

In Netezza

=> select translate('D21.3','.','');
 TRANSLATE
-----------
 D213
Mark F
  • 271
  • 1
  • 1