Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: UNIX-Oracle script interface help

Re: UNIX-Oracle script interface help

From: Meinolf Klement <Meinolf.Klement_at_t-online.de>
Date: 1999/01/13
Message-ID: <369c9279.17898609@news.btx.dtag.de>#1/1

The exclamation subs to the command prompt (while still being in sql*plus).
Try sql*plus and enter the !: You will see the command prompt. Type exit und you are back in your sql*plus.

Hope this helps
Meinolf

P.S.: exiting with exit before the ! helps too. A better way is to use non-reserved words, e.g. EOF:
svrmgrl <<-EOF

	connect internal
	bla bla
	exit;

EOF On Tue, 08 Dec 1998 22:11:13 GMT, sybaseuser_at_hotmail.com wrote:

>Hi,
>
>Please excuse my email handle and help me with this Unix/Oracle shell script
>(Korn) problem:
>
>In my shell script I have:
>
>
>#!/bin/ksh
>
>LOGNAME=testid
>PASSWORD=testpw
>SPOOL_FILE=./test.log
>
>sqlplus -s $LOGNAME/$PASSWORD <<!
>spool $SPOOL_FILE
>set heading off
>set linesize 300
>
>select 'E1', a.sls_org_cd, a.dist_chnl_cd,
> a.doc_crncy_cd, a.cust_grp_cd, a.matl_cd,
> b.matl_nm
>from table_a a, table_b b
>where a.matl_id = b.matl_id;
>
>spool off
>!
>
>echo "TEST"
>
>
>Somehow the last line: echo "TEST" is being treated as a Oracle command and
>fed into Oracle and I got the following message in my output:
>
>unknown command beginning "echo "TEST"" - rest of line ignored.
>For a list of known commands enter HELP and to leave enter EXIT.
>
>I though the ! sign was sufficient to tell Oracle to exit the SQLPlus session
>(this is how it is done in Sybase). If I put "exit" before the ! sign then
>the entire UNIX script exits right there and the echo "TEST" statement
>doesn't get executed at all.
>
>Any help will be appreciated.
>
>Thanks
>
>Calvin L.
>sybaseuser_at_hotmail.com
>
>-----------== Posted via Deja News, The Discussion Network ==----------
>http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
Received on Wed Jan 13 1999 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US