Originally posted by kburrows
update here is the code that doesn't work

SQLPLUS=${ORACLE_HOME}/bin/sqlplus
$SQLPLUS -s/ <

here is the code that does:
SQLPLUS=${ORACLE_HOME}/bin/sqlplus
$SQLPLUS / <
Thx,
I might be repeating the obvious, but Jeff has allready pointed at the source of your trubles (it just might be that you missunderstood his point): you *need* a space between -s parameter and your slash.

Instead of

$SQLPLUS -s/ << EOF

use

$SQLPLUS -s / << EOF


As for Sam's suggestion: isnt the sqlnet.authentication_services = (NTS) relevant only for NT environment?

[Edited by jmodic on 06-14-2001 at 03:31 PM]