Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/oracle/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ajax/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
导入我的oracle 10g数据库时出错_Oracle_Import_Oracle10g - Fatal编程技术网

导入我的oracle 10g数据库时出错

导入我的oracle 10g数据库时出错,oracle,import,oracle10g,Oracle,Import,Oracle10g,我正在debian机器上运行oracle。今天我决定创建一个新用户和一个新表空间。然后,我导出一个数据库,其中包含同一台机器上的用户系统。我尝试导入到新用户帐户时出错。 以下是我所做的: ./imp mynewuser/passwrdb@orcl file=newdump_sept.dmp system/tomynewuser Import: Release 10.2.0.1.0 - Production on Thu Sep 29 18:06:23 2011 Copyright (c) 1

我正在debian机器上运行oracle。今天我决定创建一个新用户和一个新表空间。然后,我导出一个数据库,其中包含同一台机器上的用户系统。我尝试导入到新用户帐户时出错。 以下是我所做的:

./imp mynewuser/passwrdb@orcl file=newdump_sept.dmp system/tomynewuser

Import: Release 10.2.0.1.0 - Production on Thu Sep 29 18:06:23 2011

Copyright (c) 1982, 2005, Oracle.  All rights reserved.


Connected to: Oracle Database 10g Enterprise Edition Release
10.2.0.1.0 - Production With the Partitioning, OLAP and Data Mining options

Export file created by EXPORT:V10.02.01 via conventional path

Warning: the objects were exported by SYSTEM, not by you

import done in US7ASCII character set and AL16UTF16 NCHAR character set 
import server uses WE8ISO8859P1 character set (possible charset conversion) 
IMP-00085: multiple input files specified for unbounded export file 
IMP-00000: Import terminated unsuccessfully
对我的问题有什么建议吗

来自:

Oracle错误::IMP-00085

为无限导出文件指定了多个输入文件

在执行以下操作时,为file参数指定了多个文件名: 导入,但导出文件中的标头指示 导出操作只能创建一个文件。指定多个文件 仅当导出文件为空时,名称对导入操作有效 由用户在其中指定非零的导出操作创建 FILESIZE参数的值。行动

如果您认为导出包含多个文件,请确认 已指定正确的文件。如果你认为出口应该是 仅在一个文件中,然后重试导入操作,但仅指定 文件参数的一个值

您可能应该使用:

./imp mynewuser/passwrdb@orcl file=newdump_sept.dmp fromuser=system touser=tomynewuser

如需帮助:
imp help=y

@Dwi Susanto:如果有效,您可以接受解决方案(单击问题分数下的复选标记)。