Transporting Data Between Database
The Export utility can provide a logical backup of:
- Database objects
- A tablespace
- An entire database
The Import utility is used to read a valid Export file for moving data into a database. Redo log history cannot be applied to objects that are imported from an export file, therefore data loss may occur, but can be minimized. The DBA can use the Export and Import utilites to complement normal operating system backups by using them to :
- Create a historical archive of a database object or entire database; for example, when a schema is modified to support changing business requirements.
- Save table definitions in a binary file. This may be useful for creating and maintaining a baseline of a given schema structure.
- Move data from one Oracle database version to another, such as upgrading from Oracle8i to Oracle9i.
Export (导出的文件, 只能 Import 这个工具读取)
运行方法:
- command-line entries
- Interactive Export prompts (我们系统)
- Parameter files
- Oracle Enterprise Manage
另外, 如果你想使用 Export, 你必须具有如下权限:
CREATE SESSION, EXP_FULL_DATABASE
command-line 运行模式:
操作系统提示符: exp hr/hr tables = (employees, departments) rows=y file=exp1.dmp -- 注意, 这里不指定文件路径, 那么就是执行命令的当前目录, 也可以直接指定目录
exp hr/hr tables = ( employees, departments) rows=y file = ‘/u01/exp/exp1.dmp’
导出hr 用户的所有object :
exp system/manager owner=hr directy -- 如果没有指定file, 那么默认的文件名是 expdat.dmp.
导出 tablespace ts_employees 下的所有 objects, 并同时声称日志文件记录在 ts_employees.log 里
exp system/manager transport_tablespace=y tablespaces=(ts_employees) log=ts_employees.log
includes all definitions and data modified in the database since the last cumulative or complete export.
exp system/manager FULL=y INCTYPE=cumulative FILE=expcum1.dmp
parameter file:
exp parfile=exp_param.txt
其中 param.txt 为:
USERID=hr/hr
TABLES=(employees, departments)
FILE=exp_one.dmp
DIRECT=y
Import
command-line 运行方式:
imp hr/hr tables=(employees, departments) rows=y file=exp1.dmp -- 这样会首先创建这两个 table, 然后再进行插入
imp system/manager FROMUSER=hr file=exp2.dmp
imp system/manager transport_tablespace=y TABLESPACES=ts_employees
Transporting Data Between Database的更多相关文章
- Use excel Macro export data from database
Sub DownLoadMacro() '定义过程名称 Dim i As Integer, j As Integer, sht As Worksheet 'i,j为整数变量:sht 为excel工作表 ...
- bulk insert data into database with table type .net
1. Create Table type in Sqlserver2008. CREATE TYPE dbo.WordTable as table ( [WordText] [nchar]() NUL ...
- [yii]Fetch data from database and create listbox in yii
<?php $records = User::model()->findAll(); $list = CHtml::listData($records, 'id', 'username') ...
- Master Note for Transportable Tablespaces (TTS) -- Common Questions and Issues (Doc ID 1166564.1)
APPLIES TO: Oracle Database Cloud Exadata Service - Version N/A and laterOracle Database Cloud Servi ...
- [Oracle] Transporting Tablespace
Transporting Tablespace Between Database [测试目的] 利用Oracle TTS(transport tablespace)特性实现表空间合并 [主要步骤] 确 ...
- Why you shouldn’t connect your mobile application to a database
BY CRAIG CHAPMAN · PUBLISHED 2015-07-02 · UPDATED 2015-07-02 Working at Embarcadero, I frequently ...
- Cross-Domain Security For Data Vault
Cross-domain security for data vault is described. At least one database is accessible from a plural ...
- taiyi_interview(Introduction To Database Refactoring)
Introduction To Database Refactoring 原文链接:by Scott W. Ambler:http://www.tdan.com/view-articles/5010/ ...
- 【MongoDB】mongoimport and mongoexport of data (一)
In the software development, we usually are faced with a common question of exporting or importing d ...
随机推荐
- 使用JTextArea示例
相对于JLabel显示提示文字,JTextArea有一个先天优势:文字可以拷贝出来.经过下面设置它也能在外观上和JLabel一致. 代码如下: JTextArea txtArea=new JTextA ...
- JCheckBox使用示例
// 初始化 JCheckBox chk=new JCheckBox("XXX"); // 选择 chk.setSelected(true); // 判断选择状态 chk.isSe ...
- 云计算之路-Azure vs 阿里云:从负载均衡中摘/挂虚拟机
@小尾鱼 在 试用Azure:上不了高速的跑车,无法跨Cloud Service的DNS服务器一文的评论中提了一个很好的问题: 问个问题,使用了负载均衡以后,程序发布的时候博客园是怎么避免用户访问到正 ...
- Discuz常见小问题2-如何在数据库搜索指定关键字
点击搜索,然后输入关键字,注意要全选或者部分选择表(一个数据库的表),点击右下角的执行 会提示有多少个匹配,可以在浏览器中直接搜索"1个匹配"来定位到哪个数据表找到了匹配项,然 ...
- 微博轻量级RPC框架Motan正式开源:支撑千亿调用
支撑微博千亿调用的轻量级 RPC 框架 Motan 正式开源了,项目地址为https://github.com/weibocom/motan. 微博轻量级RPC框架Motan正式开源 Motan 是微 ...
- js数组高阶方法reduce经典用法代码分享
以下是个人在工作中收藏总结的一些关于javascript数组方法reduce的相关代码片段,后续遇到其他使用这个函数的场景,将会陆续添加,这里作为备忘. javascript数组那么多方法,为什么我要 ...
- jQuery实现滚动栏一直处于最底部
相信大家有时候在展示一些实时数据展示并且数据量非常大的时候,由于无法在同一页面看到最有效的数据,所以我们须要将滚动栏至于底部.以便我们看到最须要的数据和信息.这里非常明显的样例那拿windows的pi ...
- margin外边距问题
1 .上下边距会叠加 !DOCTYPE html> <html> <head> <m<etacharset="UTF-8"> < ...
- WebSphere监控软件 TPV(Tivoli Performance Viewer)的缺点
TPV的缺点 大家都知道 IBM 的 WebSphere Application Server(WAS)在v5之后自带有TPV(Tivoli Performance Viewer) 用来监控W ...
- 新建 jsp异常,The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
新项目,新建jsp页面的时候报异常: Multiple annotations found at this line: - The superclass "javax.servlet.htt ...