Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 52 Oracle Analytics and AI Sharing Center
- 19 Oracle Analytics and AI Lounge
- 288 Oracle Analytics and AI News
- 57 Oracle Analytics and AI Videos
- 16.3K Oracle Analytics and AI Forums
- 6.5K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 111 Oracle Analytics and AI Trainings
- 21 Oracle Analytics and AI 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