Jcmdba
495 pts. | Jan 24 2008 9:49PM GMT
Pinky,
You can create a database with a dictionary managed system tablespace. A simple SQL script can be created and then executed via SQL*Plus which will create your database with all the options you might want. A simple example:
create database yourdb controlfile reuse
maxdatafiles 1064
character set “AL32UTF8″
national character set “UTF8″
datafile
‘d:\yourfilesystem\yourdb_system_01.dbf’ size 250M
extent management dictionary
undo tablespace yourdb_undo
datafile ‘d:\anotherfilesystem\yourdb_undo_01.dbf’ size 400M
logfile
group 1 (………… etc… etc.
This is a very simplistic example with limited options included. You can check the “create database” command options in any Oracle reference with the appropriate version of database you are using. The GUI tools such as DBCA don’t always provide the easiest nor complete options available for managing your Oracle databases.
jcmdba
Oracle 9i: How to Create Dictionary Managed Tablespace « Oracle DBA from Beginning
0 pts. | Jun 9 2008 7:55PM GMT
[...] Reference: Oracle 9i How to Create Dictionary Managed Tablespace [...]






