I tried to insert into a table with a unique constraints on 2 columns and encountered the unique constraints error.
Select distinct query returns the following records:
Record 1:
ColA:A001 ColB:TV set A001
Record 2:
ColA:A001 ColB:Tv set A001
Does oracle do case sensitive comparison when validating against unique constraints? For instance, in the above scenario, we can see all the values are the same except the ColB (TV verus Tv). Distinct showes they are two different records whereas unique constraints seems to think they are the same?
Can anyone help to clarify?
Thanks!