Connect to sqlplus in a shell script and run SQL scripts

Farshid picture Farshid · Apr 23, 2012 · Viewed 252.7k times · Source

I have a .sql file, which is a bunch of oracle pl/sql commands and I want to create a shell script to run these commands.

Suppose that user/pass@server is my credentials. What will be the shell script to do such a task?

Answer

NetBear picture NetBear · Apr 23, 2012

For example:

sqlplus -s admin/password << EOF
whenever sqlerror exit sql.sqlcode;
set echo off 
set heading off

@pl_script_1.sql
@pl_script_2.sql

exit;
EOF