Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Locally managed tablespaces/What a DBA can do ?

RE: Locally managed tablespaces/What a DBA can do ?

From: Robert Pegram <pegramrg_at_yahoo.com>
Date: Wed, 17 Apr 2002 05:58:23 -0800
Message-ID: <F001.0044659F.20020417055823@fatcity.com>


Darren,

If using a hot backup strategy (other than Rman), make sure to test your backup/recovery if you switch the temporary tablespace to locally managed. You can't put a locally managed temporary tablespace in backup mode.

Rob Pegram
Oracle Certified DBA


SQL> create tablespace temp_dict
  2 datafile 'c:oracleoradataorcl emp_dict.dbf' size 10M
  3 default storage (initial 1M next 1M maxextents unlimited pctincrease 0)
  4* temporary
SQL> / Tablespace created.

SQL> create temporary tablespace temp_local   2 tempfile 'c:oracleoradataorcl emp_local.dbf' size 10M
  3 extent management local
  4 uniform size 1M;

Tablespace created.

SQL> alter tablespace temp_dict begin backup;

Tablespace altered.

SQL> alter tablespace temp_local begin backup; alter tablespace temp_local begin backup *
ERROR at line 1:
ORA-03217: invalid option for alter of TEMPORARY TABLESPACE


Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robert Pegram
  INET: pegramrg_at_yahoo.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
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 Wed Apr 17 2002 - 08:58:23 CDT

Original text of this message

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