I have a procedure that will be concurrently processed with the following operations:
Procedure:
W(A)
W(B)
R(C)
C + 1;
W(C)
I was tasked to choose between READ COMMITTED or SERIALIZABLE isolation level.
How do I explain that this procedure will not corrupt the database with the above chosen isolation level?