- 浏览: 325794 次
文章分类
- 全部博客 (116)
- Oracle (29)
- MySQL (2)
- Java (20)
- .NET (2)
- Javascript (4)
- Spring (6)
- Struts (6)
- Hibernate (16)
- JSP (6)
- Tomcat (1)
- Quartz (2)
- RCS (1)
- Translate (12)
- PL/SQL (5)
- Sqlplus (1)
- System (6)
- Linux (11)
- Ubuntu (9)
- Windows (10)
- Mac (2)
- Tools (8)
- Mercurial (1)
- Google Code (1)
- Subversion (1)
- Debian (2)
- Freemarker (6)
- Web (2)
- PHP (1)
- Nginx (1)
最新评论
-
sunday1207:
private Class getParameterizedT ...
java 中 BaseDao 在Hibernate中的用法 -
SkimSkim:
你这里的解压是把文件夹11下面的所有文件都放在ins这个文件夹 ...
ubuntu 在终端使用 sqlplus 连接远程数据库 -
as619864232:
漫步邃思 写道其实常用的就那么几个命令,大部分都用不到的是啊, ...
windows cmd 命令 -
漫步邃思:
其实常用的就那么几个命令,大部分都用不到的
windows cmd 命令
数据导出:
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.
发表评论
-
装完 Debian 时 vim 没颜色高亮
2012-11-18 20:40 1090vim /etc/vim/vimrc 去掉 syntax ... -
Mysql 与 Oracle 的一些区别
2012-10-01 13:17 1487周五去一家公司去面试,那公司经理问了关于Mysql与Oracl ... -
IDM 激活
2012-09-13 19:44 2063打开 C:\WINDOWS\system32\drivers\ ... -
ubuntu 在终端使用 sqlplus 连接远程数据库
2012-08-27 14:54 3998在 http://www.oracle.com/technet ... -
在 KDE 下不能正常使用 fcitx 以及翻页问题
2012-08-22 21:18 5526在 kde 下使用 fcitx 的时候,不能在某些地方使 ... -
Oracle 批量操作
2012-08-13 12:44 937简单的写一个批量赋予权限的语句备用,其他类似: sel ... -
windows 使用 Chrome | Firefox + IDM 实现多人同时下载
2012-08-02 20:19 3847开头: Chrome 中安装插件:Tampermonke ... -
MVC
2012-07-19 19:10 1303MVC模式(三层架构模 ... -
aria2 的使用
2012-07-14 23:38 8554Usage Sample This p ... -
GoldenDict 在 Ubuntu 中的安装
2012-07-13 18:36 2141apt-get install goldendict ... -
Oracle 中的 FORALL 语句
2012-04-13 11:52 14999当要在 Oracle 中之心批量 INSERT、UPDATE ... -
Oracle 中的游标用法
2012-04-10 16:38 1488循环将游标中的数据提取出来并放置2个变量中输出 SQL ... -
PL/SQL 记录
2012-04-09 16:36 1034PL/SQL 中可以使用 %ROWTYPE 作为一张表的行作为 ... -
PL/SQL 索引表、嵌套表、变长数组的区别
2012-04-08 13:38 1120索引表 嵌套表 变长数组 ... -
oracle 中的循环
2012-04-06 09:36 1398一、LOOP 循环是最简单的循环,也是无限循环,只能用 EXI ... -
oracle 中的动态 SQL
2012-04-06 09:36 1060在 PL/SQL 块中,可以使用 DDL 语句和事物控制语句, ... -
oracle 中的 CASE
2012-04-05 15:42 1189oracle 中的 CASE 可以作为一个选择控制语句,可以根 ... -
oracle 中的属性数据类型
2012-04-05 15:17 1629当需要数据库表中的某行作为一个数就类型时,就需要 %ROWTY ... -
oracle 中的 SELECT...INTO 语句
2012-04-05 15:03 2635SELECT...INTO 语句可以给多个值同时赋值,届时两边 ... -
oracle 中的表分区
2012-04-05 14:47 1039当数据库的数据不断扩大时,这时可以考虑是用表分区,查询时可以根 ...
相关推荐
如果这个文件是与Oracle数据导入导出相关的,那么它可能包含了关于如何使用expdp和impdp的步骤、示例脚本,或者是准备导入的测试数据。 在实际操作中,确保数据导入导出的安全性和正确性非常重要,比如要备份重要...
- `expdp`和`impdp`:Oracle Data Pump是Oracle提供的高效数据导入导出工具,支持大量数据的快速传输。 - `sqlplus`:通过SQL命令行工具,配合`INSERT INTO SELECT`语句或`CREATE TABLE AS SELECT`进行数据导入...
### Oracle 数据导入导出 imp/exp 命令详解 #### 一、概述 在数据库管理领域,Oracle 提供了强大的工具来支持数据的备份与恢复,其中 `imp`(Import)与 `exp`(Export)命令是进行数据迁移时常用的工具之一。本文...
Oracle 数据导入导出是数据库管理中的重要操作,用于在不同环境之间转移数据,备份和恢复数据,以及进行数据迁移。本文将深入探讨Oracle数据库的数据导入导出机制,包括使用的主要工具、过程和最佳实践。 Oracle ...
通过理解并掌握Oracle数据泵的这些特点和使用方法,数据库管理和开发人员可以更高效地进行数据迁移、备份和恢复,提升工作效率,同时确保数据的完整性和一致性。在实际工作中,可以根据具体需求选择合适的数据泵操作...
总结,Oracle数据导入导出涉及到多个方面,包括数据的备份、迁移、恢复和安全性管理。使用Kshell和bat脚本自动化这些过程,能够提高效率,减少人为错误。在实际操作中,应根据具体需求选择合适的工具和方法,同时...
1. **Oracle数据导入导出** Oracle提供了多种数据导入导出工具,包括`expdp`(Export Data Pump)和`impdp`(Import Data Pump)以及传统的`exp`和`imp`。Data Pump工具提供了更快的速度和更大的灵活性,支持并行...
oracle数据泵导入导出工具
Oracle 的 IMPDP 和 EXPDP 数据泵导入导出全备数据库详细笔记文档总结 Oracle 的 IMPDP 和 EXPDP 是两个强大的数据泵工具,用于将 Oracle 数据库中的数据导入或导出到其他数据库或文件中。在本文档中,我们将详细...
Oracle 19c 备份恢复-导入导出 ...Oracle 19c 备份恢复-导入导出是指使用 exp 和 imp 工具实现数据库的备份恢复和数据的导入导出,通过选择合适的工作方式、模式和选项,可以满足不同的备份恢复和数据导入导出需求。
oracle数据导入导出 /*根据SCHEMAS导出数据,VERSION去掉时导出当前oracle的版本,在dos执行,文件导出完成后会显示导出文件的存放目录*/ expdp ewin/123321@172.20.0.31/mespr
本文将详细解析Linux下Oracle数据导入导出的方法,包括使用exp和imp工具的具体操作流程。 ### Linux下Oracle数据导入导出方法 #### 1. Oracle数据导出(Exp) 在Linux系统中,Oracle数据导出主要通过`exp`命令来...
Oracle数据导入/导出是数据库管理中的重要环节,它涉及到数据迁移、备份、恢复和数据分析等多个方面。OraLoader作为一款专门针对Oracle数据库的工具,提供了高效、便捷的数据导入和导出功能。以下是对OraLoader及其...
下面我们将详细探讨这些工具在数据导入导出和定时备份中的应用。 1. **Data Pump**: Oracle Data Pump 是 Oracle 10g 引入的一个高级数据迁移工具,它提供了高速的数据导入和导出功能。Data Pump 包括 `expdp`...
Oracle 数据导入导出命令解析 Oracle 数据库的导入导出操作是数据库管理员的日常工作之一,对于数据的导入导出命令的熟悉和掌握是非常重要的。本文将对 Oracle 数据库的导入导出命令进行详细的解析,并对其相应的...
在Oracle数据泵的场景中,我们可以创建一个bat文件来自动化数据导入和导出的过程,提高工作效率。 1. **数据泵导出(expdp)**: 在Oracle中,导出数据通常使用`expdp`命令。这个命令需要指定数据库连接信息(如...
### Oracle 数据导入导出命令详解 #### 一、概述 Oracle 数据库系统是业界领先的数据库管理系统之一,提供了强大的数据管理功能。在Oracle中,数据的导入导出是一项非常重要的任务,尤其是在需要迁移数据、备份数据...