07/05/15 19:50:30
>>488
レジストリの中にORA_<SID>_PFILEの項目を見つけることができなかったのでファイルを直接指定して実行しました
Microsoft Windows [Version 5.2.3790]
(C) Copyright 1985-2003 Microsoft Corp.
C:\Documents and Settings\FSystem>sqlplus /nolog
SQL*Plus: Release 10.1.0.2.0 - Production on 火 5月 15 19:37:51 2007
Copyright (c) 1982, 2004, Oracle. All rights reserved.
SQL> conn / as sysdba
Connected to an idle instance.
SQL> startup nomount pfile=D:\oracle\product\10.1.0\admin\orcl\pfile\init.ora.41
42007111722
ORACLE instance started.
Total System Global Area 171966464 bytes
Fixed Size 787988 bytes
Variable Size 145488364 bytes
Database Buffers 25165824 bytes
Redo Buffers 524288 bytes
SQL> alter database mount;
Database altered.
SQL> alter database open;
alter database open
*
ERROR at line 1:
ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
ORA-01110: data file 1: 'E:\ORACLE\PRODUCT\10.1.0\ORADATA\ORCL\SYSTEM01.DBF'
SQL>
ORA-1157の解説を読んで
alter system check datafiles;
を実行しましたが、
System altered.
と、でるだけでこの後alter database openを実行してもエラーが帰ってきました。
これはどこを変更するといいのでしょうか?