ORACLE删除数据文件后无法启动Oracle认证考试
文章作者 100test 发表时间 2010:03:22 07:43:51
来源 100Test.Com百考试题网
查看数据库的状态: 0select status from v$instance.
查看表空间:0select * from v$tablespace.
改变表空间数据文件:alter database rename file "filepath" to "newfilepath".
删除表空间及其数据文件: 0drop tablespace tablespace_name including contents and datafiles.
启动数据库为mount状态:startup mount
改变数据库为open状态:alter database open. alter database open resetlogs.
设置数据文件为离线状态:alter database datafile filenumber offline 0drop.
以上斜体字部分需要使用实际的名字代替。