Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Intermedia Questions, Any Gurus on This Subject?
You need to create preferences to specify storage parameters like:
begin
ctx_ddl.create_preference('storage_small','BASIC_STORAGE');
ctx_ddl.set_attribute('storage_small','I_TABLE_CLAUSE','tablespace
LOBADM_01_SMALL_DATA');
ctx_ddl.set_attribute('storage_small','K_TABLE_CLAUSE','tablespace
LOBADM_01_SMALL_DATA');
ctx_ddl.set_attribute('storage_small','R_TABLE_CLAUSE','tablespace
LOBADM_01_SMALL_DATA');
ctx_ddl.set_attribute('storage_small','N_TABLE_CLAUSE','tablespace
LOBADM_01_SMALL_DATA');
ctx_ddl.set_attribute('storage_small','I_INDEX_CLAUSE','tablespace
LOBADM_01_SMALL_INDX');
ctx_ddl.set_attribute('storage_small','P_TABLE_CLAUSE','tablespace
LOBADM_01_SMALL_DATA');
end;
/
Then create index like:
create index lobadm.client_full_nm_indx on lobadm.client(full_nm)
indextype is ctxsys.context
parameters('storage lobadm.storage_small')
/
Hope this helps
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Mike J Kurth INET: Mike.J.Kurth_at_aexp.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Tue Jun 19 2001 - 09:18:19 CDT
![]() |
![]() |