标签: shell sqlplus
假设我需要从shell脚本执行一些sql代码 这样做有什么简单而简洁的方法?
答案 0 :(得分:2)
sqlplus -s /nolog <<EOF whenever sqlerror exit sql.sqlcode; set echo on; set serveroutput on; connect <user>/<pass>@<host>:<port>/<sid> delete from <table_name> where <...>; ... quit; EOF