且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

无法启用在Azure上的SQL数据库V12全文搜索

更新时间:2023-02-14 21:06:19

执行如果万一你想避免MSFT通信的往返下面通过连接到数据库的两个语句,以及修复了这一点。

Executing the below two statements by connecting to the database as well fixes this if in case you want to avoid the round trip of communicating to MSFT.

 Alter database [dbname] set read_committed_snapshot off with rollback immediate
Alter database [dbname] set read_committed_snapshot on with rollback immediate