如何让 Oracle 11g 在包含的 SQL 文件中出现任何错误时回滚整个事务?
文件内容为:
set autocommit off
whenever SQLERROR EXIT ROLLBACK
insert into a values (1);
insert into a values (2);
drop index PK_NOT_EXIST;
commit;
并且使用“@”将该文件包含到 sqlplus 会话中:
@error.sql
正如所料,sqlplus 会话终止,输出为
SQL> @error.sql
1 row created.
1 row created.
drop index PK_NOT_EXIST *
ERROR at line 1:
ORA-01418: specified index does not exist
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
但是当我重新启动 sqlplus 时,表 a 包含 2 条记录,这意味着在退出 sqlplus 时存在提交而不是回滚。
我可以以某种方式强制 sqlplus 执行以下操作:
- 出错时停止处理文件,
- 并在错误时回滚整个事务?