Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How Remove Data Files befor opening a Database
How Remove Data Files befor opening a Database? - Oracle DBA FAQ - Managing Oracle Tablespaces and Data Files
✍: FYIcenter.com
Let's say you have a corrupted data file or lost a data file. Oracle can mount the database. But it will not open the database. What you can do is to set the bad data file as offline befor opening the database. The tutorial exercise shows you how to set two data files offline and open the database without them:
>sqlplus /nolog SQL> connect SYSTEM/fyicenter AS SYSDBA SQL> STARTUP MOUNT; 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. SQL> ALTER DATABASE DATAFILE '\temp\my_space.dbf' 2 OFFLINE DROP; Database altered. SQL> ALTER DATABASE DATAFILE '\temp\my_space_2.dbf' 2 OFFLINE DROP; Database altered. SQL> ALTER DATABASE OPEN; Database altered. SQL> col file_name format a36; SQL> col tablespace_name format a16; SQL> SELECT TABLESPACE_NAME, FILE_NAME, BYTES 2 FROM DBA_DATA_FILES; TABLESPACE_NAME FILE_NAME BYTES --------------- --------------------------------- --------- USERS C:\ORACLEXE\ORADATA\XE\USERS.DBF 104857600 SYSAUX C:\ORACLEXE\ORADATA\XE\SYSAUX.DBF 503316480 UNDO C:\ORACLEXE\ORADATA\XE\UNDO.DBF 94371840 SYSTEM C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF 367001600 MY_SPACE C:\TEMP\MY_SPACE.DBF MY_SPACE C:\TEMP\MY_SPACE_2.DBF
At this point, if you don't care about the data in MY_SPACE, you can drop it now with the database opened.
2007-05-02, 4899👍, 0💬
Popular Posts:
What's the difference between J2SDK 1.5 and J2SDK 5.0? There is no difference, Sun Microsystems just...
What Happens If the UPDATE Subquery Returns Multiple Rows? - Oracle DBA FAQ - Understanding SQL DML ...
How To Delete a User Account? - Oracle DBA FAQ - Managing Oracle User Accounts, Schema and Privilege...
How do we create DCOM object in VB6? Using the CreateObject method you can create a DCOM object. You...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...