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.
我有一个执行 10 秒的存储过程。
是否有可能当一个用户执行此过程时,该过程可能会为其他用户锁定?
如果另一个用户同时执行该过程,我希望它打印'Wait it's executing'或其他信息。
'Wait it's executing'
如果您想避免序列化或要求序列化,您的问题不清楚。
存储过程通常不是串行的,因此您可以一次运行多个实例。从理论上讲,您可以通过在持续时间内对已知行进行更新来阻止并发执行,但大多数时候人们都在积极寻求避免序列化而不是引发它。
你想做什么?