vote up 2 vote down star

I want to perform cascade delete for some tables in my database, but I'm interested in what happens in case there's a failure when deleting something. Will everything rollback?

flag

4 Answers

vote up 9 vote down check

In general¹, yes, cascade deletes are done in the same transaction (or subtransaction) as your original delete. You should read the documentation of your SQL server, though.

¹ The exception is if you're using a database that doesn't support transactions, like MySQL with MyISAM tables.

link|flag
In general? when are they not in a transaction? – HollyStyles Sep 22 '08 at 10:50
Whe the database doesn't support transasctions for example. See MySQL with MyISAM tables... – Cd-MaN Sep 22 '08 at 10:54
vote up 0 vote down

Cascade deletes are indeed atomic, they would be of little use without that property. It is in the documentation.

link|flag
vote up 0 vote down

Thank you.

link|flag
vote up 1 vote down

It's worth pointing out that any cascading event should be atomic (i.e. with in a transaction). But, as Joel Coehoorn points out, check the documentation for your database.

link|flag
Actually, it's not Joel Coehoorn that points that out. If unsure of the author, you better use "that answer" linking to its permalink. – ΤΖΩΤΖΙΟΥ Oct 3 '08 at 11:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.