Hallo zusammen,
ich möchte einen unique constraint auf eine tabellenspalte setzen.
Dabei bekomme ich folgende Fehlermeldung :
Invalid insert or update value(s): object columns are
constrained - no 2 table rows can have duplicate column values.
attempt to store duplicate value (visible to active transactions) in unique index "UNQ1_ARTIKELPREISE".
die Überprüfung mittels
sql-statement:
SELECT artikel_id
FROM artikelpreise
GROUP BY artikel_id
having count(artikel_id) > 1;
ergibt aber keine doppelten Sätze
was mach ich falsch ?
Gruss KHH