开发者

what's full-text search solution on sql server 2008?

Is it possible to implement google style search on开发者_运维问答 SQL server database on tables and columns? Some examples: I have 5 tables with 25 columns(each has 5 columns), I want to the search can across different tables and columns in one query

as sql serverl full-text search only limit on one table, not sure what's the solution if want to search across tables.


Full text search is great for searching one table. If you have two or three+ tables you could...

  • union your queries (performance doubles every time you union)
  • refactor your database to one table.
  • Create an index table to query from, run t-sql every (x amount of min and repopulate your data from other tables)

If you don't have any authority to change the schema you could try Sphinx, Lucene.net or SOLR

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜