Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3902678
  • 博文数量: 534
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4800
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(534)

文章存档

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(253)

2006年(73)

分类: Oracle

2011-11-17 14:44:50

今天用NFS打开Oracle出现下面错误:
SQL> alter database open resetlogs;

alter database open resetlogs
*
ERROR at line 1:
ORA-01115: IO error reading block from file 1 (block # 1)
ORA-01110: data file 1:
'/vvfs/data/1.1/192.168.1.154/+DATA/ora11g/datafile/system.261.754325643'
ORA-27072: File I/O error
Linux Error: 5: Input/output error
Additional information: 4
Additional information: 1
Additional information: -1

多次出现,不知道为什么,dbv检查这个文件一切OK。

最后修改了initgan.ora文件内容,增加:
filesystemio_options='setall'
就一切OK了。

关于这个参数的解释:
======================================
My Everyday Oracle

Friday, June 18, 2010
I/O Errors using NFS on Netapps storage on Oracle 10.2.0.4
I recently faced the following issue, on one of my client environment.

After successfully creating a 10g database using NFS file system on a Linux OS, I turned it over to the client for production implementation. Developers started populating the data using Schema level import. When a large table is imported, the import failed with the following errors

ORA-01115: IO error reading block from file 6 (block # 5631)
ORA-01110: data file 6: '/u0201/oradata/reportdata.dbf'
ORA-27091: unable to queue I/O
ORA-27072: File I/O error
Linux-x86_64 Error: 5: Input/output error
Additional information: 4
Additional information: 5630

After searching several hours on Oracle Support, found a document that talked about setting up filesystemio_options to 'setall' on NFS file systems for redo log corruption. We did not have any corruption, but I wanted to try it anyway because since we were using NFS.

Alter system set filesystemio_options=setall scope=spfile;

After setting this, developers did the imports successfully without any problem.


Parameter: FILESYSTEMIO_OPTIONS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"directIO" - This allows directIO to be used where supported by the OS. Direct IO bypasses any Unix buffer cache. As of 10.2 most platforms will try to use "directio" option for NFS mounted disks (and will also check NFS attributes are sensible).
"setall" - Enables both ASYNC and DIRECT IO. The 'setall' option chooses async or direct I/O based on the platform and file system used.
Enabling directio against nfs datafiles/redo logs should always be used so that no writes are ever cached in the os buffer cache. The consistency of writes cannot be guaranteed when relying on stateless nfs to perform asynchronous writes over the network.
at 6:51 AM Posted by My Everyday Oracle



阅读(1701) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

十七岁的回忆2011-11-19 20:00:36

增加:filesystemio_options='setall'就一切OK了
原来如此 啊