Hello everyone.
Guys I have a jcl and it does a table unload.
In that table have three attribute x, y z ;
x = timestamp and not null;
y = pic S9(3) v usage comp-3 and null;
z = PIC S9(16)V9(2) USAGE COMP-3.
the jcl contains the select below:
Select dateDate(x),
y,
1,
z
from table xpto;
My question is about the number 1, the number 1 means that the attribute is null? If yes , what atributte?
Another question is , the attribute x when I use date ,just ten positons will written , rigtht?
Thank you.