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: alter tablespace

Re: alter tablespace

From: joel.thrasher <joel.thrasher_at_MCI2000.com>
Date: 1998/02/18
Message-ID: <01bd3c0b$14b73620$013a37a6@0302165162711542>#1/1

Ed,

The minextents usually are set when creating the tablespace. Example follows.

	create tablespace test_tablespace
	datafile '/drive/x' size 4M
	default storage (minextents 20 maxextents 100 pctincrease 1) ;

The alter is:

	alter tablespace test_tablespace
	default storage (minextents 10) ;

To create additional rollback segments

	create rollback segment test_rollback
	tablespace test_tablespace
	storage (initial 10k next 10k minextents 5 maxextents 120 ) ;

However, if you want the minimal approach:

        create rollback segment test_rollback tablespace test_tablespace ;

(The above is not the optimal, but it sounds like you are just learning...)

Hope this helps.

Joel Received on Wed Feb 18 1998 - 00:00:00 CST

Original text of this message

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