Can someone explain this to me?
Gives me the message:
Null values not allowed in column or variable IGRP3.
I'm forcing the value to be either the actual value or *blank...
What gives??
PHP Code:
Update TOFILE A
Set ( iGRP3, iGRP4 )
= ( Select coalesce( iGRP3, ' ' ),
coalesce( iGRP4, ' ' )
from FROMFILE B
Where A.iACTV = B.iACTV
and A.iSTOR = B.iSTOR
and A.iITEM = B.iITEM )
Null values not allowed in column or variable IGRP3.
I'm forcing the value to be either the actual value or *blank...
What gives??

Comment