SQL Search is Slow on the First Search
This is an Old one but some people I find still get stuck scratching their head, including me.
If you are using full Text indexing for your web based searches, you most likely don’t have Internet access on your SQL server, and this is the root cause of the search performing very slowly on the first attempt of the search, as SQL is trying to establish a connection for ‘Signature verification’
You can turn this feature off:
run
sp_fulltext_service ‘verify_signature’, 0;
GO
for more info go to



January 20th, 2009 at 8:06 am
[...] April 30, 2008 SQL Search is Slow on the First Search - MOVED Posted by bradmarsh under Microsoft, SQL Server, Software, Techie This post has moved please go to : http://bradmarsh.net/index.php/2008/04/30/sql-search-is-slow-on-the-first-search/ [...]