How can I disable all table constrains in Oracle with a single command? This can be either for a single table, a list of tables, or for all tables.
In the "disable" script, the order by clause should be that:
ORDER BY c.constraint_type DESC, c.last_change DESC
The goal of this clause is disable the constraints in the right order.