linux测试系统使用expdp迁移数据到windos系统,11.2.0.4版本测试

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux测试系统使用expdp迁移数据到windos系统,11.2.0.4版本测试相关的知识,希望对你有一定的参考价值。

测试,使用linux 系统,迁移至windos测试系统,迁移用户scott

 

1.源端导出(linux)

2.传输

3.目标端导入(windows)

 

 

1.源端导出,本次使用expdp

 

1)创建操作系统转储目录,存放expdp导出的dump文件

[[email protected] ~]$ cd /picclife/software/dump/

[[email protected] dump]$ ls -lrt /picclife/software/|grep dump
drwxr-xr-x 2 oracle oinstall 4096 Jan 12 09:02 dump

2)查询or创建数据库转储目录

SQL> select * from dba_directories;

SQL> create directory scott_dump as ‘/picclife/software/dump‘;

Directory created.

授予权限

SQL> grant read,write on directory scott_dump to scott;

Grant succeeded.

3)操作系统oracle用户使用迁移用户进行导出

expdp scott/tiger DIRECTORY=scott_dump dumpfile=scott_dump%U logfile=expdp_dump schemas=scott

 

2.文件传输

D: mp

scott_dump01.dmp

 

3.目标端导入windows系统

1)测试环境,删除用户

SQL> drop user scott cascade;

2)创建表空间

查询数据文件目录

SQL> select name from v$datafile;

根据源端scott用户,使用的表空间进行创建

SQL> create tablespace test datafile ‘C:WIN_ORACLE_11_DATABASEAPPORADATAWIN11 est01.dbf‘ size 1m;

表空间已创建。

linux系统,查询迁移用户之前的表空间

SQL> select username,DEFAULT_TABLESPACE from dba_users where username=‘SCOTT‘;

USERNAME DEFAULT_TABLESPACE
-------------------- --------------------
SCOTT test

 

3)创建用户

*注意,迁移新环境的用户默认表空间需要与生产环境中的保持一致,本次查询上述是test

SQL> create user scott identified by tiger default tablespace test;

 

4)创建转储目录,并授予权限

SQL> create directory imp_scott as ‘D: mp‘;

SQL>  grant read,write on directory imp_scott to scott;

 

5)权限同步

导入数据前,需要一些权限,因此在源端linux查询相应权限后,目标端windows进行同步

linux查询

select * from dba_role_privs where grantee=‘SCOTT‘

GRANTEE GRANTED_ROLE ADMIN_ DEFAUL
-------------------- -------------------- ------ ------
SCOTT RESOURCE NO YES
SCOTT CONNECT NO YES

select * from dba_sys_privs where grantee=‘SCOTT‘

GRANTEE PRIVILEGE ADMIN_
-------------------- -------------------- ------
SCOTT UNLIMITED TABLESPACE NO

*由于只是导入一个用户,因此无需同步其它用户的对象权限

windows授予

SQL> grant connect,resource to scott;

SQL> grant unlimited tablespace to scott;

 

5)进行导入

C:UsersThinkpad>impdp scott/tiger directory=imp_scott dumpfile=scott_dump%U logfile=scott_impdp

 









以上是关于linux测试系统使用expdp迁移数据到windos系统,11.2.0.4版本测试的主要内容,如果未能解决你的问题,请参考以下文章

数据库迁移expdp impdp 与 OGg 搭建

Oracle11g数据库迁移到Oracle12C的PDB(使用impdp/expdp)

Oracle使用数据泵 (expdp/impdp)实施迁移

Oracle数据迁移expdp/impdp

Linux服务器下对Oracle数据库expdp(导出)和impdp(导入)

oracle跨平台数据迁移 expdp/impdp 字符集问题 导致ORA-02374 ORA-12899 ORA-02372