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: i don't understand

Re: i don't understand

From: Howard J. Rogers <hjr_at_dizwell.com>
Date: Sat, 6 Dec 2003 09:42:15 +1100
Message-ID: <3fd109c8$0$13984$afc38c87@news.optusnet.com.au>

"Speed Shutter" <nospam_at_wanadoo.fr> wrote in message news:pan.2003.12.05.22.14.07.964140_at_wanadoo.fr...
> I made a sql script to make database but I have an error
> who could help me ?
> thanks
>
> my script :
>
> create database base
>
> controlfile reuse
> logfile group 1 ('/home/oracle/franck/data/disk1/logbase.ora',
> '/home/oracle/franck/data/disk2/logbase.ora',
> '/home/oracle/franck/data/disk3/logbase.ora',
> '/home/oracle/franck/data/disk4/logbase.ora') size 256k,

4-way multiplexing of redo logs is admirable, but a bit over the top... and likely to cause performance issues. And 256K for a log file is pretty small.

> group 2 ('/home/oracle/franck/data/disk1/logbase2.ora',
> '/home/oracle/franck/data/disk2/logbase2.ora',
> '/home/oracle/franck/data/disk3/logbase2.ora',
> '/home/oracle/franck/data/disk4/logbase2.ora') size 256k,
> group 3 ('/home/franck/oracle/data/disk1/logbase3.ora',
> '/home/franck/oracle/data/disk2/logbase3.ora',
> '/home/franck/oracle/data/disk3/logbase3.ora',
> '/home/franck/oracle/data/disk4/logbase3.ora') size 256k
>
> maxlogfiles 4

A silly setting. You want to leave this at the default of 16. If you ever discover your 3 log groups are not sufficient to prevent database stalls, you don't exactly have a lot of room to add more.

> maxlogmembers 4
> maxloghistory 100
> maxdatafiles 20

Sure you want this?? Fine, this might be a training database, so who cares. But as a matter of good practice, you should put this up into the several hundreds. It costs just 180 bytes in the control file per additional file to do so.

> maxinstances 1
>
> datafile '/home/oracle/franck/data/disk1/sysbase.ora' size 100M autoextend
off

Not a good idea. First, don't muck around with conventions that are there for a good reason. This is the SYSTEM datafile, and ought to be called system01.dbf as a result. Files with a ".ora" extension are invariably configuration files, and usually text files to boot. SYSTEM is not one of them, by either measure.

Second, 100M is never going to be enough for SYSTEM. Set it to 150M.

And third, the one datafile that must never run out of space is SYSTEM. Therefore, whilst it is admirable that you don't want the performance penalties associated with autoextend, it's plain daft to switch it off for SYSTEM.
>
> noarchivelog
>
> character set we8iso8859p1
> national character set we8iso8859p1;
>
>
> my error :
> SVRMGR> connect internal
> Connected.
> SVRMGR> shutdown immediate
> ORA-01507: database not mounted
> ORACLE instance shut down.
> SVRMGR> startup nomount pfile=/home/franck/oracle/817/dbs/initbase.ora
> ORACLE instance started.
> Total System Global Area 59465888 bytes
> Fixed Size 73888 bytes
> Variable Size 33005568 bytes
> Database Buffers 26214400 bytes
> Redo Buffers 172032 bytes
> SVRMGR> @/home/franck/oracle/admin/create.sql
> national character set we8iso8859p1
> *
> ORA-12701: CREATE DATABASE character set is not known

Well. WE8ISO8859P1 is a perfectly good character set, actually. Which means that I suspect you haven't got all your environment variables set properly. ORA_NLS33 in particular.

> I understand oracle doesn't understand character set but it seems to be
> ok, no ?
> I have Oracle 8i ver 8.1.7 donwloaded on
> http://otn.oracle.com/software/products/8i_personal/index.html
>
> Thanks

The O/S would have been a good idea, but the fact that your slashes go the wrong way round indicates Linux or Unix of some sort. So it's almost certainly an environment variable issue. ORACLE_BASE, ORACLE_HOME, ORACLE_SID and (in this particular case) ORA_NLS33 all need setting correctly.

But that's the least of your worries. There are a lot of things you might want to look at again in your script.

Regards
HJR



Oracle insights at www.dizwell.com
Received on Fri Dec 05 2003 - 16:42:15 CST

Original text of this message

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