DBA Data[Home] [Help]

APPS.FND_TS_MIG_UTIL dependencies on CTX_DDL

Line 231: ctx_ddl.create_preference('''||l_pref_name||''', ''BASIC_STORAGE'');

227: l_storage_str := 'STORAGE (INITIAL '||l_ues||')';
228: end if;
229:
230: l_string := 'BEGIN
231: ctx_ddl.create_preference('''||l_pref_name||''', ''BASIC_STORAGE'');
232: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
233: ctx_ddl.set_attribute('''||l_pref_name||''', ''K_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
234: ctx_ddl.set_attribute('''||l_pref_name||''', ''R_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' lob (data) store as (cache)'');
235: ctx_ddl.set_attribute('''||l_pref_name||''', ''N_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');

Line 232: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');

228: end if;
229:
230: l_string := 'BEGIN
231: ctx_ddl.create_preference('''||l_pref_name||''', ''BASIC_STORAGE'');
232: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
233: ctx_ddl.set_attribute('''||l_pref_name||''', ''K_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
234: ctx_ddl.set_attribute('''||l_pref_name||''', ''R_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' lob (data) store as (cache)'');
235: ctx_ddl.set_attribute('''||l_pref_name||''', ''N_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
236: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_INDEX_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' compress 2'');

Line 233: ctx_ddl.set_attribute('''||l_pref_name||''', ''K_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');

229:
230: l_string := 'BEGIN
231: ctx_ddl.create_preference('''||l_pref_name||''', ''BASIC_STORAGE'');
232: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
233: ctx_ddl.set_attribute('''||l_pref_name||''', ''K_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
234: ctx_ddl.set_attribute('''||l_pref_name||''', ''R_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' lob (data) store as (cache)'');
235: ctx_ddl.set_attribute('''||l_pref_name||''', ''N_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
236: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_INDEX_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' compress 2'');
237: END;';

Line 234: ctx_ddl.set_attribute('''||l_pref_name||''', ''R_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' lob (data) store as (cache)'');

230: l_string := 'BEGIN
231: ctx_ddl.create_preference('''||l_pref_name||''', ''BASIC_STORAGE'');
232: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
233: ctx_ddl.set_attribute('''||l_pref_name||''', ''K_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
234: ctx_ddl.set_attribute('''||l_pref_name||''', ''R_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' lob (data) store as (cache)'');
235: ctx_ddl.set_attribute('''||l_pref_name||''', ''N_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
236: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_INDEX_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' compress 2'');
237: END;';
238:

Line 235: ctx_ddl.set_attribute('''||l_pref_name||''', ''N_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');

231: ctx_ddl.create_preference('''||l_pref_name||''', ''BASIC_STORAGE'');
232: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
233: ctx_ddl.set_attribute('''||l_pref_name||''', ''K_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
234: ctx_ddl.set_attribute('''||l_pref_name||''', ''R_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' lob (data) store as (cache)'');
235: ctx_ddl.set_attribute('''||l_pref_name||''', ''N_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
236: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_INDEX_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' compress 2'');
237: END;';
238:
239: EXECUTE IMMEDIATE l_string;

Line 236: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_INDEX_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' compress 2'');

232: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
233: ctx_ddl.set_attribute('''||l_pref_name||''', ''K_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
234: ctx_ddl.set_attribute('''||l_pref_name||''', ''R_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' lob (data) store as (cache)'');
235: ctx_ddl.set_attribute('''||l_pref_name||''', ''N_TABLE_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||''');
236: ctx_ddl.set_attribute('''||l_pref_name||''', ''I_INDEX_CLAUSE'', ''tablespace '||l_tablespace_name||' '||l_storage_str||' compress 2'');
237: END;';
238:
239: EXECUTE IMMEDIATE l_string;
240:

Line 599: ctx_ddl.drop_preference('TXN_IND_STORAGE_PREF');

595: -- Drop storage preference if it exists.
596: OPEN pref_csr;
597: FETCH pref_csr INTO l_pref_name;
598: if pref_csr%FOUND then
599: ctx_ddl.drop_preference('TXN_IND_STORAGE_PREF');
600: end if;
601: CLOSE pref_csr;
602: -- Create storage preference for TRANSACTION_INDEXES tablespace for DOMAIN indexes.
603: crt_storage_pref(l_def_ind_tsp, 'txn_ind_storage_pref');