简体   繁体   English

EXCLUDE 的值形成错误导入 Oracle Database 12c Enterprise Edition Release 12.1.0.1.0

[英]Value for EXCLUDE is badly formed Importing Oracle Database 12c Enterprise Edition Release 12.1.0.1.0

I want to import a Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production我想导入Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production

using the command :使用命令:

impdp SOLVIA/SOLVIA900@IMMBO DIRECTORY=DB_EXP DUMPFILE=week_exp_immbo.dmp LOGFILE=week_exp_immbo.log REUSE_DATAFILES=YES exclude=tablespace:"IN ('IMMBO')"

But I got this error:但我收到了这个错误:

Connected to: Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production
ORA-39001: invalid argument value
ORA-39071: Value for EXCLUDE is badly formed.
ORA-00936: missing expression

Exclude Arguments with Data Pump in Command Mode Require Quotations to be Escaped在命令模式下使用数据泵排除参数需要转义引号

The invocation you are using looks reasonable.您正在使用的调用看起来很合理。

Here it is:这是:

impdp SOLVIA/SOLVIA900@IMMBO DIRECTORY=DB_EXP DUMPFILE=week_exp_immbo.dmp LOGFILE=week_exp_immbo.log REUSE_DATAFILES=YES exclude=tablespace:"IN ('IMMBO')"

Per My Oracle Support document, How To Resolve The Error ORA-39071 Value For EXCLUDE Is Badly Formed (Doc ID 734324.1) , you need to *escape the quotations like this:根据 My Oracle Support 文档, 如何解决 EXCLUDE 的错误 ORA-39071 值格式错误(文档 ID 734324.1) ,您需要像这样*转义引号:

impdp SOLVIA/SOLVIA900@IMMBO DIRECTORY=DB_EXP DUMPFILE=week_exp_immbo.dmp LOGFILE=week_exp_immbo.log REUSE_DATAFILES=YES exclude=tablespace:\"IN (\'IMMBO\')\"

*: Escaping quotation marks is required with a Linux operating system. *:Linux 操作系统需要转义引号。 This does not apply to Windows operating systems.这不适用于 Windows 操作系统。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 AWS Oracle Database 12c企业版发行版中的Kill会话 - Kill session in AWS Oracle Database 12c Enterprise Edition Release Oracle Database 12c企业版版本12.1.0.2.0-64位中的标识列是否已删除? - Have Identity Columns been removed in Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit? 如何配置Web应用程序以使其与Oracle 12c第3版(12.1.0.1.0)配合使用? - How Do I Configure my Web App to Work with Oracle 12c Release 3 (12.1.0.1.0)? 在Oracle Database 12c企业版中获取日期时间戳记差异分钟 - Getting date time stamp difference minutes in Oracle Database 12c Enterprise Edition Oracle数据库12c标准版发行版:00902。00000-“无效的数据类型” - Oracle Database 12c Standard Edition Release: 00902. 00000 - “invalid datatype” 如何知道oracle 12c数据库的版本? - how to know the edition of oracle 12c database? 使用ODAC 12c Release 4和EF 6将Oracle数据库导入Entity Framework模型时,如何解决问题? - How do I fix problems when importing an Oracle database into an Entity Framework model using ODAC 12c Release 4 and EF 6? 如何在 Oracle Database 12c 中返回多个值 - How to return multiple value in Oracle Database 12c Oracle企业管理器云控制12c RAC - Oracle Enterprise Manager Cloud Control 12c RAC Oracle Enterprise Manager 12c插件开发 - Oracle Enterprise Manager 12c Plugin development
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM