Our application supports SQL Server and Oracle as database backend.
During investigation stuff database tuning advisor on SQL Server suggested to create an index on table which resulted significant improvement of query execution time against this table. I'd like to try to create the same index on oracle but a problem with understanding how to interpret a part of index creation statement.
So on SQL Server the index creation statement is:
CREATE NONCLUSTERED INDEX [_dta_index_K2_4_10] ON [products]
(
[ID] ASC
)
INCLUDE ( [ALIAS],
[PROD_TYPE]) WITH (SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF) ON [PRIMARY]
My question is how would look on oracle the WITH (SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF) ON [PRIMARY]
part of the index creation statement?