我正在重构旧数据库并删除不再使用的列.DB曾经有全文索引,因此,某些列标记为全文.
我该如何删除它们?
笔记:
编辑:
我试过了
ALTER FULLTEXT INDEX ON tableName DROP (ColumnName)
Run Code Online (Sandbox Code Playgroud)
但得到这个错误:
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.
Run Code Online (Sandbox Code Playgroud)