Subject Re: Importing NULL TimeStamp values via External Files
Author robertgilland
I have found out how to do this:

by the import procedure doing the below:
CASE WHEN ( RTRIM( DATEFIELD )= '' ) THEN NULL ELSE CAST( DATEFIELD AS
TIMESTAMP ) END AS DATEFIELD

Regards,

Robert