【发布时间】:2015-07-10 02:17:23
【问题描述】:
我正在尝试在我的 Azure SQL 数据库上启用全文搜索。我将我的数据库升级到 V12 标准实例。升级已成功完成。我这么说是因为门户网站上的状态显示为“在线”。但是,当我在下面执行此命令时,
CREATE FULLTEXT CATALOG ftCatalog AS DEFAULT;
它抛出一个错误说,
Msg 9972, Level 16, State 100, Line 2
Database is not fully started up or it is not in an ONLINE state. Try the full-text DDL command again after database is started up and becomes ONLINE.
我正在关注这个博客post
可能出了什么问题?
【问题讨论】:
标签: sql-server azure full-text-search azure-sql-database