oracle表空间不存在错误
创建表空间语句:
CREATE TABLESPACE hand DATAFILE 'D:\oracle\product\10.2.0\oradata\hand.dbf' SIZE 1000M AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED LOGGING
EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO;
create user hand identified 土豆炖牛肉by hand default tablespace hand temporary tablespace temp;
grant dba to hand;
grant connect to hand;
grant unlimited tablespace to hand;
cmd命令
imp hand/hand@orcl1  full表白感动到哭的一段话=y file=D:\handgys.DMP
问题描述:
导入表空间的时候,有的表能正常导入,有的表不能正常导入,报错表空间不存在。
报错如下:
oracle 导入错误 IMP-00017
解决一:
解决注释:
主要是因为如果表不存在的话,那么创建表结构的时候,会去检测表空间,这将导致表空间不存在的错误。 使用ignore=y将忽略数据导入时候的错误。还可以将数据导入指定的数据库中。
创建表空间语句:
CREATE TABLESPACE hand DATAFILE 'D:\oracle\product\10.2.0\oradata\hand.dbf' SIZE 1000M AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED LOGGING
EXTENT MANAGEMENT 冰山毒娃娃LOCAL SEGMENT SPACE MANAGEMENT AUTO;
create user hand identified by hand default tablespace hand temporary tablespace temp;
grant dba to hand;
grant connect to hand;
grant unlimited tablespace to hand;
cmd命令:
imp hand/hand@orcl1 ignore=y  full=y file=D:\handgys.DMP
---------------------------------------------------------------------------------------------------------------------
问题描述:
注会报考条件要求导入表空间的时候,所有的表都能正常导入,唯有一个表不能正常导入,这个表是(人员信息表),该表的密码字段采用加密方法,<BLOB>锁定,导入的时候报错表空间不存在,IMP-00017。
解决二:
解决注释:
创建表空间的时候加上这句权限 grant  resource  to  hand;
创建表空间:
CREATE TABLESPACE hand DATAFILE 'D:\oracle\product\10.2.0\oradata\hand.dbf' SIZE 1000M AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED LOGGING
EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO;
create user hand identified by hand default tablespace hand temporary tablespace temp;
grant dba望洞庭的意思 to hand;
grant  resource  to  hand;
grant connect to hand;
grant unlimited tablespace to hand;
cmd命令:
imp hand/hand@orcl1 ignore=y  full保定市旅游景点=y file=D:\handgys.DMP
解决三:
解决注释:
表的某些字段采用加密方法,<BLOB>锁定,导出表空间的时候加上direct=y
用户数据导出cmd命令:
exp hand/hand@orcl1  direct=y  file=D:\handgys.DMP
创建表空间:
CREATE TABLESPACE hand DATAFILE 'D:\oracle\product\10.2.0\oradata\hand.dbf' SIZE 1000M AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED LOGGING
EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO;
create user hand identified by hand default tablespace hand temporary tablespace temp;
grant dba to hand;
----grant  resource  to  hand;
grant connect to hand;
grant unlimited tablespace to hand;
用户数据导入cmd命令:
imp hand/hand@orcl1 ignore=y  full=y file=D:\handgys.DMP

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。