`
as619864232
  • 浏览: 325794 次
社区版块
存档分类
最新评论

Oracle 数据的导入和导出

阅读更多

数据导出:
 1 将数据库TEST完全导出,用户名system 密码manager 导出到D:\daochu.dmp中
   exp system/manager@TEST file=d:\daochu.dmp full=y
 2 将数据库中system用户与sys用户的表导出
   exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)
 3 将数据库中的表inner_notify、notify_staff_relat导出
    exp aichannel/aichannel@TESTDB2 file= d:\datanewsmgnt.dmp tables=(inner_notify,notify_staff_relat) 
 4 将数据库中的表table1中的字段filed1以"00"打头的数据导出
   exp system/manager@TEST file=d:\daochu.dmp tables=(table1) query=" where filed1 like '00%'"
 
  上面是常用的导出,对于压缩,既用winzip把dmp文件可以很好的压缩。
  也可以在上面命令后面 加上 compress=y 来实现。

数据的导入
 1 将D:\daochu.dmp 中的数据导入 TEST数据库中。
   imp system/manager@TEST  file=d:\daochu.dmp
   imp aichannel/aichannel@TEST  full=y  file=d:\datanewsmgnt.dmp ignore=y
   上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。
   在后面加上 ignore=y 就可以了。
 2 将d:daochu.dmp中的表table1 导入
 imp system/manager@TEST  file=d:\daochu.dmp  tables=(table1)

 

IMP:

silent          silent: display banner information, default is N
trace           trace option: enable sql_trace and timed_stat, default is N
resumable               resumable option: enable resumable session, default is N
resumable_timeout               resumable_timeout option: wait time for resumable
resumable_name          resumable_name option: SQL statements to be resumable
userid          user/password to connect to oracle: no default
recordlength            record length of file: optional, default is system dependent
file            import file names: format is (file1, file2...) default is EXPDAT.DMP
show            list contents of import file only: default is N
ignore          ignore create error due to object existence: default is N
grants          import grants option: default is T
rows            import rows option: default is Y
full            import entire database: default is N
fromuser                users to import: format is '(user1,user2,..,userN)'
touser          import into: format is '(user1,user2,..,userN)'
tables          tables to import: format is '(table1, table2,...,tableN)'
buffer          buffer size: default is system dependent (IMPDBFS)
parfile         Parameter file: name of file that contains parameter specifications
indexes         import indexes option: default is Y
constraints             import constraints option: enable constraints, default is Y
inctype         incremental import option: system or restore
commit          commit option: whether to commit after each array insert, default is N
help            help: display descriptions on import parameters, default is N
indexfile               write table/index information to specified filename
log             log import messages to specified file
destroy         destroy (reuse) tablespace datafiles, default is N
charset         character set of export file (if not exact)
feedback                feedback in rows default is IMPFDB
point_in_time_recover           Point-in-time-Recover option: default is N
analyze         execute ANALYZE statements in dump file: default is Y
skip_unusable_indexes           skip maintenance of unusable indexes: default is N
filesize                file size: the size of export dump files
toid_novalidate         types not to validate: format is '(type1, type2,...typeN)'
recalculate_statistics          recalculate statistics: (yes, no)
statistics              statistics: (always, safe, none, recalculate)
transport_tablespace            Transport Tablespace Mode:  default in N
tts_owners              transport validation: format is (owner1, owner2...)
datafiles               transport datafile destination names: format is (file1, file2...)
tablespaces             transport validation: format is (tsn1, tsn2...)
compile         compile packages, procedures, and functions: enable compile, default is Y
icache          icache import modes: users or dependencies
streams_configuration           Enable STREAMS_CONFIGURATION, default is Y
streams_instantiation           Enable STREAMS_INSTANTIATION, default is N
metrics         metrics: display performance metrics, default is N
data_only               import data only: default is N

Import: Release 11.2.0.1.0 - Production on 星期一 9月 17 19:15:10 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

 EXP:

template                IAS Template to be used
silent          silent: display banner information, default is N
metrics         metrics: display performance information, default is N
userid          user/password to connect to oracle: no default
recordlength            record length of file: optional, default is system dependent
buffer          array fetch buffer size: default is EXUAFCH (4096)
file            export file names: format is (file1, file2...) default is EXPDAT.DMP
full            export entire database: default is N
grants          export grants option: default is Y
rows            export rows option: default is Y
compress                compact extents option: default is Y
trace           trace option: enable sql_trace and timed_stat, default is N
resumable               enable resumable session : default is N
resumable_timeout               resumable_timeout: wait time for resumable
resumable_name          resumable string: SQL statements to be resumable
owner           users to export: format is '(user1, user2, .., userN)'
tables          tables to export: format is '(table1, table2, ..., tableN)'
parfile         parameter file: name of file that contains parameter specifications
indexes         export indexes option: default is Y
inctype         incremental export option: (incremental, cumulative or complete)
record          option to record incremental/cumulative export: default is Y
constraints             export table constraints option: default is Y
consistent              provide read-consistency for the entire export: default is N
help            help: display descriptions on export parameters, default is N
log             log export messages to specified file
statistics              analyze option: (estimate, cumulative, none)
feedback                feedback in rows default is EXUFDB
direct          direct path option: default is N
point_in_time_recover           point-in-time recover option: default is N
tts_full_check          TTS perform strict test for objects in recovery set: default is N
tablespaces             tablespaces to transport or recover: format is '(ts1, ts2, ..., tsN)'
query           query used to select a subset of rows for a table
filesize                file size: the size of export dump files
transport_tablespace            transportable tablespace option: default is N
triggers                export triggers option: default is Y
impparfile              file to create as paramfile for IMP for transportable tablespaces
file_format             format of export file names
flashback_time          database time to be used for flashback export: no default
flashback_scn           system change number to be used for flashback export: no default
object_consistent               Provides consistency for registered objects during execution of procedureal callback: default is N

Export: Release 11.2.0.1.0 - Production on 星期一 9月 17 19:17:01 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
 
分享到:
评论

相关推荐

    oracle数据导入、导出工具

    如果这个文件是与Oracle数据导入导出相关的,那么它可能包含了关于如何使用expdp和impdp的步骤、示例脚本,或者是准备导入的测试数据。 在实际操作中,确保数据导入导出的安全性和正确性非常重要,比如要备份重要...

    Oracle数据库导入导出工具

    - `expdp`和`impdp`:Oracle Data Pump是Oracle提供的高效数据导入导出工具,支持大量数据的快速传输。 - `sqlplus`:通过SQL命令行工具,配合`INSERT INTO SELECT`语句或`CREATE TABLE AS SELECT`进行数据导入...

    oracle数据导入导出

    ### Oracle 数据导入导出 imp/exp 命令详解 #### 一、概述 在数据库管理领域,Oracle 提供了强大的工具来支持数据的备份与恢复,其中 `imp`(Import)与 `exp`(Export)命令是进行数据迁移时常用的工具之一。本文...

    oracle 数据导入导出

    Oracle 数据导入导出是数据库管理中的重要操作,用于在不同环境之间转移数据,备份和恢复数据,以及进行数据迁移。本文将深入探讨Oracle数据库的数据导入导出机制,包括使用的主要工具、过程和最佳实践。 Oracle ...

    oracle 数据泵与传统的导入导出的区别与实践

    通过理解并掌握Oracle数据泵的这些特点和使用方法,数据库管理和开发人员可以更高效地进行数据迁移、备份和恢复,提升工作效率,同时确保数据的完整性和一致性。在实际工作中,可以根据具体需求选择合适的数据泵操作...

    Oracle数据导入导出

    总结,Oracle数据导入导出涉及到多个方面,包括数据的备份、迁移、恢复和安全性管理。使用Kshell和bat脚本自动化这些过程,能够提高效率,减少人为错误。在实际操作中,应根据具体需求选择合适的工具和方法,同时...

    关于 Oracle 的数据导入导出及 Sql Loader (sqlldr)

    1. **Oracle数据导入导出** Oracle提供了多种数据导入导出工具,包括`expdp`(Export Data Pump)和`impdp`(Import Data Pump)以及传统的`exp`和`imp`。Data Pump工具提供了更快的速度和更大的灵活性,支持并行...

    oracle数据泵导入导出工具

    oracle数据泵导入导出工具

    oracle的impdp和expdp数据泵导入导出全备数据库-详细笔记文档总结

    Oracle 的 IMPDP 和 EXPDP 数据泵导入导出全备数据库详细笔记文档总结 Oracle 的 IMPDP 和 EXPDP 是两个强大的数据泵工具,用于将 Oracle 数据库中的数据导入或导出到其他数据库或文件中。在本文档中,我们将详细...

    Oracle 19c 备份恢复-导入导出

    Oracle 19c 备份恢复-导入导出 ...Oracle 19c 备份恢复-导入导出是指使用 exp 和 imp 工具实现数据库的备份恢复和数据的导入导出,通过选择合适的工作方式、模式和选项,可以满足不同的备份恢复和数据导入导出需求。

    ORACLE数据导入导出

    oracle数据导入导出 /*根据SCHEMAS导出数据,VERSION去掉时导出当前oracle的版本,在dos执行,文件导出完成后会显示导出文件的存放目录*/ expdp ewin/123321@172.20.0.31/mespr

    Linux下Oracle数据导入导出方法

    本文将详细解析Linux下Oracle数据导入导出的方法,包括使用exp和imp工具的具体操作流程。 ### Linux下Oracle数据导入导出方法 #### 1. Oracle数据导出(Exp) 在Linux系统中,Oracle数据导出主要通过`exp`命令来...

    Oracle数据导入/导出软件

    Oracle数据导入/导出是数据库管理中的重要环节,它涉及到数据迁移、备份、恢复和数据分析等多个方面。OraLoader作为一款专门针对Oracle数据库的工具,提供了高效、便捷的数据导入和导出功能。以下是对OraLoader及其...

    ORACLE数据定时导入导出工具

    下面我们将详细探讨这些工具在数据导入导出和定时备份中的应用。 1. **Data Pump**: Oracle Data Pump 是 Oracle 10g 引入的一个高级数据迁移工具,它提供了高速的数据导入和导出功能。Data Pump 包括 `expdp`...

    Oracle 数据导入导出

    Oracle 数据导入导出命令解析 Oracle 数据库的导入导出操作是数据库管理员的日常工作之一,对于数据的导入导出命令的熟悉和掌握是非常重要的。本文将对 Oracle 数据库的导入导出命令进行详细的解析,并对其相应的...

    oracle数据泵导入导出原件bat

    在Oracle数据泵的场景中,我们可以创建一个bat文件来自动化数据导入和导出的过程,提高工作效率。 1. **数据泵导出(expdp)**: 在Oracle中,导出数据通常使用`expdp`命令。这个命令需要指定数据库连接信息(如...

    Oracle数据导入导出命令.pdf

    ### Oracle 数据导入导出命令详解 #### 一、概述 Oracle 数据库系统是业界领先的数据库管理系统之一,提供了强大的数据管理功能。在Oracle中,数据的导入导出是一项非常重要的任务,尤其是在需要迁移数据、备份数据...

Global site tag (gtag.js) - Google Analytics