|
Home >> FAQs/Tutorials >> Oracle Tutorials
Oracle Tutorials - Error: Cannot Identify/Lock Data File
By: FYIcenter.com
(Continued from previous topic...)
What Happens If You Lost a Data File?
After you shuting down an Oracle database, you accidently deleted a data file
from the operating system. If you try to start the database again you
will get error when Oracle tries to open the database after mounting the database.
The following tutorial examples shows you what will happen if the data file
c:\temp\my_space.dbf is deleted. Oracle can still start the database instance
and mount the database. But it will fail on openning the database as shown
below in a SQL*Plus session:
>sqlplus /nolog
SQL> connect SYSTEM/fyicenter AS SYSDBA
SQL> STARTUP
ORACLE instance started.
Total System Global Area 100663296 bytes
Fixed Size 1285956 bytes
Variable Size 58720444 bytes
Database Buffers 37748736 bytes
Redo Buffers 2908160 bytes
Database mounted.
ORA-01157: cannot identify/lock data file 5 - see DBWR
trace file
ORA-01110: data file 5: 'C:\TEMP\MY_SPACE.DBF'
SQL> SHUTDOWN;
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
(Continued on next topic...)
- What Is an Oracle Tablespace?
- What Is an Oracle Data File?
- How a Tablespace Is Related to Data Files?
- How a Database Is Related to Tablespaces?
- How To View Tablespaces in the Current Database?
- What Are the Predefined Tablespaces in a Database?
- How To View Data Files in the Current Database?
- How To Create a New Oracle Data File?
- How To Create a New Tablespace?
- How To Rename a Tablespace?
- How To Drop a Tablespace?
- What Happens to Data Files If a Tablespace Is Dropped?
- How To Create a Table in a Specific Tablespace?
- How To See Free Space of Each Tablespace?
- How To Bring a Tablespace Offline?
- How To Bring a Tablespace Online?
- How To Add Another Datafile to a Tablespace?
- What Happens If You Lost a Data File?
- How Remove Data Files before Opening a Database?
|