SQL Server 2005 Full-Text search slow

by fkollmann 3/12/2009 5:17:37 PM

On some SQL Server 2005 installations the full-text search is very slow (> 30 seconds). To fix this issue we found the following solution on the net:

Yes the resolution was to upgrade to SQL 2008 clip_image001

We decided to go with the option of sticking with SQL 2005 and removing the security check; Meaning the full-text indexing agent is loaded without regard to whether it has been properly signed or not.

Here's the SQL command:

Code Snippet

sp_fulltext_service 'verify_signature', 0;
GO

Q: http://social.msdn.microsoft.com/Forums/en-US/sqlsecurity/thread/699221f0-a850-4f1d-b1db-a067a172f866/