There are no fields in the database that allow nulls and there are no defaults in that database either. [CODE] select object_Name(constid) as ConstratintName , object_name(id) As ConstraintParent, * from sysconstraints WITH (nolock) where objectproperty(constid,'IsDefault')=1 or objectproperty(constid,'IsDefaultCnst')=1 or objectproperty(constid,'CnstIsColumn')=1 or objectproperty(id,'TableHasDefaultCnst')=1