Application 1 executes the following statements:
INSERT INTO TAB1 (NAME,AMOUNT) VALUES ('John,100);
COMMIT;
UPDATE TAB1 SET AMOUNT=90 WHERE NAME='John';
After a few seconds, application 2 executes the following query:
SELECT AMOUNT FROM TAB1 WHERE NAME='John'
Assuming the Currently Committed (CUR_COMMIT) configuration parameter is enabled, which of the following is TRUE?
Currently there are no comments in this discussion, be the first to comment!