-2

I have a requirement where I need to hardcode the hex-decimal value x'FF' in datastage transformer where the column length is "1". Could any help me how to achieve this ?

Thanks, Siva

1 Answers1

0

The Char() function returns the character whose ASCII value is the argument. Therefore: Char(255)

Ray Wurlod
  • 831
  • 1
  • 4
  • 3
  • HI Ray, when i tried the char(255) in transformer the output has no data like its just space(1) but my requirement is insted of blank i need to populate 'FF'. Could you help me how to get that, i tried the NLS option to default and ISO 8859-1 still it give space only, Kindly help me. – Siva Kumar Jul 06 '21 at 07:23
  • 1
    0xFF is not a displayable character. – Ray Wurlod Jul 07 '21 at 08:47