When dropping a unique constraint in Sybase Central, the drop statement shown is as follows;
ALTER TABLE "DBA"."enr_rds_heating_control_validation_t" DROP CONSTRAINT "ASA826";
The constraint being dropped here ASA826 comes from the SYS.SYSCONSTRAINT view where the value comes from the constraint_name column.
The issue here is that this is a unique identifier assigned to the constraint by Sybase and is only valid for the current database, so when run against another database this constraint might a) not exist or b) be a different constraint entirely.
When creating the constraint we are naming it however, in this case enr_rds_heating_control_validation_t UNIQUE (enr_rds_heating_type_id,enr_rds_heating_control_id) and this value can be seen in the SYS.SYSINDEX view in the index_name column and this value will remain unique across all of the databases.
I have tried to drop the constraint passing through the index_name in place of the constraint name and receive an error indicating that the constraint is not found.
How do I drop the unique constraint using the index name rather than the constraint name?
