Как я могу решить ошибку 0x800700e9 с полнотекстовым поиском MS SQL Server? - PullRequest
0 голосов
/ 18 сентября 2018

Когда я пытаюсь выполнить

SELECT * 
FROM sys.dm_fts_parser 
(N'"Additivity of measures is not exactly a data warehouse design problem. 
However, you have to realize which aggregate functions you will use 
in reports for which measure, and which aggregate functions 
you will use when aggregating over which dimension."', 1033, 5, 0); 

или EXEC sp_fulltext_service 'restart_all_fdhosts' я получаю следующее сообщение об ошибке:

Msg 30046, Level 16, State 1, Procedure sp_fulltext_service, Line 171
SQL Server encountered error 0x800700e9 while communicating with full-text filter daemon host (FDHost) process. Make sure that the FDHost process is running. To re-start the FDHost process, run the sp_fulltext_service 'restart_all_fdhosts' command or restart the SQL Server instance.

Я пробовал следующие действия:

1. Run SQL Full-text Filter Daemon Launcher as Local Service, Local System, Local User, Local Administrator;
2.Run SSMS as Administrator;
3. Installed SP2 for SQL Server 2014

Никто из них не помог мне. Вот мои логи. Моя система - Windows 7 x64, SQL Server 2014. 1. Журналы SQL Server после ошибки:

Date,Source,Severity,Message
09/17/2018 22:30:02,spid53,Unknown,A new instance of the full-text filter daemon host process has been successfully started.
09/17/2018 22:28:55,spid53,Unknown,Using 'xpstar.dll' version '2014.120.5000' to execute extended stored procedure 'xp_instance_regread'. This is an informational message only; no user action is required.
09/17/2018 22:28:55,spid53,Unknown,Attempting to load library 'xpstar.dll' into memory. This is an informational message only. No user action is required.
09/17/2018 22:28:20,spid52,Unknown,Using 'xpsqlbot.dll' version '2014.120.2000' to execute extended stored procedure 'xp_qv'. This is an informational message only; no user action is required.
09/17/2018 22:28:20,spid52,Unknown,Attempting to load library 'xpsqlbot.dll' into memory. This is an informational message only. No user action is required.

2. События Windows:

Date,Source,Severity,Message,Log ID,Process ID,Mail Item ID,Account ID,Last Modified,Last Modified By,Category,Event,User,Computer
09/17/2018 22:31:45,Service Control Manager,Information,Служба "Служба регистрации ошибок Windows" перешла в состояние Остановлена.,,,,,,,(0),7036,,Juares-ПК
09/17/2018 22:30:03,Service Control Manager,Information,Служба "Служба автоматического обнаружения веб-прокси WinHTTP" перешла в состояние Остановлена.,,,,,,,(0),7036,,Juares-ПК
09/17/2018 22:30:02,spid53,Unknown,A new instance of the full-text filter daemon host process has been successfully started.,,,,,,,,,,
09/17/2018 22:30:02,MSSQLSERVER,Information,A new instance of the full-text filter daemon host process has been successfully started.,,,,,,,(2),30090,Juares-ПК\Juares,Juares-ПК
09/17/2018 22:29:45,Service Control Manager,Information,Служба "Служба регистрации ошибок Windows" перешла в состояние Работает.,,,,,,,(0),7036,,Juares-ПК
09/17/2018 22:28:55,spid53,Unknown,Using 'xpstar.dll' version '2014.120.5000' to execute extended stored procedure 'xp_instance_regread'. This is an informational message only; no user action is required.,,,,,,,,,,
09/17/2018 22:28:55,spid53,Unknown,Attempting to load library 'xpstar.dll' into memory. This is an informational message only. No user action is required.,,,,,,,,,,
09/17/2018 22:28:55,MSSQLSERVER,Information,Using 'xpstar.dll' version '2014.120.5000' to execute extended stored procedure 'xp_instance_regread'. This is an informational message only; no user action is required.,,,,,,,(2),8128,Juares-ПК\Juares,Juares-ПК
09/17/2018 22:28:55,MSSQLSERVER,Information,Attempting to load library 'xpstar.dll' into memory. This is an informational message only. No user action is required.,,,,,,,(2),33090,Juares-ПК\Juares,Juares-ПК
09/17/2018 22:28:20,spid52,Unknown,Using 'xpsqlbot.dll' version '2014.120.2000' to execute extended stored procedure 'xp_qv'. This is an informational message only; no user action is required.,,,,,,,,,,
09/17/2018 22:28:20,spid52,Unknown,Attempting to load library 'xpsqlbot.dll' into memory. This is an informational message only. No user action is required.,,,,,,,,,,
09/17/2018 22:28:20,MSSQLSERVER,Information,Using 'xpsqlbot.dll' version '2014.120.2000' to execute extended stored procedure 'xp_qv'. This is an informational message only; no user action is required.,,,,,,,(2),8128,Juares-ПК\Juares,Juares-ПК
09/17/2018 22:28:20,MSSQLSERVER,Information,Attempting to load library 'xpsqlbot.dll' into memory. This is an informational message only. No user action is required.,,,,,,,(2),33090,Juares-ПК\Juares,Juares-ПК

Пожалуйста, помогите мне !!!!!

...