Oracle 12C database imported to 11 GB

Source: Internet
Author: User

Oracle 12C database imported to 11 GB

The packages backed up from oracle 12c (expdp) are restored to 11 GB. We all know that there will be compatibility issues.

Sure enough, an error is returned:
ORA-39142: Version 4.1 (in the dump file forks. expdp) Not compatible
And so on.

Later, I learned that the version information should be specified during the backup in 12C. For example, I want to import the version information to the 11g Library (the specific version is 11.1.0.6.0 and you can see it by enabling sqlplus ), then version = 11.1.0.6.0

Statement:
Backup in 12C

expdp system/password@SID12c directory=dbbak dumpfile=20160321.expdp logfile=20160321.log schemas=leftfist version=11.1.0.6.0

Restore in 11g

impdp sys/password@SID11g directory=dbbak dumpfile=20160321.expdp logfile=20160321.log schemas=leftfist table_exists_action=replace

Of course, the creation of the backup file storage directory dbbak, the creation of tablespaces, users and other details are ignored. For details of this type, refer to the example.
Oracle 10 Gb backup and Restoration

References:
ORA-39142 IMPDP cross-version import data error Solution

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.