如题 
有什么命令可以删除吗?
drop只能删除空的表空间~~~

解决方案 »

  1.   

    试一下
    drop tablespace tablespace_name including contents and datafiles
      

  2.   

    1.先把表空间offline   alter tablespace 表空间名 offline
    2.然后再drop表空间   drop tablespace 表空间名 including contents
    3.再手动删掉该表空间的文件就可以了。
      

  3.   

    回  chendezhu1985() ( ) drop tablespace tablespace_name including contents and datafiles
     including contents and datafiles是什么意思回haisenmai(我应该做得到) 
    先把表空间offline   alter tablespace 表空间名 offline
    中的offline是代表在线关闭?不懂单词是什么意思 呵呵 谢谢 麻烦解释一下
      

  4.   

    我把oracle的.dbf删除了,怎么再把那表空间删除掉呀!
    日志:
    ORA-01116: 打开数据库文件 18 时出错
    ORA-01110: 数据文件 18: '/oracle/mocha/CONTINEO CONTINEO CONTINEO TABLESPACE_NAME BLOCK_SIZE INITIAL_EXTENT .dbf'
    ORA-27041: 无法打开文件
    IBM AIX RISC System/6000 Error: 13: Permission denied
    Additional information: 3还请高人指教!~
      

  5.   

    shutdown immediate
            startup mount
            alter database datafile '/oracle/mocha/CONTINEO CONTINEO CONTINEO TABLESPACE_NAME BLOCK_SIZE INITIAL_EXTENT .dbf' offline;
            alter database open;
            drop tablespace tablespace_name;