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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:39:08+00:00 2026-05-23T18:39:08+00:00

I have to maintain history and so I am using is_deleted column which can

  • 0

I have to maintain history and so I am using is_deleted column which can have ‘Y’ or ‘N’. But for any instance of is_deleted ‘N’ I should have uniwue entry for (a,b,c) composite columns.

When I am tryin to create function based unique index I am getting error.

CREATE UNIQUE INDEX fn_unique_idx ON table1  (CASE WHEN is_deleted='N' then (id, name, type) end);

ERROR at line 1:
ORA-00907: missing right parenthesis

Please help.

Thanks

  • 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-23T18:39:09+00:00Added an answer on May 23, 2026 at 6:39 pm

    You would need something like

    CREATE UNIQUE INDEX fn_unique_idx 
        ON table1 (CASE WHEN is_deleted='N' THEN id ELSE null END,
                   CASE WHEN is_deleted='N' THEN name ELSE null END,
                   CASE WHEN is_deleted='N' THEN type ELSE null END);
    

    An example of the constraint in action

    SQL> create table table1 (
      2    id number,
      3    name varchar2(10),
      4    type varchar2(10),
      5    is_deleted varchar2(1)
      6  );
    
    Table created.
    
    SQL> CREATE UNIQUE INDEX fn_unique_idx
      2      ON table1 (CASE WHEN is_deleted='N' THEN id ELSE null END,
      3                 CASE WHEN is_deleted='N' THEN name ELSE null END,
      4                 CASE WHEN is_deleted='N' THEN type ELSE null END);
    
    Index created.
    
    SQL> insert into table1 values( 1, 'Foo', 'Bar', 'N' );
    
    1 row created.
    
    SQL> insert into table1 values( 1, 'Foo', 'Bar', 'Y' );
    
    1 row created.
    
    SQL> insert into table1 values( 1, 'Foo', 'Bar', 'Y' );
    
    1 row created.
    
    SQL> insert into table1 values( 1, 'Foo', 'Bar', 'N' );
    insert into table1 values( 1, 'Foo', 'Bar', 'N' )
    *
    ERROR at line 1:
    ORA-00001: unique constraint (SCOTT.FN_UNIQUE_IDX) violated
    
    
    SQL> insert into table1 values( 1, 'Foo', 'Zee', 'N' );
    
    1 row created.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to maintain an old database which is not properly normalized. For instance
I am preparing an Excel sheet in which I have to maintain the version
I have to maintain a portion of Access 2003 VBA code, which is not
First, we currently have the behavior that's desired, but it's not trivial to maintain
I have to maintain a large number of classic ASP pages, many of which
I have to maintain a code of somebody. The code opens a thread. The
I have to maintain the following Perl script: #!/usr/bin/perl -w die Usage: $0 <file1>
I have to maintain an old VB 6 ActiveX DLL called by another third-party
In a recent project, I have to maintain some PHP code. I set up
I have to refactor and maintain a bunch of horrible similar looking Java classes.

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.