Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Oracle text index

Fariz AliyevMar 13 2024

Hello. I explain my task
1st database is 19c
Imagine

table1 name is “test1 (id number pk,title varchar2(100), title1 varchar2(100)” -this table have million of rows, the user search like this
select * from test1
where title like ‘%hya’ ; (maybe this option> like ‘hya%’ ; like ‘%hya%’)

table2 name is “text1 (id number pk, text clob)" -this table have million of rows, the user search like this
select * from table2
where clob like ‘%avatar’ ; (maybe this option> like ‘avatar%’ ; like ‘%avatar%’)

Above situatuon which index (or indexes create two type of index ) will help me for realy fast ?

I think that maybe >this table use in memory or db_cache_use or etc

Please give me options for indexes or dba solutions

Comments

Processing

Post Details

Added on Mar 13 2024
1 comment
138 views