Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: ORA-01034 error during database creation
"Chloe Crowder" <chloe.crowder_at_bl.uk> writes:
> Stephan
> thanks for this. If I connect CONNECT INTERNAL and then STARTUP NOMOUNT
> I get:-
> LRM-00109: could not open parameter file '/data/Ora8i/dbs/initilsmast.ora'
> ORA-01078: failure in processing system parameters
>
> I guess this file needs to be created, and I would have expected
> configuration manager to create it. There is an init.ora and initdw.ora in
> that directory which look like templates, but I'm reluctant to tamper with
> things I don't really understand.
>
> Chloe
>
> "Stephan Bressler" <stephan.bressler_at_siemens.com> wrote in message
> news:b69fqt$3u$1_at_news.mch.sbs.de...
> > Hi,
> >
> > seems your instance is not running --- or with a different sid, maybe
> > ILSMAST (upper case)?
> >
> > Stephan
> >
> > "Chloe Crowder" <chloe.crowder_at_bl.uk> wrote in message
> > news:b69evp$lml$1_at_south.jnrs.ja.net...
> > > Having installed 8.1.7 on Solaris I attempted to create a database using
> > > DCA. This started creating the database and then gave:-
> > > ORA-01034: ORACLE not available.
> > >
> > > Looking in /data/Ora8i/admin/ilsmast/create I found a log file and
> script.
> > I
> > > assume the script is what was created and the log file the result. The
> > > script starts off:-
> > >
> > > #!/bin/sh
> > > ORACLE_SID=ilsmast
> > > export ORACLE_SID
> > >
> > > /data/Ora8i/bin/svrmgrl << EOF
> > > spool /data/Ora8i/admin/ilsmast/create/crdb2.log
> > > connect internal
> > > @/data/Ora8i/rdbms/admin/catalog.sql;
> > >
> > > REM ********** ALTER SYSTEM TABLESPACE *********
> > > ALTER TABLESPACE SYSTEM
> > > DEFAULT STORAGE ( INITIAL 64K NEXT 64K MINEXTENTS 1 MAXEXTENTS UNLIMITED
> > > PCTINCR
> > > EASE 50);
> > > ALTER TABLESPACE SYSTEM
> > > MINIMUM EXTENT 64K;
> > >
> > > and the log file:-
> > >
> > > Connected.
> > > create or replace
> > > *
> > > ORA-01034: ORACLE not available
> > > create or replace
> > > *
> > > ORA-01034: ORACLE not available
> > > grant execute on STANDARD to public
> > > *
> > > ORA-01034: ORACLE not available
> > > create or replace view v_$dlm_misc as select * from v$dlm_misc
> > >
> > >
> > > The documentation on the error message implies that there should be
> other
> > > error messages to help identify the cause, but no. Can anyone offer any
> > > insight?
> > >
> > > Chloe Crowder
> > >
> > >
> >
> >
>
>
The init.ora can be used as a template - just copy it to a new file where the name is like initORACLE_SID.ora where ORACLE_SID is the name of your db. Then go through the file and change the necessary parameters. If your not sure what they are or what they do, look them up in the Oracle administrators guide.
Personally, I find it easier to create the database by hand. The administrators guide walks you through an example and its not too difficult to follow - its also fairly short and doesn't take long to digest. You can use their example in the administrators guide as a template for creating your own database creation scripts. Essentially the process is
I think thats about it, but check it against the Admin guide. I've only been doing this stuff for a couple of months, so really I'm just trying to point you in the right direction (and possibly find out where my knowledge is lacking or flawed or ...
Also, keep an eye on this thread - I'm sure the more experienced Oraclers on this list will be able to point out the ommissions and errors in the above!
Tim
-- Tim Cross The e-mail address on this message is FALSE (obviously!). My real e-mail is to a company in Australia called rapttech and my login is tcross - if you really need to send mail, you should be able to work it out!Received on Tue Apr 01 2003 - 02:42:39 CST
![]() |
![]() |