I developed a database table on my desktop XP Pro Sql server 2000, and populated it there. I built a full text index and I can run and get values with this query
I get data back as I expect and everything works fine.
I copy the table over to the server, rebuild the index, run the same query on the same data and get nothing back. I am really confused.
Any ideas about where to start looking for the solution?
Thanks,
Gordon
Code:
SELECT Level1Desc, Level1,
Level2Desc, Level2,
Level3Desc, Level3,
Level4Desc, Level4,
Level5Desc, Level5,
Level6Desc, Level6,
COUNT(*) as Total FROM SearchTable
WHERE CONTAINS(SearchText, ' "*fluke*" AND "*187*" ')
GROUP BY Level1Desc, Level1,
Level2Desc, Level2,
Level3Desc, Level3,
Level4Desc, Level4,
Level5Desc, Level5,
Level6Desc, Level6
ORDER BY Level1Desc, Level2Desc,
Level3Desc, Level4Desc,
Level5Desc, Level6Desc
I get data back as I expect and everything works fine.
I copy the table over to the server, rebuild the index, run the same query on the same data and get nothing back. I am really confused.
Any ideas about where to start looking for the solution?
Thanks,
Gordon