SQL 2008 full text search with ORDER BY and TOP clause and no answer from the server -
I have the following SQL query:
Text (nolock) from SELECT TOP 200 * Where no results are returned within 10 minutes (*, '' * Ram * '' and '1 *'), article_number if I stop the query after a few minutes I give it some record.
There are 10,000 records in the article table, full text list is article at 4-5 fields, so there is only 1 table in it.
If I do not write ORDER BY or the Top 200 section comes back immediately with the correct answer.
Article_number on INDEX (unique, cluster) in the article table.
I think this is a MS-SQL 2008 bug.
The problem also exists on SQL 2008 SP1.
I do not really understand this problem, please help.
I do not think you can search with words with at least 3 characters. As a test, try searching for something else, such as:
select the top 200 * with the article (nolock) in WHERE ("Ram" and "King * '') Order_number order
Comments
Post a Comment