I'm trying to convert a column from ntext to nvarchar(MAX), but it seems there is a Full-Text search enabled on it.
Alter table <table> alter column <column> nvarchar
Then i'm going to force the text into rows
update <table> set <column> = <column> +'' where <column> is not null
Finally I'll need to enable the full text search again.
How do I do this in SQL?