模拟实验:
创建一个表空间后,直接把数据文件删除了;然后重启server。
1.
create tablespace w56 datafile '/u01/app/oracle/product/10.2.0/db_2/oradata/orcl/w56.dbf'
size 50M;
2.手动删除 w56.dbf文件
3.重启数据库server
4.该时刻 数据文件状态
5.解决办法
6.删除表空间
SQL> drop tablespace w56 including contents;
Tablespace dropped.