Hi,
In sql 2008 I try to edit an empty (also happens on non-empty) table a column that is 'Not Null' to 'Null'. And I get an error saying that it must drop and recreate the table.
However I am able to do this via t-sql using the script below:
alter
table dbo.Table_2 alter column Col2 nchar(10) not Null
Why is this happening, is there an explanation for this or is this a bug?
Thanks