要命的逗号

  • 源数据库:
  1. Linux 64 Bit
  2. Oracle 11.2.0.1.0  64Bit
  3. 字符集 UTF-8
  • 目标数据库:
  1. win7 64 Bit
  2. Oracle 11.2.0.1.0  64Bit
  3. 字符集 UTF-8

使用expdp成功从源数据库导出一个schema的dump文件,经详细检查过程中没有任何错误;将文件下载到目标操作系统上用impdp导入时总是提示那三个错误,两个数据库的版本和字符集都是一样的,version的参数值无论是用compatible还是latest都报同样的错误,纠缠了很久实在找不到原因,最后删除逗号问题解决,逗号在linux环境下是没有问题的,但在windows环境下使用dos命令就有问题了,而且提示的错误信息容易误解,真是要命的逗号。

  
  
  
  
  1.  C:\>impdp user/pwd@ORCL  schemas=schema1 directory=dir1 dumpfile=schema1.dmp LOGFILE= schema1 .log content=all version=compatible; 
  2.  
  3. Import: Release 11.2.0.1.0 - Production on Fri Jun 8 15:28:49 2012 
  4.  
  5. Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved. 
  6.  
  7. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production 
  8. With the Partitioning, OLAP, Data Mining and Real Application Testing options 
  9. ORA-39001: invalid argument value 
  10. ORA-39023: Version COMPATIBLE; is not supported. 
  11. ORA-06502: PL/SQL: numeric or value error: character to number conversion error 
  12.  

你可能感兴趣的:(datapump)