Once a text index is created, you cannot change it to, or from, IMMEDIATE REFRESH. If either of these changes is required,
you must drop and recreate the text index.
The first statement creates a text index, txt_index_manual, defining it as MANUAL REFRESH. The second statement alters the
text index to refresh automatically every day. The third statement renames the text index to txt_index_daily.
CREATE TEXT INDEX txt_index_manual ON MarketingInformation ( Description )
MANUAL REFRESH;
ALTER TEXT INDEX txt_index_manual ON MarketingInformation
AUTO REFRESH EVERY 24 HOURS;
ALTER TEXT INDEX txt_index_manual ON MarketingInformation
RENAME AS txt_index_daily;