Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1842349
  • 博文数量: 334
  • 博客积分: 11301
  • 博客等级: 上将
  • 技术积分: 3452
  • 用 户 组: 普通用户
  • 注册时间: 2006-10-18 10:19
个人简介

路虽弥,不行不至;事虽少,不做不成。

文章分类

全部博文(334)

文章存档

2013年(4)

2012年(19)

2011年(27)

2010年(71)

2009年(45)

2008年(15)

2007年(84)

2006年(69)

分类: Oracle

2007-08-09 09:19:20

--现象--
 
SQL> startup
ORACLE 例程已经启动。
Total System Global Area  135338868 bytes
Fixed Size                   453492 bytes
Variable Size              96468992 bytes
Database Buffers           37748736 bytes
Redo Buffers                 667648 bytes
数据库装载完毕。
ORA_01034:ORACLE not available
ORA-270101:SHared memory realm does not exist
 
 
--分析--
 
从上面现象得知,数据库处在mount状态,即可能跟datafile有关,从这方面着手.
 
昨天就修改过undo_tablespace,新建一个undo表空间(由undotbs1改为undotbs2),undotsb1表空间没有删除
 
设置过程应该没有问题
   alter system set undo_tablespace=undotbs2 scope=spfile;
 
会不会是在建undo表空间有什么语法问题
 
  create undo tablespace undotbs2
    datafile 'D:\oracle\oradata\ivan\undotbs2.dbf' size 50M;
 
 
经查alertSID.log得知,昨日建undo表空间时语法有误
     CREATE TABLESPACE UNDOTBS2
       DATAFILE 'D:\oracle\oradata\ivan\UNDOTBS2.DBF' SIZE 50m
 
 
 
 
--结果--
 
由于undo有错,数据库就相当于没有undo表空间,启动的时候当然会有问题
 
1.mount database;
 
2.alter system set undo_tablespace=undotbs1 scope=spfile;
 
3.startup force;
 
以上解决是基于undotbs1没有删除这个前提,如果删除,就需要考虑还原
 
阅读(3098) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~