Script dbstart [message #163578] |
Fri, 17 March 2006 05:47 |
orant1
Messages: 28 Registered: June 2005
|
Junior Member |
|
|
Hi,
When i start database(10.2.0.1) with dbstart i get message:
'dbstart: VER10LIST=10: is not an identifier'.
What is the problem?
|
|
|
|
|
Re: Script dbstart [message #176825 is a reply to message #176824] |
Fri, 09 June 2006 18:22 |
mpaulis
Messages: 2 Registered: June 2006
|
Junior Member |
|
|
Solaris 8 / SPARC, Oracle 10.2.0.1.0
That '..is not an identifier' message looks like it's being caused by the 'export' statement. If I remove the export statement, that error goes away (I get another error later in the script).
Makes me think there's something about the shell environment running the script that's causing the problem.
I'm assuming that I just add 'ORACLE_TRACE=T' early in the start script, correct? Where does the trace output go?
|
|
|
|
Re: Script dbstart [message #283255 is a reply to message #163578] |
Mon, 26 November 2007 09:02 |
pbunclark
Messages: 1 Registered: November 2007 Location: Cambridge
|
Junior Member |
|
|
It's all because sh on Solaris really is Bourne shell and
not actually bash - so "export=" is not allowed.
Change #!/bin/sh to #!/bin/bash
Pete.
|
|
|