Oracle
 sql >> Database >  >> RDS >> Oracle

Eseguire query con caratteri jolly e punto non corrispondenti ai dati con l'indice Oracle Text

Questo perché il tuo lexer predefinito tratta il punto come un separatore di parole.

Configurazione iniziale:

create table my_table(item_number varchar2(50 byte) not null);

insert into my_table values ('1234.1234');

create index my_index on my_table (item_number) 
indextype is ctxsys.context;

Questo ottiene il comportamento che vedi:

SELECT * FROM MY_TABLE
WHERE CONTAINS(ITEM_NUMBER, '%1234') > 0;

--------------------------------------------------
1234.1234

SELECT * FROM MY_TABLE
WHERE CONTAINS(ITEM_NUMBER, '%.1234') > 0;

no rows selected

Se aggiungi un lexer che definisce PRINTJOINS per includere il periodo:

drop index my_index;

begin 
  ctx_ddl.create_preference('my_lexer', 'BASIC_LEXER'); 
  ctx_ddl.set_attribute('my_lexer', 'PRINTJOINS', '.');
end;
/

create index my_index on my_table (item_number) 
indextype is ctxsys.context
parameters ('lexer my_lexer');

quindi si comporta nel modo desiderato:

SELECT * FROM MY_TABLE
WHERE CONTAINS(ITEM_NUMBER, '%.1234') > 0;

ITEM_NUMBER
--------------------------------------------------
1234.1234

Ulteriori informazioni sugli elementi di indicizzazione del testo .