Originally posted by: Verleihnix
check if the filesystems are mounted with the dio or cio Option.
mount | grep <FS>
if dio or cio is enabled, then you should disable it while the restore ist running.
Example :
1. Check for dio/cio
mount | grep oradata
/dev/datalv /mydb/oradata jfs2 May 22 17:13 rw,cio,noatime,log=INLINE
2. Disable cio/dio
chfs -s options=rw,noatime /mydb/oradata
3. Make sure, there ist no access to the filesystem
4. Remount the filesystem
5. Restore the Database
6. Enable cio/dio again
chfs -s options=rw,cio,noatime /mydb/oradata
7. Remount Filesystem
DIO is used for JFS Filesystems and CIO for JFS2