标签:style blog color io 使用 for 数据 sp div
--多个用户对同一个数据操作时,一个用户的行为结果可能导致另一个用户使用的数据无效,通过事务的并发控制可以确保 --同时发生的行为与数据的有效性不发生冲突 begin transaction select * from teachers with(holdlock) --数据库加锁 waitfor delay ‘00:00:10‘ commit transaction --通过commit 或者rollback可以解锁 begin transaction update teachers set Name=‘曹禺‘ where ID=201222 select * from teachers commit transaction
标签:style blog color io 使用 for 数据 sp div
原文地址:http://www.cnblogs.com/zwhFighting/p/4007829.html