ORACLE 11G database migration to 9I reports IMP-00003 ORA-00096 IMP-00000

Source: Internet
Author: User
Tags metalink

Today, a friend asked me why 11g exp files cannot be imported into 9I? Due to the incompatibility of exp/imp tools, when importing a database of a higher version to a lower version, you need to use the exp/imp tool of a lower version for import and export. A friend used 9i exp to export 11G data and then import imp to 9i. The import is normal. However, I reported an error in my own test environment. The error message is as follows:

 
 
  1. [oracle9i@rhel4 admin]$ exp scott/oracle@orcl11g file='/tmp/scott_test_exp.sql' tables='test_exp' rows=N; 
  2.  
  3. Export: Release 9.2.0.4.0 - Production on Fri Mar 22 06:18:38 2013 
  4.  
  5. Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved. 
  6.  
  7.  
  8. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production 
  9. With the Partitioning, OLAP, Data Mining and Real Application Testing options 
  10. Export done in US7ASCII character set and AL16UTF16 NCHAR character set 
  11. server uses ZHS16GBK character set (possible charset conversion) 
  12. Note: table data (rows) will not be exported 
  13.  
  14. About to export specified tables via Conventional Path ... 
  15. . . exporting table                       TEST_EXP 
  16. Export terminated successfully without warnings. 
  17.  
  18. [oracle9i@rhel4 admin]$ imp scott/oracle file='/tmp/scott_test_exp.dmp' tables='test_exp' 
  19.  
  20. Import: Release 9.2.0.4.0 - Production on Fri Mar 22 07:08:59 2013 
  21.  
  22. Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved. 
  23.  
  24.  
  25. Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production 
  26. With the Partitioning, OLAP and Oracle Data Mining options 
  27. JServer Release 9.2.0.4.0 - Production 
  28.  
  29. Export file created by EXPORT:V09.02.00 via conventional path 
  30. import done in US7ASCII character set and AL16UTF16 NCHAR character set 
  31. import server uses ZHS16GBK character set (possible charset conversion) 
  32. IMP-00003: ORACLE error 96 encountered 
  33. ORA-00096: invalid value  for parameter plsql_compiler_flags, must be from among NON_DEBUG, DEBUG, INTERPRETED, NATIVE 
  34. IMP-00000: Import terminated unsuccessfully 

At 11G, the show parameter command cannot find the plsql_compiler_flags PARAMETER, which is replaced by another PARAMETER.

No solution was found after error codes related to GOOGLE, BAIDU, and METALINK. Change the keyword plsql_compiler_flags and find the solution in metalink as follows:

 
 
  1. [oracle11g@rhel4 admin]$ sqlplus / as sysdba 
  2.  
  3. SQL*Plus: Release 11.2.0.3.0 Production on Fri Mar 22 07:27:50 2013 
  4.  
  5. Copyright (c) 1982, 2011, Oracle.  All rights reserved. 
  6.  
  7.  
  8. Connected to: 
  9. Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production 
  10. With the Partitioning, OLAP, Data Mining and Real Application Testing options 
  11.  
  12. SQL> CREATE OR REPLACE VIEW exu9defpswitches ( 
  13.   2                  compflgs, nlslensem ) AS 
  14.   3          SELECT  a.value, b.value 
  15.   4          FROM    sys.v$parameter a, sys.v$parameter b 
  16.   5          WHERE   a.name = 'plsql_code_type' AND 
  17.   6                  b.name = 'nls_length_semantics'  
  18.   7  ; 
  19.  
  20. View created. 

Normal for exporting and importing again

 
 
  1. [oracle9i@rhel4 admin]$ exp scott/ORACLE@orcl11g file='/tmp/scott_test_exp.dmp' tables='test_exp'; 
  2.  
  3. Export: Release 9.2.0.4.0 - Production on Fri Mar 22 07:25:43 2013 
  4.  
  5. Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved. 
  6.  
  7.  
  8. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production 
  9. With the Partitioning, OLAP, Data Mining and Real Application Testing options 
  10. Export done in US7ASCII character set and AL16UTF16 NCHAR character set 
  11. server uses ZHS16GBK character set (possible charset conversion) 
  12.  
  13. About to export specified tables via Conventional Path ... 
  14. . . exporting table                       TEST_EXP      74622 rows exported 
  15. Export terminated successfully without warnings. 
  16. [oracle9i@rhel4 admin]$ imp scott/oracle file='/tmp/scott_test_exp.dmp' tables='test_exp' 
  17.  
  18. Import: Release 9.2.0.4.0 - Production on Fri Mar 22 07:25:51 2013 
  19.  
  20. Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved. 
  21.  
  22.  
  23. Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production 
  24. With the Partitioning, OLAP and Oracle Data Mining options 
  25. JServer Release 9.2.0.4.0 - Production 
  26.  
  27. Export file created by EXPORT:V09.02.00 via conventional path 
  28. import done in US7ASCII character set and AL16UTF16 NCHAR character set 
  29. import server uses ZHS16GBK character set (possible charset conversion) 
  30. . importing SCOTT's objects into SCOTT 
  31. . . importing table                     "TEST_EXP"      74622 rows imported 
  32. Import terminated successfully without warnings. 

Change to the original view definition in 11G

 
 
  1. [oracle11g@rhel4 sql]$ sqlplus / as sysdba 
  2.  
  3. SQL*Plus: Release 11.2.0.3.0 Production on Mon Mar 25 02:15:51 2013 
  4.  
  5. Copyright (c) 1982, 2011, Oracle.  All rights reserved. 
  6.  
  7.  
  8. Connected to: 
  9. Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production 
  10. With the Partitioning, OLAP, Data Mining and Real Application Testing options 
  11.  
  12. SQL> CREATE OR REPLACE VIEW exu9defpswitches ( 
  13.   2                  compflgs, nlslensem ) AS 
  14.   3          SELECT  a.value, b.value 
  15.   4          FROM    sys.v$parameter a, sys.v$parameter b 
  16.   5          WHERE   a.name = 'plsql_compiler_flags' AND 
  17.   6                  b.name = 'nls_length_semantics'  
  18.   7  ; 
  19.  
  20. View created. 
  21.  
  22. SQL> exit 
  23. Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production 
  24. With the Partitioning, OLAP, Data Mining and Real Application Testing options 

Reference:

Export From 11g using EXP Utility Version 9iR2 Produces Corrupt Export Dump [ID 550740.1]

This article from "seriously lose" blog, please be sure to keep this source http://luoping.blog.51cto.com/534596/1161921

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.