Have anyone encountered this error message in the SQL server log?
Warning Master Merge operation was not done for dbid 56, objid 286624064, so querying index will be slow. Please run alter fulltext catalog reorganize.
No other errors are recorded.
The effects are that the full text catalog takes several hours to rebuild on a newly created database (very little data in it). It renders the full-text feature literally unusable...
It is fresh installation on a Windows Server 2008 R2 and the SQL server:
Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64) Dec 28 2012 20:23:12 Copyright (c) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 6.1 (Build 7601: Service Pack 1)
Nothing else is installed on the server.
I have browsed google - nothing found. Even the Microsoft documentation does not mention this error.
Update: The error message appears numerous times in the event log. Each time when when the catalog is updated. This message is not a translation from other message. It is in English. Here is another sample of it:
2013-05-22 17:53:39.27 spid70s Warning Master Merge operation was not done for dbid 89, objid 565577053, so querying index will be slow. Please run alter fulltext catalog reorganize.
2013-05-22 17:53:39.27 spid257s Warning Master Merge operation was not done for dbid 89, objid 539148966, so querying index will be slow. Please run alter fulltext catalog reorganize.
2013-05-22 17:53:39.30 spid343s Warning Master Merge operation was not done for dbid 89, objid 667149422, so querying index will be slow. Please run alter fulltext catalog reorganize.
2013-05-22 17:53:39.30 spid135s Warning Master Merge operation was not done for dbid 89, objid 603149194, so querying index will be slow. Please run alter fulltext catalog reorganize.
Here is more information about the database:
The database have been created after the SQL server was installed. It was not a restore from a database created on another version of the SQL server.
The database have one full-text catalog. This full-text catalog is the default.
The database have about 300 tables. Each table have one or two columns with full-text index enabled.
Each table in the database have up to 10 records in it.
Because such databases are created with code, I have the ability to create them on different SQL servers. When such database is created on SQL Server 2008 or 2008 R2, there is no errors in the log and the full-text re-index them for up to a second. (Eg. It works with the other versions of the SQL server, not on SQL 2012).