I am trying to remove not null constraint in sql server 2008 without losing data.
Remove column constraint: not null to null
not null
null
ALTER TABLE test ALTER COLUMN column_01 DROP NOT NULL;