MANUAL DATABASE CREATION
\u2022
Configure the new Sid in bashrcfile.
\u2022
I have create the background_dump_dest, Core_dump_dest
User_dump_dest,it\u2019s under$ORACLE_BASE/admi n/man ual
\u2022
Create the Sid name in$ORACLE_BASE/oradata/m anual
\u2022
Create the initfile with new Sidname.
\u2022
By using the vi editor, I created manual database script:
CREATE DATABASE DATABASENAME
Logfile
group 1 ('/u01/srikanth/oradata/ manual /log01.rdo') size 10m,
group 2 ('/u01/srikanth/oradata/manual/log02.rdo') size 10m
datafile '/u01/srikanth/oradata/manual/system01. dbf' size 100m
autoextend on next 512k maxsize 120m
default temporary tablespace temp
tempfile '/u01/srikanth/oradata/manual/temp01.dbf' size 10m
autoextend on next 5m maxsize 20m
undo tablespace UNDOTBS1
datafile '/u01/srikanth/oradata/manual/undo01.dbf' size 10m
autoextend on next 5m maxsize 60m
character set WE8ISO8859P1
national character set AL16UTF16
;
After that startup the database in nomount stage.
\u2022
In sql > Run the create database script.
\u2022
Run another script$ORACLE_ HOME/rdbms/ad m in/ca talog.sql
\u2022
Run$ORACLE_HOME/rdbm s/admin/catproc.sql.
\u2022
Now connect assystem/ m anager.SQL>conn system/manager.
\u2022
Run $ORACLE_HOME/sqlplus /admin/pupbld.sql.
Leave a Comment