I have a table in SQL server 2008.
I need a column that until now wasn't necessary, not to allow NULL
anymore, without droping the table.
I tried to do something like this:
ALTER TABLE [Sessions] ALTER COLUMN region_id NOT NULL;
EDIT: It was a small syntax error. solved.