Hola fabianmk
¿En Oracle?
Drop constraint nombre_constraint;
Cuando se crea una constraint, le podés dar un nombre o no.
Si no se lo das, Oracle le asigna uno automáticamente.
Para averiguar el nombre del constraint:
Código PHP:
Select constraint_name, table_name, search_condition
from all_constraints
where constraint_type = 'C'
and table_name = 'NOMBRE'
and search_condition = 'LO QUE CHEQUEA';
Suerte