我正在从bash运行几个sql脚本。我想在添加提交之前看到ORA错误的总结。像这样:
#!/bin/bash
S_DB2_CONNECTOR=""
echo "My statement"
SQL_STM=$( echo "UPDATE ..." | sqlplus login/pass@bd );
echo "Output:"
echo "$SQL_STM"
echo "searching for errors...."
echo $LOG_VAR | grep "ORA"
echo "before commit"
wait 1000
echo "COMMIT;" | sqlplus -s login/pass@bd;
但这不起作用,因为sqlplus会话被破坏了!惊喜! sqlplus在SQL_STM执行后添加了自动提交。
如何在提交之前解析sqlplus输出的ORA- / ST错误?优选在此终端屏幕中。
也许我不需要bash进行解析,sqlplus可以为我做这个吗? (因此会话状态将被保留)。
答案 0 :(得分:1)
如果你想在ORA代码的情况下回滚/做一些额外的事情,那么在SQL * PLUS会话中全部完成。
即。将其作为脚本运行。
set serverout on
begin
update...;
exception
when others -- others is a catch all, you can catch specific codes too
then
rollback;
dbms_output.put_line('Error!');
dbms_output.put_line(sqlerrm); -- prints full error string
end;
/
如果你只想发信号通知bash sql语句失败,你可以设置为sql * plus中的第一个东西。 whenever sqlerror exit sql.sqlcode
(或whenever sqlerror (exit -1
等)代替(here)。这将在第一个错误时停止,并使用适当的返回码返回到您的schell脚本。
你可以嵌套块,例如:
begin
update ..;
begin
select id into v_id
from tab
where ...;
exception
when no_data_found
then
null;-- ignore that we didnt find a row
end;
-- if the select fails, we continue from here..
delete...;
begin
savepoint mysave;
your_proc(...);
exception
when others
then
rollback to mysave; -- of the call to your_proc fails, lets just toll that back alone
end;
end;
等
如果你需要它是交互式的,你可以做类似的事情(dbms_alert)[http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_alert.htm#CHDCFHCI]:
sqlplus /<<EOF | tee -a my.log
set feedback on verify on serverout on
-- IE YOUR CODE HERE..
select * from dual;
begin
null;
end;
/
-- END OF YOUR CODE..
-- now lets wait for an alert from another session:
declare
v_message varchar2(32767);
v_status number;
begin
DBMS_ALERT.REGISTER('should_i_commit');
DBMS_ALERT.WAITONE('should_i_commit', v_message, v_status); -- there is a timeout parameter you can set too
if (v_message = 'Y')
then
dbms_output.put_line('I committed');
commit;
else
dbms_output.put_line('I rolled back');
rollback;
end if;
end;
/
EOF
然后在另一个会话中你可以发出:
SQL> exec dbms_alert.signal('should_i_commit', 'N');
PL/SQL procedure successfully completed.
SQL> commit;
Commit complete.