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

发布于 2024-12-07 02:05:28 字数 871 浏览 3 评论 0原文

我在 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

对我的问题有什么建议吗?

I am running my oracle on a debian machine. Today I decided to create a new user and a new tablespace. Then I export a database with the user System which on the same machine. I got some error when I try to import to my new user account.
here is what I've done:

./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

Any suggestion to my problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仅此而已 2024-12-14 02:05:28

来自 http://www.error-code.org。 uk/view.asp?e=ORACLE-IMP-00085

Oracle 错误::IMP-00085

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

您在执行操作时为 FILE 参数指定了多个文件名
导入,但导出文件中的标头表明
导出操作只能创建一个文件。指定多个文件
仅当导出文件为
由用户指定非零的导出操作创建
FILESIZE 参数的值。行动

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

您可能应该使用:

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

寻求帮助:imp help=y

From http://www.error-code.org.uk/view.asp?e=ORACLE-IMP-00085 :

Oracle Error :: IMP-00085

multiple input files specified for unbounded export file Cause

You specified multiple file names for the FILE parameter when doing an
import, but the header in the export file indicates that that the
export operation could create only one file. Specifying multiple file
names is valid for an import operation only if the export files were
created by an export operation in which the user specified a non-zero
value for the FILESIZE parameter. Action

If you believe the export contains multiple files, verify that you
have specified the correct files. If you believe the export should be
in only one file then try the import operation again, but specify only
one value for the FILE parameter.

You should probably use:

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

For help: imp help=y

忆依然 2024-12-14 02:05:28

就我而言,我通过使用 SYS 用户而不是 SYSTEM 用户导入转储文件解决了错误,并且导入工作没有错误。

In my case I solved the error by importing the dump file by using SYS user instead of SYSTEM user and import working without errors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文