【翻译自mos文章】在unix/linux中使用文件描述符(File Descriptors)来找回被删掉的文件(数据文件or redo log)

在unix/linux中使用文件描述符(File Descriptors)来找回被删掉的文件(数据文件or redo log)

参考原文:

Retrieve deleted files on Unix / Linux using File Descriptors (Doc ID 444749.1)

适用于:

Oracle Database - Enterprise Edition - Version 8.1.7.0 to 11.2.0.3 [Release 8.1.7 to 11.2]

Linux x86

Oracle Solaris on SPARC (64-bit)

Linux x86-64

***Checked for relevance on 24-Nov-2010***

目标:在数据库没有被重启的情况下,从操作系统中找回被删掉的datafile和logfile

解决方案:

当符合下列状态时,我们可以借助unix/linux中的proc 文件系统,找回(retrieve)被删除的datafile和logfile

1.) Database is not restarted.

2.) Server is not restarted.

3.) The file was not offline before deletion.

后台进程(DBWR, PMON, SMON etc)访问被本数据库打开的所有datafiles,因此,借助于lsof命令,可以看到被进程open的 文件列表。

被进程打开的任何一个文件,都有一个文件描述符(fd)与该文件相关联。若是该文件被从操作系统中误删除了,该文件的条目(entry)并没有从proc 文件系统中被删除,借助于该entry,我们可以重建被删除的file(datafile or logfile)

如下是一个例子:

1.) Create a tablespace
SQL> create tablespace my_test datafile '/emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf' size 200k;
Tablespace created.

2.) Accidentally, the datafile belonging to this tablespace was deleted
 $ rm /emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf 

3.) Try resizing the datafile
SQL> alter database datafile '/emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf' resize 250k;
alter database datafile '/emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf' resize 250k
*
ERROR at line 1:
ORA-01565: error in identifying file
'/emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf'
ORA-27037: unable to obtain file status
SVR4 Error: 2: No such file or directory
Additional information: 3

抢救该文件的步骤

1.)找到dbwr进程的os pid

--> $ ps -ef |grep ‘<SID>‘| grep ‘<name_of_background_process>‘

$ ps -ef |grep EMR102U6|grep dbw
emrdbms 21943 1 0 10:27:08 ? 0:00 ora_dbw0_EMR102U6

2.)使用lsof命令为该 ospid 找到打开的文件

$ lsof -p 21943 |grep /emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf

Command PID   USER    FD    TYPE DEVICE SIZE/OFF     NODE                            NAME
oracle 21943 emrdbms 270uW  VREG 304,25 212992     11273825 /emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf

注意:

If you are using NAS then the file name in the above command may not be displayed properly and hence this procedure should not be used under these circumstances.

注意上面的fd值--270

3.)到fd目录下

--> $ cd /proc/ <process_id> / <file_descriptor_directory>‘/

$ cd /proc/21943/fd/

4.)将该表空间read only

alter tablespace my_test read only; 

将表空间置为read only 冻结了文件头,防止文件头的更新。因为 当database 处于open时,只有在datafile 处于read only状态下 才可能copy 该file。

read only 允许用户select 该表空间,但不允许 对该表空间的insert ,update,delete

5.)对该文件做一个copy

$ cat 270 > /emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf

6.)为了确保 该file 的copy在 copy后没有被使用,执行如下:

a) Take datafile offline
    alter tablespace my_test offline;

   Query the view v$datafile to verify the datafile is offline:
   select status from v$datafile where file#=<file number>;

b) Bring datafile back online
    alter tablespace my_test online;

7.)将该表空间置为read write

alter tablespace my_test read write;

Query view dba_tablespaces to check status of the tablespace:

select tablespace_name,status from dba_tablespaces where tablespace_name=‘MY_TEST‘;

8.)对该数据文件的resize操作就正常了。

SQL> alter database datafile ‘/emea/rdbms/64bit/app/oracle/oradata/EMR102U6/my_test_01.dbf‘ resize 250k;

Database altered.

注意:该过程也适用于找回被删除的 current redo logfile

【翻译自mos文章】在unix/linux中使用文件描述符(File Descriptors)来找回被删掉的文件(数据文件or redo log)

时间: 2024-10-08 06:10:04

【翻译自mos文章】在unix/linux中使用文件描述符(File Descriptors)来找回被删掉的文件(数据文件or redo log)的相关文章

【翻译自mos文章】oracle linux 和外部存储系统 的关系

oracle  linux 和外部存储系统 的关系 参考原文: Oracle Linux and External Storage Systems (Doc ID 753050.1) 适用范围: Linux OS - Version Oracle Linux 4.4 to Oracle Linux 6.0 with Unbreakable Enterprise Kernel [2.6.32] [Release OL4U4 to OL6] Linux x86-64 Linux x86 Linux

【翻译自mos文章】rac数据库中,HC_&lt;SID&gt;.dat文件被其他Oracle_Home下的实例所使用。

rac数据库中,HC_<SID>.dat文件被其他Oracle_Home下的实例所使用. 参考原文: RAC database HC_<SID>.dat is used by instance of different Oracle_Home (Doc ID 1618161.1) 适用于: Oracle Database - Enterprise Edition - Version 11.2.0.0 and later Information in this document ap

【翻译自mos文章】oracle db 中的用户账户被锁--查看oracle用户的尝试次数

参考原文: Users Accounts Getting Locked. (Doc ID 791037.1) 其实这个文章是为oracle 别的软件产品写的,不过涉及到user 锁定问题,那还是跟db有关系. 该文章我就不全部翻译了,只翻译最有用的一点: ---lcount列是记录oracle用户用错误的密码登陆db的登陆的次数. Select lcount from SYS.USER$ where name ='<USERNAME>' [翻译自mos文章]oracle db 中的用户账户被锁

【翻译自mos文章】在rac中,使用asmcmd命令从 文件系统 move system datafile 到asm磁盘组的方法

在rac中,使用asmcmd命令从 文件系统  move system datafile 到asm磁盘组的方法. 参考原文: How to move a SYSTEM datafile from filesystem to the ASM diskgroup using ASMCMD on RAC. (Doc ID 1607292.1) 适用于: Oracle Database - Enterprise Edition - Version 11.2.0.1 to 11.2.0.3 [Releas

【翻译自mos文章】oracle数据库中 基本的表压缩和高级压缩之间的区别

基本的表压缩和高级压缩之间的区别, 摘录自mos文章Difference Between Basic Table Compression And Advanced Compression (Doc ID 1548187.1) 适用于: Oracle Database - Enterprise Edition - Version 10.2.0.5 and later Information in this document applies to any platform. 目标: What is

【翻译自mos文章】从tablespace中 删除空的datafile时报ora-03262

参考自: Cannot Drop Empty Datafile From Tablespace ORA-03262 (文档 ID 1353029.1) 适用于: Oracle Server - Enterprise Edition - Version: 11.2.0.2 and later   [Release: 11.2 and later ] Information in this document applies to any platform. 症状: ALTER TABLESPACE

【翻译自mos文章】在10g中,当发生ORA-00020时,sqlplus登陆会报“connected to an idle instance”

在10g中.当发生ORA-00020时,sqlplus登陆会报"connected to an idle instance" 来源于: Sqlplus Logon Reports 'connected to an idle instance' when ORA-20 happens in 10g (文档 ID 1370000.1) 说的比較经典, 不做翻译,直接转帖: APPLIES TO: Oracle Server - Enterprise Edition - Version: 1

【翻译自mos文章】V$BACKUP_DATAFILE 中显示file#=0 有损坏

来源于: V$BACKUP_DATAFILE Shows Corruptions for File #0 (文档 ID 399113.1) 适用于: Oracle Database - Enterprise Edition - Version 9.2.0.1 to 11.1.0.6 [Release 9.2 to 11.1] Information in this document applies to any platform. 症状: 当查询v$backup_datafile时,发现对于fi

【翻译自mos文章】12c rac中,当脑裂发生时,哪个节点会幸存下来?

来源于: 12c: Which Node Will Survive when Split Brain Takes Place [1951726.1] 12c rac中,当脑裂发生时,哪个节点会幸存下来? 适用于: Oracle Database - Enterprise Edition - Version 12.1.0.2 and later Information in this document applies to any platform. 目的: 理解 从12.1.0.2开始,当脑裂发

【翻译自mos文章】Oracle Linux 5.9到Oracle Linux 6.4 之间的bug--Wrong Kernel Statistic

Oracle Linux 5.9到Oracle Linux 6.4 之间的bug--Wrong Kernel Statistic in Version 2.6.39-400.X.X 参考自: Wrong Kernel Statistic in Version 2.6.39-400.X.X (Doc ID 1552713.1) 适用于: Linux OS - Version Oracle Linux 5.9 with Unbreakable Enterprise Kernel [2.6.39] t