|
|
|
|
|
by wnolens
1093 days ago
|
|
Just mind the isolation level of concurrent queries which may be running. By default you are probably fine since it's usually snapshot isolation mode (will only see committed results as of query start) but there are other modes that break this. |
|