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: OFA V. NT default directory structure

Re: OFA V. NT default directory structure

From: Matthias Gresz <GreMa_at_t-online.de>
Date: 1997/11/07
Message-ID: <63v2de$usi$1@news01.btx.dtag.de>#1/1

thomasl_at_expansion.com wrote:
>
> If you installed Oracle 7.3 Workgroups then that's why. WorkGroup server
> installtion is limited. It does not allow you to configure where different
> tablespaces will go where on different partitions or disk etc. It is limited.
>
> It puts all the datbase objects (Tablespaces) in $ORACLE_HOME/dbs (unix) or for
> NT everything under \ORANT\database.

This is definitely wrong!! We've WGS on NT and our oracle sw resides on disk1 db-files on disk2 (RAID) and archived redo logs on disk3. It's the way how you create your db (data-files) where you can decide how to distribute your db-files in the way you want.

The only fact is that the default db (with scott and all others) will be installed in the directories you mentioned. But you kick it away anyway, when you create your own db.

For db-Installation try something like this:

create database oracle

    logfile

		group 1 ('c:\ora_redo\wdblog1.ora',
			'f:\ora_redo\wdblog1.ora',
            		'e:\ora_redo\wdblog1.ora') size 500K reuse,
		group 2 ('c:\ora_redo\wdblog2.ora', 
			'f:\ora_redo\wdblog2.ora',
            		'e:\ora_redo\wdblog2.ora')size 500K reuse,
		group 3 ('c:\ora_redo\wdblog3.ora', 
			'f:\ora_redo\wdblog3.ora',
            		'e:\ora_redo\wdblog3.ora')size 500K reuse
    character set WE8ISO8859P1
	datafile 'd:\dbf\dbsystem.ora' size 600M reuse
	MAXLOGMEMBERS 4

;

create public rollback segment rb_temp storage(initial 50K next 50K OPTIMAL 1M MINEXTENTS 10);
alter rollback segment rb_temp online;

create tablespace makler

    datafile 'd:\dbf\dbmakler.ora' size 1000M reuse     default storage (initial 4k next 4k pctincrease 10 minextents 1 maxextents 121);
create tablespace makler_idx

    datafile 'd:\dbf\dbindex.ora' size 700M reuse     default storage (initial 4k next 4k pctincrease 10 minextents 1 maxextents 121);
create tablespace rollback_data

    datafile 'd:\dbf\dbrollb.ora' size 100M reuse     default storage (initial 50k next 50k minextents 7 maxextents 121); create tablespace temporary_data

    datafile 'd:\dbf\dbtemp.ora' size 1000M reuse     default storage (initial 1M next 1M pctincrease 5 minextents 1 maxextents 121);

alter user system temporary tablespace temporary_data; alter user system default tablespace system;

create public rollback segment rb1 storage(initial 10M next 1M)   tablespace rollback_data;

alter rollback segment rb1 online;

alter rollback segment rb_temp offline;

create public rollback segment rb2 storage(initial 10M next 1M)   tablespace rollback_data;

alter rollback segment rb2 online;

>
> If you had Oracle Server -Enterprise version, it prompts you through a series
> of configurations settings upon installation where you what certain files to
> go.
>
> I have done several installations of both products - enterprise and Workgroups
> and that's just the way it works.
>
> For workgroups after installation you now have to manually using sqlplus or the
> client manager tools to move the files to where you want them to go.
>
> What you may want find out is if Oracle has a built in parameter file that you
> can edit for tablespace size and location to be used by the workgroup
> installer.
>
> Thomas
>
> In article <slrn65frnt.6m0.dluik_at_cobra.sr.csg.com>, dluik_at_sr.csg.com (Deborah
> Luik) writes:
>
> >We are in the process of installing Oracle 7.3 under NT. I noticed that the
> >default install uses a completely non-OFA directory structure. What do most
> >people do? Redo the whole thing? Leave it as is? If I go to the trouble to
> >redo it, do I mess up the installer under NT?
> >
> >I will probably create a new database anyway because I do not like the default
> >database name or page size so I could rework the init file and create the
> >tablespaces, etc. differently while I'm at it.
> >
> >Deborah Luik
> >
 

-- 
Regards

M.Gresz    :-)
Received on Fri Nov 07 1997 - 00:00:00 CST

Original text of this message

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