Set up Oracle Text to index values of multiple columns in Oracle tables - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T02:03:56Zhttp://stackoverflow.com/feeds/question/571758http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/571758/set-up-oracle-text-to-index-values-of-multiple-columns-in-oracle-tables1Set up Oracle Text to index values of multiple columns in Oracle tablesJoshL2009-02-21T00:21:47Z2009-02-22T03:08:33Z
<p>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 to index the contents of these fields. My goal is to provide a single field where a user can enter keywords to locate owners.</p>
<p>How do I set up Oracle Text to accomplish this?</p>
http://stackoverflow.com/questions/571758/set-up-oracle-text-to-index-values-of-multiple-columns-in-oracle-tables/574231#5742311Answer by Nick for Set up Oracle Text to index values of multiple columns in Oracle tablesNick2009-02-22T03:08:33Z2009-02-22T03:08:33Z<p>You'll just need to create a multiple datastore preference and pass it in as a parameter to the index.</p>
<pre><code>begin
ctx_ddl.create_preference('my_multi', 'MULTI_COLUMN_DATASTORE');
ctx_ddl.set_attribute('my_multi', 'columns', 'column1, column2, column3');
end;
create index myindex on mytable(docs)
indextype is ctxsys.context
parameters ('DATASTORE my_multi');
</code></pre>
<p><a href="http://download.oracle.com/docs/cd/B19306_01/text.102/b14217/ind.htm#sthref281" rel="nofollow">http://download.oracle.com/docs/cd/B19306_01/text.102/b14217/ind.htm#sthref281</a></p>