I have a table with several constraints without the on cascade delete property.
So if I try to delete and object by id I obtain the following error:
SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS
The problem is that if i run the delete I obtain the error about one constraint at time, is there a way to obtain all the table on which the constraint is present with a command?
In this way I can produce a query that delete the objects constrained before the parent node.