in Databases
428 views
1 vote
1 vote
2. Consider the following transaction involving 2 bank accounts x and y.
read(x);
x:= x-50;
write(x);
read(y);
y:=y+50;
write(y);
The constraint that the sum of the accounts x and y should remain constant is that of:
(a) Atomicity (b) Consistency
(c) Isolation (d) Durability
in Databases
428 views

1 comment

0
0

1 Answer

3 votes
3 votes
Best answer

Its the prpoperty of consistency .  In the acid property it keeps care of correctness. it is maintained by USER/APPLICATION MANAGER

selected by

1 comment

THNQ RAJESH
0
0