SQL2000 installation problem-the solution to the installation failure of the Microsoft full-text search engine package

SQL installation problem-the solution to the installation failure of the Microsoft full-text search engine package

Installing sql server2000 enterprise edition on windows 2003 sp1,
whether it is a new installation or a later component installation, it will prompt:
"The installation of the Microsoft full-text search engine package failed. (-2147220991) Event 0x80040201 cannot call any subscribers"
I tried both versions and it didn’t work , An enterprise version and a personal version, I installed it all morning and did not solve it. Finally, I found some information and tried slowly by myself. The problem was solved. The solution is as follows:

1. Clear the registry first, because your installation failed, there must be some unwanted stuff in the registry.

2. Find the MSDN folder in the SQL SERVER2000 installation directory, double-click setup.exe, that is to say, install the server first.

3 Come again to upgrade and install, do not select "Full-text search" when installing components, otherwise, an error will be prompted.

If the above does not work, check whether Office 2003 is installed. If it is installed, uninstall it and try it first. (It is best to uninstall all the products of the OFFICE series)

Note: The SQL SERVER2000 installed in this way is authenticated in Windows mode.

If you want to change to the mixed mode, do the following to solve:

1. Use Enterprise Manager on the server side and select "Use Windows Authentication" to connect to SQL.
2. Expand "SQL Server Group", right-click the name of the SQL Server server, select "Properties", and then
3. Under "Authentication", select "SQL Server and Windows".
4. Restart the SQL Server service.

If you still can’t log in with SQL Server authentication, then you have to modify the registry.

1. Click "Start"-"Run", enter regedit, and press Enter to enter the registry editor;
2. Expand the registry keys one by one, and browse to the following registry keys:
[HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/MSSQLServer/MSSQLServer]
3. Find the name "LoginMode" on the right side of the screen, double-click to edit the double-byte value;
4. Change the original value from 1 to 2, and click "OK";
5. Close the registry editor;
6. Restart the SQL Server service

Guess you like

Origin blog.csdn.net/weixin_42041819/article/details/103298269