当前位置:首页 > OCP_053_54 > 正文内容

View these SQL statements:   Transaction T1   INSERT INTO hr.reg

2023-12-01OCP_053_54

View these SQL statements:   Transaction T1   INSERT INTO hr.regions VALUES (5,’ Pole’.   COMMIT;   Transaction T2   UPDATE hr.regions SET region_name='poles' WHERE region_id=5;   COMMIT;   Transaction T3   UPDATE hr.regions SET region_name=' North and South Poles' WHERE   Region_id= 5;   Your requirement is to back out transaction T2.   What is the possibility?

A.It is not possible because transaction T2 conflicts with transaction T3.

B.It is possible with the NONCONELICT_ONLY option.

C.It is possible, but transaction T3 would also be backed out.

D.It is possible with the NOCASCADE_FORCE option.

正确答案是C

扫描二维码免费使用微信小程序搜题/刷题/查看解析。

版权声明:本文由翰林刷题小程序授权发布,如需转载请注明出处。

本文链接:https://20230611.cn/post/8813246.html