aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-10-21 11:24:12 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-10-21 13:29:10 +0200
commitc0c77f312bebfb274fd919d49d6f3f4ebd50f746 (patch)
tree17908455b1c39af6ca4e30cb967ad1611b948975 /build
parentf4f07fb437a28d1d9899607e3200d6732e627036 (diff)
Use @ to specify SQL file to Oracle SQLPlus
SQLPlus scripted commands, such as SET FEEDBACK OFF, are not recognized when OS redirection is employed.
Diffstat (limited to 'build')
-rwxr-xr-xbuild/oracle/oracle2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/oracle/oracle b/build/oracle/oracle
index 7c53922..6eedb14 100755
--- a/build/oracle/oracle
+++ b/build/oracle/oracle
@@ -69,7 +69,7 @@ fi
opt="-S $opt"
if [ -n "$1" ]; then
- exec $driver $opt $conn <$1
+ exec $driver $opt $conn @$1
else
exec $driver $opt $conn
fi