(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, col1, col2, ...)
SubTable1 (ID, Table1ID, col1, col2, ...)
SubTable2 (ID, Table1ID, col1, col2, ...)

Table1 has one-to-n relationships to both SubTable1 and Subtable2.

At runtime, a client application will provide the search terms to search across the three tables. Only records from either one of the tables that contains the search terms should be joined together and returned to the client application.

Scenario (simplified example)

If a record in Table1 has 10 records in SubTable1 but only 4 out of the 10 contain the search terms, only 4 rows should be returned to the client application. Same goes to SubTable2.

The Question

Is there a way to do this with minimal changes, ideally with only one contains search across all tables? Or do I really need to specify one contains for each table?

Additional Note

  • I followed this and tried creating a dummy text index column in Table1 with preference User_Datastore. A stored procedure is used to retrieve and format all the related data from all the tables in XML format. This does not work because all 10 records in SubTable1 (stated in Scenario) will be returned instead. The row in Table1 matches the search term and then joins with all 10 rows in Subtable1.
link|improve this question
What is the relationship between SUBTABLE1 and SUBTABLE2? If SUBTABLE1 has four matching rows and SUBTABLE2 has two matching rows, how many rows from TABLE1 should we get? – APC Dec 20 '10 at 7:40
@APC: There is no direct relationship between SubTable1 and SubTable2, they are only linked via Table1. There should be six rows in the result table. – Gan Dec 20 '10 at 8:13
I'm very late, but… isn't a materialized view possible? – Benoit Mar 3 at 7:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.