Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我begin transaction和exec一个存储过程时,该事务是否涵盖了我执行的存储过程所做的更改?是否会rollback transaction取消执行的存储过程所做的更改?
begin transaction
exec
rollback transaction
是的,它确实涵盖了。在同一事务范围内对数据库执行的所有操作都将回滚。