if tablespace:
drop tablespace xxx;
if datafile:
alter database datafile 'd:\xxx.dbf' offline drop;

解决方案 »

  1.   

    1)alter tablespace 名字 offline normal;
    2)drop tablespace 名字 include contents;
      

  2.   

    1、backup the database
    2、mount but not open the database.
    3、drop the tablespace.
      

  3.   

    你用的是8i吗,如果是8i则可以在sql*plus中进行,如果不是,那么只有在svrmgr里进行了
    1.数据库为archivelog模式
    alter database datafile '文件路径' offline;
    2.数据库为noarchivelog模式
    alter database datafile '文件路径' offline drop;
    3.如果要使表空间的所有数据文件失效

    drop tablespace tablespacename