Just like Multi-table insert(using INSERT ALL) is there multi-table Update facility in Oracle? In which version?

Thanks in advance

link|improve this question
You want to update multiple tables with one statement OR within one transaction ? – Yahia Nov 3 '11 at 6:21
Yes, a single sql should be able to update multiple tables. – user1027056 Nov 8 '11 at 6:34
feedback

1 Answer

AFAIK there is no such facility in Oracle - you can't UPDATE multiple tables within one statement - you can use mutiple tables within an UPDATE statement but only one table can be updated.

What you could do is either wrap multiple UPDATE statements into one transaction and/or use an INSTEAD OF trigger which in turn contains multiple UPDATE statements...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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