create index hangs [message #396188] |
Sat, 04 April 2009 16:12 |
ankush_chawla
Messages: 136 Registered: November 2006
|
Senior Member |
|
|
Hello
We recreate the text indexes because of their large sizes. Instead of rebuilding we planned for the following steps
1. drop the index
2. create the index with the populate option
However some of the indexes are recreated successfully. one of the text index hangs for an infinite time .
please let me know why ? and how to troubleshoot it.
Regards
Ankush
|
|
|
Re: create index hangs [message #396190 is a reply to message #396188] |
Sat, 04 April 2009 16:15 |
ankush_chawla
Messages: 136 Registered: November 2006
|
Senior Member |
|
|
command used to create the index
CREATE INDEX <index> ON <table> (column)
INDEXTYPE IS CTXSYS.CONTEXT
PARAMETERS('language column fts_lang
datastore MAM_TEXT_DATASTORE
filter ctxsys.null_filter
wordlist MAM_WORDLIST
lexer MAM_LEXER_MC
stoplist MAM_STOPLIST
section group ctxsys.null_section_group
storage MAM_STORAGE_PREF
populate')
NOPARALLEL;
Can we mention nologging option to do the process faster..
|
|
|
|