2010年(61)
分类: Oracle
2010-01-27 12:26:26
1.1
$ exp help=y
$ imp help=y
2.
(1)交互式方式
$ exp
(2)命令行方式
$ exp user/pwd@dbname file=/oracle/test.dmp full=y
(3)参数文件方式
$ exp parfile=username.par
参数文件 username.par 内容 userid=username/userpassword buffer=8192000
compress=n grants=y
file=/oracle/test.dmp full=y
3.
(1)表方式,将指定表的数据导出/导入。
导出:
导出一张或几张表:
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log tables=table1,table2
导出某张表的部分数据
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log tables=table1 query=\”where col1=\’…\’
and col2 \<…\”
导入:
导入一张或几张表
$
(2)用户方式,将指定用户的所有对象及数据导出/导入。
导出:
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log owner=(xx, yy)
只导出数据对象,不导出数据
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log owner=user rows=n
导入:
$
commit=y ignore=y
(3)全库方式,将数据库中的所有对象导出/导入
导出:
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log full=ycommit=y ignore=y
导入:
$ imp user/pwd file=/dir/xxx.dmp log=xxx.log fromuser=dbuser touser=dbuser2
1.2
1.
以多个固定大小文件方式导出:这种做法通常用在表数据量较大,单个 dump文件可能
会超出文件系统的限制的情况
$ exp user/pwd file=1.dmp,2.dmp,3.dmp,…filesize=1000m
以多个固定大小文件方式导入
$
2.
// oracle 9i
必须为
增量导出:
(1)“完全”增量导出(Complete)
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log inctype=complete
(2)“增量型”增量导出
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log inctype=incremental
(3)
$ exp user/pwd file=/dir/xxx.dmp log=xxx.log inctype=cumulative
增量导入:
$ imp usr/pwd FULL=y inctype=system/restore/inct ype
其中:
SYSTEM:
RESTORE:
3.
1.
2.
例:
$
$
“datafile=(c:tempapp_data,c:tempapp_index)”
4.
表空间传输是
1.关于传输表空间有一些规则
?
?
?
?
?
?
?
(同字节序文件的跨平台可以用更换数据文件的文件头的方法)
(10g
2.
SQL > exec sys.dbms_tts.transport_set_check(‘tablespace_name’,true); SQL > select * from sys.transport_set_violations;
如果没有行选择,表示该表空间只包含表数据,并且是自包含的。对于有些非自包
含的表空间,如数据表空间和索引表空间,可以一起传输。
3.
如果想参考详细使用方法,也可以参考 ORACLE联机帮助。
1.设置表空间为只读(假定表空间名字为 APP_Data
SQL > alter tablespace app_data read only; SQL > alter tablespace app_index read only;
2.发出 EXP命令
SQL> host exp userid=”””sys/password as sysdba””” transport_tablespace=y tablespaces=(app_data, app_index)
以上需要注意的是
·为了在 SQL 中执行 EXP,USERID 必须用三个引号,在 UNIX中也必须注意避免“/”的使用
·在 816和以后,必须使用 sysdba才能操作
·这个命令在 SQL中必须放置在一行(这里是因为显示问题放在了两行)
3.拷贝.dbf数据文件(以及.dmp文件)到另一个地点,即目标数据库
可以是 cp(unix)或 cop y(windows)或通过 ftp传输文件(一定要在 bin方式)
4.把本地的表空间设置为读写
$ alter tablespace app_data read write;
$ alter tablespace app_index read write;
5.在目标数据库附加该数据文件
(表空间不能存在,必须建立相应用户名或者用 fromuser/touser)
$ imp file=expdat.dmp userid=”””sys/password as sysdba””” transport_tablespace=y
6.设置目标数据库表空间为读写
$ alter tablespace app_data read write;
$ alter tablespace app_index read write;
1.3
加大 large_pool_size,可以提高 exp的速度采用直接路径的方式(direct=y),数据不需要经过进行整合和检查. 设置较大的 buffer,如果导出大对象,小 buffer会失败。
export文件不在 ORACLE使用的器上 不要 export到 NFS文件系统
UNIX环境:用管道模式直接导入导出来提高 imp/exp的性能
2.
建立一个 indexfile,在数据 import完成后在建立索引
将 import 文件放在不同的驱动器上 增加 DB_BLOCK_BUFFERS
增加 LOG_BUFFER
用非归档方式运行 ORACLE:ALTER DATABASE NOARCHIVELOG; 建立大的表空间和回滚段,OFFLINE其他回滚段,回滚段的大小为最大表的 1/2 使用
使用 ANALYZE=N
单用户模式导入
UNIX环境:用管道模式直接导入导出来提高 imp/exp的性能
3.
通过管道导出数据:
1.通过 mknod -p 建立管道
$ mknod /home/exppipe p
2.通过 exp和 gzip导出数据到建立的管道并压缩
$ exp test/test file=/home/exppipe & gzip < /home/exppipe > exp.dmp.gz
$ exp test/test tables=bitmap file=/home/newsys/test.pipe &
gzip < /home/newsys/test.pipe > bitmap.dmp.gz
3.导出成功完成之后删除建立的管道
$ rm
导出脚本:
###UNIX下 ORACLE数据库通过 PIPE管道进行备份
###### using "export" and "tar" command to bakup oracle datebase #######
trap "" 1 #nohup
LOGFILE=/opt/bakup/log/bakup_ora.log
export LOGFILE
DUMPDIR=/archlog_node1
export DUMPDIR
exec >$LOGFILE 2>&1
echo
echo ' Begin at ' `date`
echo
#clear old result file
cd $DUMPDIR
if [ -f exp.dmp.Z ]
then
echo "clear old result file"
rm exp.dmp.Z
fi
#make pipe
mkfifo exp.pipe
chmod a+rw exp.pipe
#gain the dmp.Z file
compress < exp.pipe > exp.dmp.Z &
su -u oracle -c "exp userid=ll/ll file=$DUMPDIR/exp.pipe full=y buffer=20000000"
echo
echo '
echo
# rm pipe
rm exp.pipe
#
mt -f /dev/rmt/0 rew
tar cvf /dev/rmt/0 exp.dmp.Z
echo
echo '
echo
通过管道导入生成的文件:
1.通过 mknod -p 建立管道
$ mknod /home/exppipe p
2.导入生成的压缩文件
$ imp test/test file=/home/exppipe fromuser=test touser=macro &
gunzip < exp.dmp.gz > /home/exppipe
3.删除管道
$ rm –fr /home/exppipe
4.
注意:在导出时,需要通过toad或其他工具提取源数据库创建主键和索引的脚本
1.
$ imp system/manager file=exp.dmp log=imp.log full=y rows=n indexes=n
2.
spool drop_pk_u.sql
select 'alter table '||table_name||' drop constraint '||constraint_name||';'
from user_constraints
where constraint_type in ('P','U');
/
spool off
spool disable_trigger.sql
select 'alter trigger '||trigger_name||' disable;'
from user_triggers;
/
spool off
@drop_pk_u.sql
@disable_trigger.sql
3.
$ imp system/manager file=exp.dmp log=imp.log full=y ignore=y
4.
和索引。使触发器生效。
1.3
加大 large_pool_size,可以提高 exp的速度采用直接路径的方式(direct=y),数据不需要经过进行整合和检查. 设置较大的 buffer,如果导出大对象,小 buffer会失败。
export文件不在 ORACLE使用的器上 不要 export到 NFS文件系统
UNIX环境:用管道模式直接导入导出来提高 imp/exp的性能
2.
建立一个 indexfile,在数据 import完成后在建立索引
将 import 文件放在不同的驱动器上 增加 DB_BLOCK_BUFFERS
增加 LOG_BUFFER
用非归档方式运行 ORACLE:ALTER DATABASE NOARCHIVELOG; 建立大的表空间和回滚段,OFFLINE其他回滚段,回滚段的大小为最大表的 1/2 使用
使用 ANALYZE=N
单用户模式导入
UNIX环境:用管道模式直接导入导出来提高 imp/exp的性能
3.
通过管道导出数据:
1.通过 mknod -p 建立管道
$ mknod /home/exppipe p
2.通过 exp和 gzip导出数据到建立的管道并压缩
$ exp test/test file=/home/exppipe & gzip < /home/exppipe > exp.dmp.gz
$ exp test/test tables=bitmap file=/home/newsys/test.pipe &
gzip < /home/newsys/test.pipe > bitmap.dmp.gz
3.导出成功完成之后删除建立的管道
$ rm
导出脚本:
###UNIX下 ORACLE数据库通过 PIPE管道进行备份
###### using "export" and "tar" command to bakup oracle datebase #######
trap "" 1 #nohup
LOGFILE=/opt/bakup/log/bakup_ora.log
export LOGFILE
DUMPDIR=/archlog_node1
export DUMPDIR
exec >$LOGFILE 2>&1
echo
echo ' Begin at ' `date`
echo
#
cd $DUMPDIR
if [ -f exp.dmp.Z ]
then
echo "clear old result file"
rm exp.dmp.Z
fi
#
mkfifo exp.pipe
chmod a+rw exp.pipe
#
compress < exp.pipe > exp.dmp.Z &
su -u oracle -c "exp userid=ll/ll file=$DUMPDIR/exp.pipe full=y buffer=20000000"
echo
echo '
echo
#
rm exp.pipe
#
mt -f /dev/rmt/0 rew
tar cvf /dev/rmt/0 exp.dmp.Z
echo
echo '
echo
通过管道导入生成的文件:
1.通过 mknod -p 建立管道
$ mknod /home/exppipe p
2.导入生成的压缩文件
$ imp test/test file=/home/exppipe fromuser=test touser=macro &
gunzip < exp.dmp.gz > /home/exppipe
3.删除管道
$ rm –fr /home/exppipe
4.
注意:在导出时,需要通过toad或其他工具提取源数据库创建主键和索引的脚本
1.
$ imp system/manager file=exp.dmp log=imp.log full=y rows=n indexes=n
2.
spool drop_pk_u.sql
select 'alter table '||table_name||' drop constraint '||constraint_name||';'
from user_constraints
where constraint_type in ('P','U');
/
spool off
spool disable_trigger.sql
select 'alter trigger '||trigger_name||' disable;'
from user_triggers;
/
spool off
@drop_pk_u.sql
@disable_trigger.sql
3.
$ imp system/manager file=exp.dmp log=imp.log full=y ignore=y
4.
和索引。使触发器生效。
1.4
ORACLE
(如文本)时候的编码规则。
ORACLE 字符集设定,分为数据库字符集和客户端字符集环境设置。在数据库端,
字符集在创建数据库的时候设定,并保存在数据库 props$表中。
在客户端的字符集环境比较简单,主要就是环境变量或注册表项
使用一点点技巧,就可以使导出/导入在不同的字符集的数据库上转换数据。这里
需要一个 2进制文件编辑工具即可,如 uedit32。用编辑方式打开导出的 dmp文件,获
取
NLS_CHARSET_NAME 即可获得该字符集: SQL> select nls_charset_name(1) from dual; NLS_CHARSET_NAME(1)
------------------- US7ASCII
可以知道该 dmp文件的字符集为 US7ASCII,如果需要把该 dmp文件的字符集换
成 ZHS16GBK,则需要用 NLS_CHARSET_ID 获取该字符集的编号: SQL> select nls_charset_id('zhs16gbk') from dual; NLS_CHARSET_ID('ZHS16GBK')
--------------------------
把 852换成 16进制数,为 354,把 2、3字节的 00
2.
Exp/Imp 很多时候,可以跨版本使用,如在版本 7与版本 8之间导出导入数据,但这样做必须选择正确的版本,规则为:
·总是使用 IMP的版本匹配数据库的版本,如果要导入到 816,则使用 816的导入工 具。
·总是使用 EXP 的版本匹配两个数据库中低的那个版本,如在 815与 816之间互导,则使用 815的 EXP 工具。
imp和 exp版本不能往上兼容: