I am getting an error that I cannot understand about. The error is pretty simple:
ORA-00001: unique constraint (*schema*.*xyz_constraint*) violated
However, what causes my confusion is that such a restriction does not exist. He is definitely not defined on the table; This database practically does not contain relational integrity, and the specific table into which I insert the data does not have a specific key.
For what it's worth, I can't find the restriction anywhere in the database:
select *
from all_constraints
where constraint_name like '%xyz_constraint%'
Is there anything I am missing? Thank.
source
share