|
|
|
|
Browse by Tags
All Tags » SQL » Defensive progr... » Database Progra... » Transact SQL (RSS)
-
The following pattern is quite common in database
programming:
IF EXISTS(some query) BEGIN
DO SOMETHING;
END
When such code runs in high concurrency situations, it may
not work as expected. I will provide a repro when such logic fails 40% of the
time. The following script provides a test table and attempts to ...
|
|
|
|
|