Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Modify Custom SQL DAC

Can we Add Alter Index Statement after the Create Index Statement in the Customsql.xml file? I tried but it's throwing errors.
<!--
This section will be used for creating ETL indexes for Oracle database
The variables will be substituted as follows:
%1 - UNIQUE
%2 - INDEX NAME
%3 - TABLE NAME
%4 - COLUMNS
WARNING: DO NOT MODIFY THE ORDER
-->
<SqlQuery name = "ETL_ORACLE_CREATE_INDEX">
CREATE %1 INDEX
%2
ON
%3
(
%4
)
NOLOGGING
PARALLEL 16 TABLESPACE DW_FACT_INDX;
ALTER INDEX %2 PARALLEL;