Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: System tablespace Oracle 9202
In your create database script, make sure you have EXTENT MANAGEMENT LOCAL
after the sysdate datafile clause.
Here's an example -
CREATE DATABASE abc
USER SYS IDENTIFIED BY xyz
USER SYSTEM IDENTIFIED BY xyz
DATAFILE '/u10/oradata/abc/system01.dbf' SIZE 350M REUSE
EXTENT MANAGEMENT LOCAL
DEFAULT TEMPORARY TABLESPACE TEMP TEMPFILE '/u20/oradata/abc/temp01.dbf'
SIZE 8001M REUSE
UNDO TABLESPACE "UNDOTBS" DATAFILE '/u30/oradata/abc/undotbs01.dbf' SIZE
10230M REUSE
...........
-----Original Message-----
Sent: Thursday, March 06, 2003 1:34 PM
To: Multiple recipients of list ORACLE-L
Only if you use DBCA, I believe.
Pete
"Controlling developers is like herding cats."
Kevin Loney, Oracle DBA Handbook
"Oh no, it's not. It's much harder than that!"
Bruce Pihlamae, long-term Oracle DBA
-----Original Message-----
Melissa
Sent: Thursday, March 06, 2003 12:49 PM
To: Multiple recipients of list ORACLE-L
List,
System tablespace for Oracle 9iR2 is defaulting to Dictionary Extent Management. I thought all tablespaces defaulted to Local in this release.
Thu Mar 6 15:29:43 2003
create tablespace SYSTEM datafile
'/oradb/DEV/system/system01.dbf' size 201M reusedefault storage (initial 10K next 10K) EXTENT MANAGEMENT DICTIONARY online
Thu Mar 6 15:29:57 2003
Completed: create tablespace SYSTEM datafile
'/oradb/DEV
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Balakrishnan, Ashok - VSCM INET: Balakrishnan.Ashok_at_vectorscm.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu Mar 06 2003 - 17:00:14 CST
![]() |
![]() |