Thanks, Florent.

No messages in the logs. I've configured Oracle Text in the following way:

BEGIN
    CTXSYS.CTX_DDL.CREATE_PREFERENCE ('MY_LEXER', 'BASIC_LEXER');
    CTXSYS.CTX_DDL.SET_ATTRIBUTE ('MY_LEXER', 'base_letter', 'YES');
    CTXSYS.CTX_DDL.SET_ATTRIBUTE ('MY_LEXER', 'index_stems', 'SPANISH');
    CTXSYS.CTX_DDL.CREATE_PREFERENCE('MY_WORDLIST', 'BASIC_WORDLIST');
    CTXSYS.CTX_DDL.SET_ATTRIBUTE('MY_WORDLIST', 'stemmer', 'SPANISH');
    CTXSYS.CTX_DDL.SET_ATTRIBUTE('MY_WORDLIST', 'substring_index', 'NO');
    CTXSYS.CTX_DDL.SET_ATTRIBUTE('MY_WORDLIST', 'prefix_index', 'NO');
END;
/

And my default-repository-config.xml is:

<?xml version="1.0"?>
<component name="default-repository-config">
  <extension target="org.nuxeo.ecm.core.repository.RepositoryService"
    point="repository">
    <repository name="default"
      factory="org.nuxeo.ecm.core.storage.sql.coremodel.SQLRepositoryFactory">
      <repository name="default">
        <schema>
          <field type="largetext">note</field>
        </schema>
        <indexing>
          <fulltext analyzer="LEXER MY_LEXER WORDLIST MY_WORDLIST"/>
        </indexing>
      </repository>
    </repository>
  </extension>
</component>


I also checked the Oracle Text errors table and it's empty.

Regards.
--
Posted by "enriqueperez" at Nuxeo Discussions <http://nuxeo.org/discussions>
View the complete thread: 
<http://www.nuxeo.org/discussions/thread.jspa?threadID=3742#11542>
_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm

Reply via email to