English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

how to combine oracle with unix shell scripting?

2007-01-02 19:37:38 · 2 answers · asked by srinivasan r 1 in Computers & Internet Programming & Design

2 answers

You can use a Unix Shell Script to run commands within Oracle that can be run from the unix shell intarface (from the command line).

Like running sqlplus commands from the command line

% sqlplus /

You can use a shell script to string together several commands


#!/bin/sh

sqlplus /
sqlplus /
sqlplus /
sqlplus /

2007-01-03 01:21:29 · answer #1 · answered by Anonymous · 1 0

This is really a bit apples and oranges. Oracle is a RDBMS, UNIX shell scripting executes commands on a box with a UNIX OS. The shell scripts can contain Oracle commands through the use of SQL*PLUS.

2007-01-03 11:54:01 · answer #2 · answered by Elizabeth Howard 6 · 0 0

fedest.com, questions and answers