Reason:
You attempted to update rows in a table using update_rows() but the columns being updated are part of a primary key constraint.
Resolution:
Ensure you only update columns that are not part of a primary key constraint.
Tips:
- Use the star$constraints view to find the columns within a primary key constraint.
Comments
Article is closed for comments.