Reason:
You attempted to drop a unique constraint using create_unique_constraint() on a table but specified columns that are not in the table.
Resolution:
Ensure you specify columns within the table.
Tips:
- Was the column name spelled correctly?
- Use the star$columns view to find the columns in a table.
- Use the star$constraints view to find the columns in unique constraints.
Comments
Article is closed for comments.