Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: "google search" using Oracle Text

Re: "google search" using Oracle Text

From: jaromir nemec <jaromir_at_db-nemec.com>
Date: Mon, 19 Apr 2004 08:38:46 +0200
Message-ID: <021401c425d8$f8a086d0$2600000a@JARAWIN>

>for example, if the search string is "Oracle Text", I would execute the
>following queries to retrieve the relevant records:
>select * from texttable where contains (text, 'Oracle Text')>1;
>select * from texttable where contains (text, 'Oracle')>1;
>select * from texttable where contains (text, 'Text')>1;

to get a document with any of the query terms use OR (|)

select * from texttable where contains (text, 'Oracle OR Text')>1;

see
http://download-west.oracle.com/docs/cd/B10501_01/text.920/a96518/cqoper.htm#1531

regards
Jaromir D.B. Nemec

PS: Mladen - fire (on) your backup admin.



Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------
Received on Mon Apr 19 2004 - 01:36:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US