1

I'm trying to convert a vsam file to db2 table using load utility. However, one of my variables is pic s9(8)v99. When i try to load it into a column decimal(10,2) an error occurs - 02 invalid input numeric. Can you please help?

Kara
  • 6,115
  • 16
  • 50
  • 57
Ana S.
  • 11
  • 1

1 Answers1

1

s9(8)v99 represents a signed variable to me. You may have to use char or varchar to store exact value with sign or try to absolute value.

Sailor
  • 183
  • 5