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?
user/pass@server
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
1.4m articles
1.4m replys
5 comments
57.0k users