Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3214266
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:02:26+00:00 2026-05-17T15:02:26+00:00

Our application supports SQL Server and Oracle as database backend. During investigation stuff database

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T15:02:26+00:00Added an answer on May 17, 2026 at 3:02 pm

    All those options are SQL Server-specific and will not be needed to create the index on an Oracle database; I imagine they are all at their default setting anyway and are just included because the advisor tool is verbose.

    The more significant part is the INCLUDE clause which is described
    in this SO answer. Oracle has no counterpart to this, and so you will have to choose between one of the following:

    create index idx_name on products(id);
    
    create index idx_name on products(id, alias, prod_type);
    

    The first of these is surely the primary key of the table and so is (surely?) already indexed, and uniquely.

    The second indexes the primary key plus some additional columns, and might be beneficial in a query such as:

    select alias, prod_type -- and no other columns
    from products
    where id = 123;
    

    I suspect it is this latter index that the tuning advisor was suggesting, in addition to the presumably already present UNIQUE index on (id).

    NOTE: Of course, it is not necessarily appropriate to add an index to an Oracle database on the advice of a SQL Server tuning advisor!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Recently, I started changing some of our applications to support MS SQL Server as
We need to build an administration portal website to support our client/server application. Since
We have a web application that manages inventory for our computer support group. One
Our application is interfacing with a lot of web services these days. We have
Our application is a hybrid Win32 unmanaged application and a .NET 2.0 managed application.
Our application has a file format similar to the OpenDocument file format (see http://en.wikipedia.org/wiki/OpenDocument
Our application is structured something like: UI <--> REST API <--> Workflow <--> Business
Our application takes significantly more time to launch after a reboot (cold start) than
Our application is well structured (well we did our best!) and we have split
Our application is written in C++ and used on Windows XP. On some client

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.