For some reason, I need update one of my table columns from "NOT NULL" to "NULL". The command is simple:
ALTER TABLE TBLOGDOCMESSAGE ALTER COLUMN PROCESSID BIGINT NULL
The problem is that the command is taking to much time to run. My table contains about 30M registers (but my datacenter could have more than 120M registers). The column has a non clustered index on it and is not a FK.
There is a way of speeding up the command in SQLServer 2008 and up?
bigint?