Oracle11g导入*.dmp数据文件
imp username/password@SID file=XXX.dmp fromuser=XXX touser=XXX tables=(XXX,XXX) [ignore=y]
其中,
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\这个路径必须先建好
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。