I am trying to remove not null constraint in sql server 2008 without losing data.
ALTER TABLE YourTable ALTER COLUMN YourColumn NULL
Alter Table "your table" DROP Constraint "your constraint name"