Both are already set up correctly. I did find the solution though. In my SQL statement, for any date field that is to be assigned a NULL value, this syntax works:
INSERT INTO TABLE
(STRING_FIELD,DATE_FIELD)
VALUES('1212',1,CONVERT(DATETIME,NULL))
Thanks much for your response