数据库无法登陆,错误如下
ERROR:
ORA-27101 Shared memory realm does not exist
ORA-01034 ORACLE not available
在网上搜索了很多,发现大部分都说oracle_sid的问题,郁闷很久之后,想起了,昨天删除了某个表空间的物理文件。
考虑到可能是这个原因导致instance无法正常启动。
这种方式把表空间直接删除了哦!
C:/>sqlplus /nolog
SQL> conn / as sysdba
已连接接。
SQL> shutdown
SQL>startup mount
--ARCHIVELOG模式命令,文件名要大写
SQL>alter database datafile '数据文件名' offline;
--NOARCHIVELOG模式命令
SQL>alter database datafile '数据文件名' offline drop;
SQL>;alter database open;
SQL>; select file#,name,status from v$datafile;
SQL>; drop tablespace 表空间名;
问题解决了。