Does Oracle support full text search?

别等时光非礼了梦想. 提交于 2019-11-26 12:44:33

问题


Is there an Oracle equivalent to MS SQL\'s full text search service?

If so, has anyone implemented it and had good / bad experiences?


回答1:


Oracle Text is the equivalent functionality.

I've had good experiences with it. Assuming that you are maintaining the text index asynchronously, that tends to be the first source of problems, since it may be a bit between a change being made and the index getting updated, but that's normally quite reasonable during normal operation.




回答2:


In addition to what Justin said, you can find more information about Oracle Text here.




回答3:


And further to what Justin said, it is possible to create the index so it updates on commit, although this is not recommended for large amounts of text.

It offers much more power than a simple LIKE compare against %string%.



来源:https://stackoverflow.com/questions/202623/does-oracle-support-full-text-search

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!