返回顶部
首页 > 资讯 > 数据库 >startup 启动报错
  • 799
分享到

startup 启动报错

2024-04-02 19:04:59 799人浏览 八月长安
摘要

写在前面:联系环境,之前操作换存储备份的时候,所有的文件已经迁移到新的磁盘,并且原目录的文件已经删除,今天再次启动数据库,报错 sql> startup oracle instance started

写在前面:联系环境,之前操作换存储备份的时候,所有的文件已经迁移到新的磁盘,并且原目录的文件已经删除,今天再次启动数据库,报错

sql> startup
oracle instance started.

Total System Global Area  413372416 bytes
Fixed Size            2253784 bytes
Variable Size          327158824 bytes
Database Buffers       79691776 bytes
Redo Buffers            4268032 bytes
Database mounted.
ORA-01589: must use RESETLOGS or NORESETLOGS option for database open SQL> alter database open RESETLOGS;
alter database open RESETLOGS
*
ERROR at line 1:
ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
ORA-01110: data file 1: '/ooradata/test1/system01.dbf'

这是啥问题呢,启动老是去原位置去找,查看数据文件在哪

SQL> select name from v$datafile;

NAME
--------------------------------------------------------------------------------
/ooradata/test1/system01.dbf
/ooradata/test1/sysaux01.dbf
/ooradata/test1/undotbs01.dbf
/ooradata/test1/users01.dbf

SQL> select name from v$controlfile;

NAME
--------------------------------------------------------------------------------
/ooradata/test1/control01.ctl
/u01/app/oracle/fast_recovery_area/test1/control02.ctl

数据文件在原位置,控制文件也在原位置,肯定是参数文件的问题,

先生成一个pfile看看控制文件位置。

SQL> create pfile='/home/oracle/cs/qq.txt' from spfile;
create pfile='/home/oracle/cs/qq.txt' from spfile
*
ERROR at line 1:
ORA-01565: error in identifying file '?/dbs/spfile@.ora'
ORA-27037: unable to obtain file status
linux-x86_64 Error: 2: No such file or directory
Additional infORMation: 3

这说明现在数据库启动不是以新的spfile起的,指定一下spfile

SQL> create pfile='/home/oracle/cs/qq.txt' from spfile='/u01/app/oracle/product/11.2/db_1/dbs/spfiletest1.ora';

File created.

查看qq.txt

vi qq.txt

startup 启动报错

控制文件已经是新的目录了。于是启动的时候只要制定新的pfile

SQL> shutdown immediate

SQL> create spfile from pfile='/home/oracle/cs/qq.txt';

File created.

SQL> startup
ORACLE instance started.

Total System Global Area  413372416 bytes
Fixed Size            2253784 bytes
Variable Size          327158824 bytes
Database Buffers       79691776 bytes
Redo Buffers            4268032 bytes
Database mounted.
Database opened.

解决

您可能感兴趣的文档:

--结束END--

本文标题: startup 启动报错

本文链接: https://lsjlt.com/news/48408.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作