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 8380669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T16:30:58+00:00 2026-06-09T16:30:58+00:00

I understand I can’t do this straightforward from studying similar questions on stackoverflow and

  • 0

I understand I can’t do this straightforward from studying similar questions on stackoverflow and other sites.

However, I need to do this and I’m willing to go with workarounds.

I tried to create a non-unique index with online and parallel, and then drop the old unique index. However, it fails saying ORA-01408: such column list already indexed.

How to convert an unique index to a non-unique one?

  • 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-06-09T16:31:00+00:00Added an answer on June 9, 2026 at 4:31 pm

    If you don’t want to drop the old index before creating the new one, you can cheat a bit by creating the new index with an additional useless column, e.g.:

    Assuming a table with the following configuration:

    create table mytable (id number);
    
    create unique index myunique on mytable (id);
    

    To convert the index to non unique:

    create index temp on mytable (id, 1);
    
    drop index myunique;
    
    create index mynonunique on mytable (id);
    
    drop index temp;
    

    In practice I’m not sure how necessary this is – generally I’d just drop and recreate the index in some low-activity period, preferably take the application down.

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

Sidebar

Related Questions

As far as I can understand from the java.lang.Thread docs, and from other questions
I can't understand how can I solve this exercise. I need to make a
.NET has this concept of Application Domains which from what I understand can be
I understand I can create an enum like this: public enum MyEnum { ONE(1),
As you can understand from title, i modified Settings.cs file.Added some properties, some code
I don't understand why can't i access values like this: object = { test:{
I understand you can choose from a range of bindings, such as TCP, HTTP,
I can understand that many years ago there would be this kind of limitation,
1) I understand I can call this $memcache_obj = memcache_connect('memcache_host', 11211); in the header
I need some help to understand how can I track the data to insert

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.