April 6, 2006 at 6:57 am
It seems like a pretty straight forward error message... your table won't allow nulls in the Status column but you're trying to add rows from data that contains no status. You could temporarily disable the constraint (I believe) and import the data but that will simply defeat the whole purpose of the NOT NULL constraint on the Status column.
One way to get around this is to create a DEFAULT on the Status column... perhaps "Imported" or "Not Processed" would do.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing post 1 (of 2 total)
You must be logged in to reply to this topic. Login to reply