can not startup [message #367945] |
Tue, 20 June 2000 03:22 |
sherley
Messages: 1 Registered: June 2000
|
Junior Member |
|
|
i have recently install the oracle 8.1.5 on redhat linux. when i startup as internal, it says startup force
LRM-00109: Kan ikke ebne parameterfilen '?/dbs/init@.ora'
ORA-01078: failure in processing system parameters
give me a help.
thanks
|
|
|
Re: can not startup [message #367952 is a reply to message #367945] |
Thu, 22 June 2000 18:02 |
Sam
Messages: 255 Registered: April 2000
|
Senior Member |
|
|
Hi,
Check your init<SID>.ora file parameters and make sure that all entries are valid. Set the Oracle home and SID env's before starting the database.
good luck
sam
|
|
|
Re: Editing Oracle dump files [message #367953 is a reply to message #367952] |
Wed, 21 April 1999 11:10 |
Zabair Ahmed
Messages: 5 Registered: April 1999
|
Junior Member |
|
|
Bruce
Thanks for that. What would really be nice is
to a global edit on the indexfile, something to the
effect of sed 's/INITIAL 0-9 /INITIAL 256K/' <FILENAME>.
I don't really care if these objects go into mutilple extents on the import.
Of course the above edit will only work for the first occurence of the class 0-9, I haven't
managed to work out how to repeat it for all occurences ie INITIAL 12345678 will give me
INITIAL 256K2345678.
Any thoughts..
Thanks
Zabair
|
|
|
Re: Editing Oracle dump files [message #367954 is a reply to message #367953] |
Wed, 21 April 1999 13:37 |
Bruce
Messages: 21 Registered: November 1998
|
Junior Member |
|
|
Z,
Change your sed statement to:
sed 's/INITIAL *0-9*0-9/INITIAL 256K/'
Note that this is case sensitive as written. Spot check your resulting file as the leading '*' in the match pattern (which is ment to pad out any leading blanks) may match other paterns (INDEXFILE should be OK, but other DDL files with comments could be hosed). Your numeric pattern must have at least two digits (pretty safe bet).
Bruce
<CENTER><A ONMOUSEOVER="window.status='Ambassador Consulting - People First!'; return true" HREF="http://www.ateam.com/html/c_vs_c.html" ONMOUSEOUT="status=' ';"><IMG SRC="http://www.ateam.com/assets/images/teamlogo.gif" BORDER="0">[/url]</CENTER>
|
|
|
|