what does this mean "Integrirty constraint vialoation" while trying to write data into oracle tables ?
-
what does this mean "Integrity constraint violation" while trying to write data into oracle tables ? Thanks,
Nice things do nice works
Well, at a guess... I would say the table you are tring to write to has constraints on it and the data you are inserting/updating violates those constraints. See if you can get a copy of the database schema for the affected table(s) to determine how you are violating the constraint. Tim
-
what does this mean "Integrity constraint violation" while trying to write data into oracle tables ? Thanks,
Nice things do nice works
Can you post the Oracle error code ? Something like ORA-00001 ... By having the error code, it would be easier to determine what is causing the problem.
-
what does this mean "Integrity constraint violation" while trying to write data into oracle tables ? Thanks,
Nice things do nice works
There are 5 type of integrity constraints NOT NULL, UNIQUE KEY, PRIMARY KEY, FOREIGN KEY and CHECK. I think you aplied anyone of them in your table schema and voilating that. If a user tries to insert data that doesn't meet these requirements, Oracle will not allow so. :)
"We can't solve problems by using the same kind of thinking we used when we created them"