Viewing 15 posts - 1 through 15 (of 19 total)
This could be an exception, but as a general rule, disk replication does not allow for data integrity for database without gaps in data integrity protection. The first is that...
February 21, 2022 at 2:07 pm
No problem - I just took some exception to some of the language, based, I am sure, on decades of trying to get people to understand this. Showing a NULL...
January 18, 2021 at 11:13 pm
Nick, I think that technically, NULL does in fact mean unknown. Both TRUE = NULL and FALSE = NULL are evaluated as false.
January 18, 2021 at 5:01 pm
Sorry, but you said it again. You imply that NULL is not meaningful. It is, and it has a very specific meaning in three state logic. If you use three...
January 18, 2021 at 4:59 pm
I agree with Nick, but let's go even father. NULL is not a meaningless value. NULL indicates a valid state in three state logic. To simply replace it with some...
January 14, 2021 at 2:28 pm
The truly sad part about this discussion is the lack of understanding of data integrity and consistency. Sigh.
November 5, 2019 at 2:11 am
This is getting tiring.
Except snapshot isolation does not automatically do what you say as it operates on an individual statement level. So each subsequent query might still use different data.
Yes,...
November 4, 2019 at 10:25 pm
Snapshot Isolation doesn't let you for example just write a query where you can say show me the query based on the data from 10 minutes ago.
I don't know snapshot...
November 4, 2019 at 10:06 pm
Do you expect your bank account to be locked while you page through your transaction history?
Not if I am the only one accessing it, which is exactly what multi-version consistency...
November 4, 2019 at 10:04 pm
Snapshot isolation?
Bingo. And there are other solutions with other databases.
And, no, you are incorrect about the problem, which is stated quite clearly in the first sentence of the section labeled,...
November 4, 2019 at 10:00 pm
ZZartin -
Getting a second page of data is not rerunning a query. It's getting more data from a single query. That is what is under discussion in this article and...
November 4, 2019 at 9:15 pm
Nope, just wrong. Multi-version read consistency does not introduce phantom rows - it gives a consistent view of data at a single point in time. Databases are state machines -...
November 4, 2019 at 8:44 pm
ZZartin -
I think this is another example of a basic misunderstanding. If the result set used to build the pages is different from one set to another, it most definitely...
November 4, 2019 at 5:55 pm
"Design your system for it"
Whoa, slow down, let's not get all crazy here. <g> Violent agreement.
November 4, 2019 at 3:53 pm
Jeff -
There are other options out there. Databases that use multi-version read consistency do exactly what you are asking - present an accurate picture of the state of data at...
November 4, 2019 at 2:41 pm
Viewing 15 posts - 1 through 15 (of 19 total)