Reputation: 588
I have pls/ql procedure procedure_test()
, this procedure changes some data in tables, and this procedure doesn’t have any commits or rollbacks.
So I call this procedure from another one - procedure_test2()
after calling of procedure_test()
from procedure_test2()
all changes in procedure_test()
are committed. So, how can I rollback changes made by procedure_test()
from procedure_test2()
?
Thanks.
Upvotes: 0
Views: 142