I have 2 tables, out of this 1 table having huge data(15gb) of website text (not html) content. I want to index these 10 tables(having relation ship). eg: select a.id ,a.title,a.ipaddress, b.content from table1 a, table2 b where a.id=b.id;
here the problem is it is taking 70-80 hours to retrieve data from oracle database for indexing. I tried server side pagination like where rownum >1 and <20000 and increment each time. but still it is taking huge time becuase I am retriving clob data. So if I index two tables separate with separate C:\index1, table2 C:\index2. Is it possible to retrieve data using combination of two indexes.
which is is best? indexing separate or indexing as single? Note: my data in database will not update. I just need best way.