Viewing 3 posts - 1 through 3 (of 3 total)
This is the query:
Select *
from
(
select (top 500 row_number() OVER (ORDER BY(rank desc) as resnum, rank, description, table2.col, table3.col, table4.col
from table1 inner join...
May 30, 2008 at 1:26 am
#822130
Thanks to Matt and Grant!
Using the Full-text index, my friend has been able to reduce the query speed by more than half.
But there was a problem. The time taken is...
May 29, 2008 at 11:35 am
#821899
Thanks guys for all the response.
I just receive some info from my friend about how to optimize speed and wonder if this indeed can work. Anyway, the table is already...
May 29, 2008 at 10:05 am
#821839