I have a problem with Fulltext Search in SqlServer2005.
Normal query in sql : select * from employee where EmpName
like '%test %' . It wil take 3 minutes.
Simple Fulltext Search query: select * from employee where contains(EmpName,'"test*"')
It wil return 50,000 records.
Some times results came very fast (between 1 to 2 Minutes) some times it wil execute very slow(5 to 6) minutes.