Re: Indexing the ORACLE using lucene

2008-05-23 Thread sairam123
tabase.java SearchDatabase.java http://www.nabble.com/file/p17443570/IndexDatabase.java IndexDatabase.java -- View this message in context: http://www.nabble.com/Indexing-the-ORACLE-using-lucene-tp10429479p17443570.html Sent from the Lucene - Java Users mailing list archive at

Re: Indexing the ORACLE using lucene

2007-05-11 Thread Steven Rowe
Krishna Prasad Mekala wrote: > I have to create the index from my Oracle database. Can anybody tell me > how to create the index from Oracle using lucene? Check out Marcelo Ochoa's Oracle/Lucene integration: http://issues.apache.org/jira/browse/LUCENE-724 Steve --

Re: Indexing the ORACLE using lucene

2007-05-11 Thread Chris Lu
Just let you know DBSight already handles the index synchronization with the database, including incremental indexing, with either soft-deleted or hard-deleted records. And it's free without any size limit if you just need to create an index from the database. You don't need to do any java coding

Re: Indexing the ORACLE using lucene

2007-05-11 Thread bbrown
On Fri, 11 May 2007 09:02:04 -0400, Erick Erickson wrote > Search the mail archive for Oracle, and there's lengthy discussion. The > short form is that you query your database, taking selected > data from it and add it to a Lucene document, then write the > document to your Lucene index. Repeat thi

Re: Indexing the ORACLE using lucene

2007-05-11 Thread Erick Erickson
Search the mail archive for Oracle, and there's lengthy discussion. The short form is that you query your database, taking selected data from it and add it to a Lucene document, then write the document to your Lucene index. Repeat this for as many "documents" as you need. There are a large number

Indexing the ORACLE using lucene

2007-05-11 Thread Krishna Prasad Mekala
Hi all, I am new to Lucene. I am developing a small search utility using lucene. I have to create the index from my Oracle database. Can anybody tell me how to create the index from Oracle using lucene? Please send me code snippets if possible. Your valuable help is highly appreciated.