MySQL Forums
Forum List  »  Full-Text Search

Re: Oracle 8i to mySQL full text search issues.
Posted by: Josh Chamas
Date: November 25, 2004 04:30AM

sathiya.thangavelu wrote:
> Can any one tell the difference between full text
> search between Sql Server, Oracle and My SQL? Is
> there a global way to do full text search for all
> RDBMS?

Here is a global way to do full text search...

select * from TABLE where col like '%MATCH%'

Unfortunately this is very slow. Vendor specific fast text searching like MySQL fulltext index is not specified by the ANSI SQL standard and therefore will not be consistent across various database technologies.

Regards,

Josh

Josh Chamas
Director, Professional Services
MySQL Inc., www.mysql.com
Get More with MySQL! http://www.mysql.com/consulting

Options: ReplyQuote


Subject
Views
Written By
Posted
4092
September 08, 2004 05:46AM
Re: Oracle 8i to mySQL full text search issues.
4216
November 25, 2004 04:30AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.