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: Creating a DB from scratch on UNIX (AIX)

Re: Creating a DB from scratch on UNIX (AIX)

From: Scott Kelley <skelley_at_online.disney.com>
Date: 1997/06/26
Message-ID: <33B3006E.F7@online.disney.com>#1/1

First make a initXXX.ora in $ORACLE_HOME/dbs (make sure it does not explicitly call out any rollback segments and that you have already set the /etc/system parameters have been set).

then

svrmgrl

  connect internal

  startup nomount

  create database XXX
  logfile '/redo_logs/redo_1.dbf' size 1M,   '/redo_logs/redo_2.dbf' size 1M,
  '/redo_logs/redo_3.dbf' size 1M
  datafile '/data/system_1.dbf' size 50M   archivelog;

  Then of course you will have to set up tablespace, non-system rollback segs., etc, etc.

-- 
	Scott Kelley (skelley_at_online.disney.com)
	Webmaster/Database Administrator for Disney Online


# THIS IS A DISCLAIMER: The above statements were written by Elves.
# The above is not the position or opinion of the Walt Disney Company.
Received on Thu Jun 26 1997 - 00:00:00 CDT

Original text of this message

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