I am trying to remove not null constraint in sql server 2008 without losing data.
Remove constraint not null to null
not null
null
ALTER TABLE 'test' CHANGE COLUMN 'testColumn' 'testColumn' datatype NULL;