标签:style io color os 使用 sp strong 文件 数据
ORA-00376: file string cannot be read at this time
文件字符串本次操作不可读
Cause: attempting to read from a file that is not readable. Most likely the file is offline.
(1)原因:表空间是离线
解决方法:检查表空间状态,将其online:
SQL>alter tablespace 表空间名 online;
(2)原因:表空间对应的文件不存在
解决方法:在提示错误的表空间对应的文件下,建立对应的表空间(对应的表空间大小根据自己导入的文件的大小进行确定)
SQL>create tablespace ceimsexchange
2 datafile ‘F:\asmfile\asm_file.dbf‘
3 size 100M AutoExtend On Next 10M Maxsize 2048M
4 extent management local
5 segment space management auto;
注意F:\asmfile\这个路径必须先建好
标签:style io color os 使用 sp strong 文件 数据
原文地址:http://www.cnblogs.com/striver-zhu/p/4121411.html