<!--[if !supportLists]-->1.
<!--[endif]-->Go to the oracle server AMX
currently used, execute
[oracle@lnxas4-ce2
~]$ sqlplus /nolog
SQL*Plus: Release
10.2.0.1.0 - Production on Wed Jan 12 07:18:47 2011
Copyright (c) 1982,
2005, Oracle. All rights reserved.
SQL> connect /as
sysdba
Connected.
SQL> create or
replace directory bakdir as '/home/oracle/bak';
Directory created.
SQL> grant
read,write on directory bakdir to qsh05;
Grant succeeded.
SQL> exit
|
'/home/oracle/bak'
is where to save database dump file, and ‘qsh05’ is database username.
<!--[if !supportLists]-->2.
<!--[endif]-->Make sure '/home/oracle/bak' is created,
then execute
expdp qsh05/qsh05 dumpfile=qsh05.dmp
directory=bakdir include=table
|
‘qsh05/qsh05’ is database username/password,
and ‘dumpfile’ is the file name of database dump file, and ‘directory’ is the
directory name created in step 1, because only need export table, so add
‘include=table’.
<!--[if !supportLists]-->3.
<!--[endif]-->If the export is successful,
the end of log looks like following,
Dump file set for
QSH05.SYS_EXPORT_SCHEMA_01 is:
/home/oracle/bak/qsh05.dmp
Job
"QSH05"."SYS_EXPORT_SCHEMA_01" successfully completed at
07:25:30
|
and go to /home/oracle/bak, there are two
files, ‘qsh05.dmp’ and ‘export.log’.
<!--[if !supportLists]-->4.
<!--[endif]-->Go to the ORACLE server where
the AMX wanted to migrate, and create a new user/password in database.
<!--[if !supportLists]-->5.
<!--[endif]-->Create a new dir, and create a
new directory mapping to this dir as step 1.
<!--[if !supportLists]-->6.
<!--[endif]-->Copy dump file to the dir
created in step 5, then execute
impdp new_user/new_pass
remap_schema=qsh05:new_user dumpfile=qsh05.dmp directory=new_directory
include=table
|
<!--[if !supportLists]-->7.
<!--[endif]-->If the import is successful,
the end of log looks like following,
Job "QSH07"."SYS_IMPORT_FULL_01"
successfully completed at 17:46:55
|
分享到:
相关推荐
ORACLE EXPDP/IMPDP 参数详解 ORACLE EXPDP/IMPDP 是 Oracle 数据库中用于数据泵导出导入的工具,分别对应 EXP 和 IMP ...在使用 EXPDP 和 IMPDP 时,需要注意这些选项的使用方法和注意事项,以便正确地使用这些工具。
下面将详细解释这两个命令的相关参数和使用方法。 1. **DIRECTORY参数** DIRECTORY=directory_object 是用来指定转储文件和日志文件的存储位置。directory_object 是通过 `CREATE DIRECTORY` 语句在Oracle数据库中...
这种方法通常使用Oracle Data Pump工具(expdp 和 impdp)来实现,它允许在数据库运行时执行数据导出和导入,从而避免了停机时间对业务的影响。以下是关于使用expdp/impdp进行非归档迁移的关键知识点: 1. **迁移前...
### ORACLE expdp-impdp 使用详解 #### EXPDP 命令行选项解析 **1. ATTACH** - **用途**: 该选项用于在客户端会话与已存在的导出任务之间建立联系。 - **语法**: ```plaintext ATTACH=[schema_name.]job_name ...
在Oracle数据库系统中,expdp(Export Data Pump)和impdp(Import Data Pump)是用于进行大规模数据导出和导入的高效工具。这两个工具利用Oracle的数据泵技术,能够快速、高效地处理大量数据的迁移和恢复。 **...
EXPDP/IMPDP 是 Oracle 数据库中用于数据导出和导入的命令行工具。下面将详细介绍 EXPDP/IMPDP 的用法和相关参数。 一、创建逻辑目录 在使用 EXPDP/IMPDP 之前,需要创建逻辑目录,以便存放导出和导入的数据文件。...
oracle 数据迁移可以使用传统的 exp/imp 工具,也可以使用数据泵 expdp/impdp 工具。 exp/imp 工具是 oracle 数据迁移的传统方法,用于将数据库中的对象和数据导出到一个二进制文件中,然后将该文件导入到目标...
### expdp, impdp 常用方法解析 #### 一、总体规划 ##### 1.1 软件环境 - **操作系统**: Red Hat Enterprise Linux Server release 6.3 (Santiago) - **数据库**: Oracle 11g Release 2 for Linux x86_64 ##### ...
Oracle 10g 引入了新的数据泵工具 expdp 和 impdp,它们是对传统 exp 和 imp 工具的增强版本。数据泵(Data Pump)技术提升了数据迁移、备份和恢复的性能,提供了更快的数据传输速度和更丰富的功能。 expdp(Export...
本文详细介绍了 Oracle 10G 中 EXPDP 的使用方法,包括如何创建 DIRECTORY 对象、如何进行不同类型的导出操作以及如何利用 EXPDP 的高级选项来实现更加灵活的数据迁移需求。通过这些示例,我们可以看到 EXPDP 提供了...
Oracle的expdp和impdp工具提供了一种灵活且高效的方法来处理数据迁移任务。它们允许管理员定制导出和导入操作,以满足特定需求,如只导入部分表、保留目标表的现有数据或替换目标表数据。理解并熟练使用这两个工具...
### DataPump (expdp 和 impdp) 用法详解 #### 一、DataPump 概述 Oracle Data Pump 是 Oracle 数据库提供的一种高效工具,用于数据的导出和导入操作。它通过使用专用 API 来替代传统的 SQL 命令实现数据的快速...
- EXPDP 和 IMPDP 必须在 Oracle 服务器端执行,不能在客户端使用。 - EXP 导出文件只能用 IMP 导入,而 EXPDP 文件只能用 IMPDP 导入,两者之间不兼容。 - 通过指定参数,可以对导出和导入过程进行精确控制,例如...
在 ORACLE 数据库迁移过程中,有多种方法可以选择,本文将介绍三种常用的迁移方案:exp/imp 方案、expdp/impdp 方案和 RMAN 方案。每种方案都有其优缺,选择哪种方案取决于实际情况。 exp/imp 方案 exp/imp 方案是...
Oracle提供了一套工具和方法来进行高效的数据备份与恢复,其中Data Pump是一个强大的数据导入导出工具,提供了expdp(导出)和impdp(导入)两种方式,具有高效、可扩展、灵活的特点。 在讨论Oracle数据库备份恢复...
Oracle 10G 提供了多种逻辑备份方法,包括 exp/imp 和 expdp/impdp 两种方式。 exp/imp 是 Oracle 早期的逻辑备份工具,exp 用于导出数据库对象,imp 用于导入数据库对象。exp/imp 方式简单易行,但功能有限。 ...
- 在使用EXP/IMP或EXPDP/IMPDP之前,请确保已经正确配置了Oracle客户端环境,并设置了相应的TNS监听器配置。 - 对于大型数据库,建议使用EXPDP/IMPDP来提高导出导入的效率。 - 导入导出过程中,可以使用`IGNORE`参数...