Oracle database backup, restore (How to import an Oracle 11g backup dat file into a 10g database)

Source: Internet
Author: User

How to import an Oracle 11g backup dat file into a 10g database workaround: Add the target database version number after exporting Export:Execute under SQL Plus: Create or replace directory File_path as ' e:\ ';--creating Export \ Import file storage path (my is on E-drive)

Execute inside CMD: EXPDP username/password @ service name Directory=file_path dumpfile= Export Database file name. dat schemas= user name Logfile=baklog.log version= 10.2.0.1.0 (version number only used when importing an Oracle 11g backup dat file into a 10g database)
Import:

Create or replace directory File_path as ' the backup file path to import '; (if you have previously done the export you do not need to do it again, just put the file in the directory everywhere)

IMPDP User name/password @ service name Directory=file_path dumpfile= The name of the imported database. DAT remap_schema= database file export user name: User name to import target tablespace table_exists_action=replace logfile=20150920impdp.log version= 10.2.0.1.0 (version number only used when importing an Oracle 11g backup dat file into a 10g database) Oracle 10g version number (can be tried): texport:v10.02.00 version=10.2.0 .1.0
You can also check the version number yourself:SELECT * FROM V$version

Oracle database backup, restore (How to import an Oracle 11g backup dat file into a 10g database)

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.