Categories
- All Categories
- Oracle Analytics Learning Hub
- 17 Oracle Analytics Sharing Center
- 17 Oracle Analytics Lounge
- 224 Oracle Analytics News
- 44 Oracle Analytics Videos
- 15.8K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 84 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Modify Custom SQL DAC

2699805
Rank 1 - Community Starter
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;
0