Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1418318
  • 博文数量: 239
  • 博客积分: 5909
  • 博客等级: 大校
  • 技术积分: 2715
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-24 20:19
文章分类

全部博文(239)

文章存档

2014年(4)

2013年(22)

2012年(140)

2011年(14)

2010年(59)

我的朋友

分类: Oracle

2012-02-17 15:34:32

除了SYSTEM和SYSAUX不能删, 其它都是可以删除的. 如果删除不了, 一定是设置有问题.
Restrictions on Dropping Tablespaces Dropping tablespaces is subject to the following restrictions:
  • You cannot drop a tablespace that contains a domain index or any objects created by a domain index.

  • You cannot drop an undo tablespace if it is being used by any instance or if it contains any undo data needed to roll back uncommitted transactions.

  • You cannot drop a tablespace that has been designated as the default tablespace for the database. You must first reassign another tablespace as the default tablespace and then drop the old default tablespace.

  • You cannot drop a temporary tablespace if it is part of the database default temporary tablespace group. You must first remove the tablespace from the database default temporary tablespace group and then drop it.

  • You cannot drop a tablespace, even with the INCLUDING CONTENTS and CASCADE CONSTRAINTS clauses, if doing so would disable a primary key or unique constraint in another tablespace. For example, if the tablespace being dropped contains a primary key index, but the primary key column itself is in a different tablespace, then you cannot drop the tablespace until you have manually disabled the primary key constraint in the other tablespace.

对于第二种情况, 可以采用的方法是

alter database default tablespace xx;
改变默认的表空间.

select default_tablespace, temporary_tablespace from dba_users;

阅读(2121) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~