I am trying to remove not null constraint in sql server 2008 without losing data.
Advertisement
Answer
ALTER TABLE YourTable ALTER COLUMN YourColumn columnType NULL
I am trying to remove not null constraint in sql server 2008 without losing data.
ALTER TABLE YourTable ALTER COLUMN YourColumn columnType NULL