Tagged Questions
The oracle-text tag has no wiki summary.
11
votes
1answer
307 views
Suggestions for Querying Database for Names
I have an Oracle database that, like many, has a table containing biographical information. On which, I would like to search by name in a "natural" way.
The table has forename and surname fields and, ...
9
votes
4answers
304 views
Oracle: Full text search with condition
I've created an Oracle Text index like the following:
create index my_idx on my_table (text) indextype is ctxsys.context;
And I can then do the following:
select * from my_table where ...
2
votes
1answer
1k views
Set up Oracle Text to index values of multiple columns in Oracle tables
I have a set of Oracle tables that describe information about property owners. Owner names and other text values are stored in multiple fields in multiple related tables, for each owner. I would like ...
1
vote
3answers
110 views
Oracle Text Criteria Query in JPA
Is it possible to perform a JPA Criteria Query using Oracle Text's contains statement, and if so how?
1
vote
0answers
31 views
Can I use OQL with an Oracle Text Index?
I have a database with an Oracle Text index and I would like to use an access layer with the Object Query Language (OQL).
I would like to use statements as
SELECT id FROM table WHERE CONTAINS(column, ...
1
vote
1answer
723 views
How to get around 4000 characters limitation of text_query in Oracle's CONTAINS operator?
In Oracle, the full text search syntax of Contains operator is:
CONTAINS(
[schema.]column,
text_query VARCHAR2
[,label NUMBER]) RETURN NUMBER;
which means ...
0
votes
0answers
19 views
Oracle text search using .Net and Devart's dotConnect for Oracle
We have a web application that needs to search across all tables using a keyword. I have not found much on Google other than using a Linq query.
We need the search to be performed by Oracle, not the ...
0
votes
0answers
293 views
Search across multiple tables with joins using Oracle Text
(Note: This question is cross-posted from ServerFault.)
I need to perform oracle text search across multiple tables in my oracle 10g database. The tables have the following structures:
Table1 (ID, ...