我有一个我认为是Oracle数据转储的文件,但是Oracle拒绝导入它:
There is a problem reading from the import files
ORA-39143
"C:\nm\data\THEFILE.dmp" may be an original export dump file
Linux "file“实用程序说它是DBase 3,但我对此表示怀疑,因为记录号是不现实的,而且DBase工具无法加载该文件:
THEFILE.dmp: DBase 3 data file (1380929624 records)
下面是文件开头的十六进制转储
当我尝试导入的时候,我得到了error.can,有人能帮我吗?
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
ORA-31626: job does not exist
ORA-31637: cannot create job SYS_IMPORT_FULL_01 for user TBAADM
ORA-06512: at "SYS.DBMS_SYS
我编写了以下命令:
create directory orcl_full as '/oradata3/datapump/full_export';
create user user1 identified by admin12;
grant read,write on directory orcl_full to user1;
grant exp_full_database to user1;
但是,当我尝试使用expdp命令导出数据时,它没有工作:
expdp user1@ri/admin12@ORCL directory=orcl_full dumpfile=orclful
我有Oracle数据库11.2.0.4。我想用impdp将一个转储文件导入到它。转储文件用于Popualtion架构。架构的名称区分大小写。如何将此文件导入数据库?
impdp system/***** schemas="Popualtion" directory=test_dir dumfile=expdp.DMP
这个命令是错误的。
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Da