📄 1743.html
字号:
src="images/header_r1_c1.gif" tppabs="http://www.linuxhero.com/docs/images/header_r1_c1.gif" width=472 border=0
name=header_r1_c1></A></TD>
<TD colSpan=3>
<form action="http://www.linuxhero.com/docs/search.html" method=get>
<table
style="BORDER-RIGHT: #c4c4c4 1px solid; BORDER-TOP: #c4c4c4 1px solid; BORDER-LEFT: #c4c4c4 1px solid; BORDER-BOTTOM: #c4c4c4 1px solid"
cellspacing=0 cellpadding=3 width="95%" border=0 align="center">
<tbody>
<tr>
<td noWrap background="images/bgline.gif" tppabs="http://www.linuxhero.com/docs/images/bgline.gif">
<div align=center><font class=normalfont>搜索文章:
<input type=hidden value=result name=action2>
<input type=radio checked value=title name=type>标题
<input type=radio value=content name=type>内容
<input type=image src="images/button_go.gif" tppabs="http://www.linuxhero.com/docs/images/button_go.gif" border=0 name=image2>
</font></div>
</td>
</tr>
<tr>
<td noWrap>
<div align="center">
<input maxlength=100 size=30 name=keyword2>
</div>
</td>
</tr></tbody>
</table>
</form>
</TD>
<TD rowSpan=2><IMG src="images/header_r1_c7.gif" tppabs="http://www.linuxhero.com/docs/images/header_r1_c7.gif" width=26 border=0 name=header_r1_c7></TD>
<TD><IMG height=83 src="images/spacer.gif" tppabs="http://www.linuxhero.com/docs/images/spacer.gif" width=1 border=0></TD></TR>
<TR>
<TD background="images/bgline.gif" tppabs="http://www.linuxhero.com/docs/images/bgline.gif"><IMG height=22
src="images/header_r2_c1.gif" tppabs="http://www.linuxhero.com/docs/images/header_r2_c1.gif" width=296 border=0
name=header_r2_c1></TD>
<TD background="images/bgline.gif" tppabs="http://www.linuxhero.com/docs/images/bgline.gif" colSpan=5>
<DIV align=right><FONT class=normalfont>当前位置:
<A href="index.html" tppabs="http://www.linuxhero.com/docs/index.html">本站首页</A>
<font color="#FF6699">>></font>
<A href="type28.html" tppabs="http://www.linuxhero.com/docs/type28.html">oracle</A> | <A href="copyright.html" tppabs="http://www.linuxhero.com/docs/copyright.html">版权说明</A></font></DIV>
</TD>
<TD><IMG height=22 src="images/spacer.gif" tppabs="http://www.linuxhero.com/docs/images/spacer.gif" width=1
border=0></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=10 cellPadding=0 width="100%" bgColor=#ffffff
border=0>
<TR>
<TD>
<TABLE cellSpacing=0 cellPadding=3 width="100%" border=0>
<TR>
<TD vAlign=top align=middle width="60%">
<TABLE cellSpacing=0 cellPadding=0 width="100%"
background="images/back.gif" tppabs="http://www.linuxhero.com/docs/images/back.gif" border=0>
<TBODY>
<TR>
<TD vAlign=top width="80%">
<DIV align=center>
<FORM action="search.html" tppabs="http://www.linuxhero.com/docs/search.html" method=get>
</FORM>
<TABLE cellSpacing=0 cellPadding=0 width="95%"
border=0><TBODY>
<TR>
<TD background="images/bgi.gif" tppabs="http://www.linuxhero.com/docs/images/bgi.gif"
height=30></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=0 cellPadding=3 width="95%"
align=center border=0>
<TBODY>
<TR>
<TD>
<TABLE cellSpacing=0 cellPadding=3 width="100%"
border=0>
<TBODY>
<TR>
<TD vAlign=top>
<p><FONT class=normalfont><B><font color=blue>oracle Export and Import简介</font></B></FONT><BR><FONT class=smallfont color=#ff9900>2004-04-23 15:18 pm</FONT><BR><FONT class=normalfont>作者:作者<br>来自:http://www.fanqiang.com<br>联系方式:无名<br><br>1、Export/Import的用处 <br>
Oracle Export/Import工具用于在数据库之间传递数据。 <br>
Export从数据库中导出数据到dump文件中 <br>
Import从dump文件中到入数据导数据库中 <br>
下面是一般使用他们的情况 <br>
(1)、两个数据库之间传送数据 <br>
同一个版本的oracle Server之间 <br>
不同版本的oracle Server之间 <br>
同种OS之间 <br>
不同种OS之间 <br>
(2)、用于数据库的备份和恢复 <br>
(3)、从一个SCHEMA传送到另一个SCHEMA <br>
(4)、从一个TABLESPACE传送到另一个TABLESPACE <br>
<br>
2、DUMP文件 <br>
EXPORT到出的是二进制格式的文件,不可以手工编辑,否则会损坏数据。 <br>
该文件在ORACLE支持的任何平台上都是一样的格式,可以在各平台上通用。 <br>
<br>
DUMP文件在IMPORT时采用向上兼容方式,就是说ORALCE7的DUMP文件可以导入 <br>
到ORACLE8中,但是版本相差很大的版本之间可能有问题。 <br>
<br>
3、EXPORT/IMPORT过程 <br>
EXPORT导出的DUMP文件包含两种基本类型的数据 <br>
- DDL <br>
- Data <br>
DUMP文件包含所有重新创建Data Dictionary的DDL语句,基本上是可以读的格式<br>
。 <br>
但是应该注意的是,千万不要用文本编辑器编辑之,oracle说不支持这样做的。<br>
<br>
下面列出的是DUMP文件中包括的ORACLE对象,分为TABLE/USER/FULL方式,有些对<br>
象 <br>
只是在FULL方式下才有(比如public synonyms, users, roles, rollback segm<br>
ents等) <br>
<br>
Table mode User Mode Full Database Mode <br>
---------------------- ---------------------- ----------------------<br>
--- <br>
Table definitions Table definitions Table definitions <br>
Table data Table data Table data <br>
Owner's table grants Owner's grants Grants <br>
Owner's table indexes Owner's indexes Indexes <br>
Table constraints Table constraints Table constraints <br>
Table triggers Table triggers All triggers <br>
Clusters Clusters <br>
Database links Database links <br>
Job queues Job queues <br>
Refresh groups Refresh groups <br>
Sequences Sequences <br>
Snapshots Snapshots <br>
Snapshot logs Snapshot logs <br>
Stored procedures Stored procedures <br>
Private synonyms All synonyms <br>
Views Views <br>
Profiles <br>
Replication catalog <br>
Resource cost <br>
Roles <br>
Rollback segments <br>
System audit options <br>
System privileges <br>
Tablespace definitions<br>
<br>
Tablespace quotas <br>
User definitions <br>
<br>
<br>
4、IMPORT时的对象倒入顺序 <br>
在倒入数据时,ORACLE有一个特定的顺序,可能随数据库版本不同而有所变化,<br>
但是 <br>
现在是这样的。 <br>
<br>
1. Tablespaces 14. Snapshot Logs <br>
2. Profiles 15. Job Queues <br>
3. Users 16. Refresh Groups <br>
4. Roles 17. Cluster Definitions <br>
5. System Privilege Grants 18. Tables (also grants,commen<br>
ts, <br>
6. Role Grants indexes, constraints, audi<br>
ting) <br>
7. Default Roles 19. Referential Integrity <br>
<br>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -