Yes, if you set zero off first, then it does insert a true null. Karen
> SET ZERO OFF before the INSERT.
>
>
> If you need to preserve the previous setting do this:
>
>
> SET VAR vSaveZero = (CVAL('ZERO'))
> SET ZERO OFF
> INSERT . . .
> SET ZERO &vSaveZero
> CLEAR VAR vSaveZero
>
>
> --
> Larry
>
>
>
>

