Is a single row INSERT atomic (for an external reader)? Imagine it happens on a table with 1M columns.
While executing a single INSERT
statement (namely, the "single row" kind), is it possible for a read operation (maybe using the 'Read uncommitted' isolation level) occurring at the same time to only read some of the values (columns) ?
I'm particularly interested in MS SQL Server's behaviour, although I assume this is similar for all major vendors.
Bonus cred points for a link to official documentation on the matter.
Yes, that can happen. DML is atomic in the sense that the writes are persisted all or nothing but concurrent reads can observe partial writes in very weird ways. For multi-row writes this is clearly possible but even single row writes are not atomic to readers.
For example you might find that the insert is completed for one non-clustered index but not for the other. This is perceivable for readers in rare, contrived cases. For example if you say:
You effectively get the difference between two indexes which can be non-zero. Index hints are not necessary to achieve this demo.