Erro: não é possível alterar ou descartar a coluna 'x' porque ela está habilitada para pesquisa de texto completo

Estou refatorando um banco de dados antigo e removendo as colunas que não estão mais em uso. O banco de dados costumava ter indexação de texto completo, portanto, algumas colunas são marcadas para texto completo.

Como eu posso removê-los?

Notas:

DB é o MS SQL Server Express 2008O serviço de pesquisa de texto completo não está mais instalado

Editar:
eu tentei

<code>ALTER FULLTEXT INDEX ON tableName  DROP (ColumnName)
</code>

Mas recebe esse erro:

<code>Full-text crawl manager has not been initialized. Any crawl started before 
the crawl manager was fully initialized will need to be restarted. Please 
restart SQL Server and retry the command. You should also check the error 
log to fix any failures that might have caused the crawl manager to fail.
</code>

questionAnswers(2)

yourAnswerToTheQuestion