Oracle数据库备份与恢复之一:exp/imp(原文http://www.cnblogs.com/sungod/archive/2011/03/13/1983090.html)

Oracle数据库备份与恢复之一:exp/imp(导出与导入装库与卸库)

 

    1.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 \<…\”

    导入:导入一张或几张表

    $  imp  user/pwd  file=/dir/xxx.dmp  log=xxx.log  tables=table1,

    table2  fromuser=dbuser touser=dbuser2 commit=y ignore=y

    (2)用户方式,将指定用户的所有对象及数据导出/导入。

    导出:$ exp user/pwd file=/dir/xxx.dmp log=xxx.log owner=(xx, yy)

    只导出数据对象,不导出数据  (rows=n )

    $ exp user/pwd file=/dir/xxx.dmp log=xxx.log owner=user rows=n

    导入:$  imp  user/pwd  file=/dir/xxx.dmp  log=xxx.log  fromuser=dbuser  touser=dbuser2

    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    log=xxx.log full=y

    以多个固定大小文件方式导入

    $  imp  user/pwd file=1.dmp,2.dmp,3.dmp,…  filesize=1000m

    tables=xxx  fromuser=dbuser touser=dbuser2    commit=y ignore=y

    2.  增量导出/导入

    // oracle 9i  以后 exp  不再支持  inctype

    必须为  SYS  或  SYSTEM  才可执行增量导出导入

    增量导出:   包括三个类型:

    (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)  “累计型”增量导出(Cumulative)只导出自上次“完全”导出之后数据库中变化 了的信息。

    $ 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.  以SYSDBA进行导出/导入

    1.  用于 Oracle 技术支持

    2.  用于表空间传输

    例:$    imp    \'usr/pwd@instance    as    sysdba\'    tablespaces=xx    transport_tablespace=y file=xxx.dmp datafiles=xxx.dbf $  imp  file=expdat.dmp  userid=“”“sys/password  as  sysdba”“”  transport_tablespace=y“datafile=(c:tempapp_data,c:tempapp_index)”

     Transportable Tablespaces
The transportable tablespace feature enables you to move a set of tablespaces from one Oracle database to another.

     To move or copy a set of tablespaces, you must make the tablespaces read-only, copy the datafiles of these tablespaces,
and use Export and Import to move the database information (metadata) stored in the data dictionary. Both the datafiles and
 the metadata export file must be copied to the target database. The transport of these files can be done using any facility for
copying flat binary files, such as the operating system copying facility, binary-mode FTP, or publishing on CD-ROMs.

   After copying the datafiles and exporting the metadata, you can optionally put the tablespaces in read/write mode.

     Export provides the following parameters to enable export of transportable tablespace metadata.
·TABLESPACES 
·TRANSPORT_TABLESPACE


    TABLESPACES, Default: none
The TABLESPACES parameter specifies that all tables in the tablespace be exported to the Export dump file. This includes
all tables contained in the list of tablespaces and all tables that have a partition located in the list of tablespaces. Indexes
are exported with their tables, regardless of where the index is stored.
You must have the EXP_FULL_DATABASE role to use TABLESPACES to export all tables in the tablespace.
When TABLESPACES is used in conjunction with TRANSPORT_TABLESPACE=y, you can specify a limited list of tablespaces to
be exported from the database to the export file.

    TRANSPORT_TABLESPACE, Default: n
When specified as y, this parameter enables the export of transportable tablespace metadata.



    4.  表空间传输  (速度快)

    表空间传输是8i 新增加的一种快速在数据库间移动数据的一种办法,是把一个数据库上的格式数据文件附加到另外一个数据库中,而不是把数据导出成 dmp 文件,这 在有些时候是非常管用的,因为传输表空间移动数据就象复制文件一样快。

    1.关于传输表空间有一些规则  (10g前):

    源数据库和目标数据库必须运行在相同的硬件平台上。

    源数据库与目标数据库必须使用相同的字符集。

    源数据库与目标数据库一定要有相同大小的数据块

    目标数据库不能有与迁移表空间同名的表空间

    SYS 的对象不能迁移

    必须传输自包含的对象集

    有一些对象,如物化视图,基于函数的索引等不能被传输(同字节序文件的跨平台可以用更换数据文件的文件头的方法)

    (10g  支持跨平台的表空间传输,只要操作系统字节顺序相同,就可以进行表空间 传输。需要使用 RMAN转换文件格式,略)

    2.  检测一个表空间是否符合传输标准的方法:

    SQL > exec sys.dbms_tts.transport_set_check(‘tablespace_name’,true); SQL > select * from sys.transport_set_violations;

    如果没有行选择,表示该表空间只包含表数据,并且是自包含的。对于有些非自包含的表空间,如数据表空间和索引表空间,可以一起传输。

    3. 简要使用步骤:

    如果想参考详细使用方法,也可以参考 ORACLE联机帮助。

    1.设置表空间为只读(假定表空间名字为 APP_Data  和 APP_Index)

    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    datafiles=(“c:\app_data.dbf,c:\app_index.dbf”) tablespaces=app_data,app_index tts_owners=hr,oe

    6.设置目标数据库表空间为读写

    $ alter tablespace app_data read write;

    $ alter tablespace app_index read write;

 

    1.3  优化

    1.  加快exp速度

    加大large_pool_size,可以提高 exp的速度 采用直接路径的方式(direct=y),数据不需要经过内存进行整合和检查。 设置较大的 buffer,如果导出大对象,小buffer会失败。

    export文件不在ORACLE使用的驱动器上,不要export到NFS文件系统。

    UNIX环境:用管道模式直接导入导出来提高 imp/exp的性能

    2.  加快imp速度

    建立一个indexfile,在数据 import完成后在建立索引将import文件放在不同的驱动器上增加 DB_BLOCK_BUFFERS增加 LOG_BUFFER

    用非归档方式运行 ORACLE:ALTER DATABASE NOARCHIVELOG; 建立大的表空间和回滚段,OFFLINE其他回滚段,回滚段的大小为最大表的 1/2 使用  COMMIT=N

    使用 ANALYZE=N

    单用户模式导入

    UNIX环境:用管道模式直接导入导出来提高 imp/exp的性能

    3.  通过unix/Linux PIPE管道加快exp/imp速度

    通过管道导出数据:

    1.通过 mknod -p 建立管道

    $ mknod /home/exppipe p    //  在目录/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    -rf    /home/exppipe

    导出脚本:

    ###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 '    exp end at '`date`

    echo

    #               rm pipe

    rm exp.pipe

    #               tar the dmp.Z file to tape

    mt -f /dev/rmt/0 rew

    tar cvf /dev/rmt/0 exp.dmp.Z

    echo

    echo '    tar end at '`date`

    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.  先全库加 rows=n 把结构导进去

    $ 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.  以 ignore=y全库导入$ imp system/manager file=exp.dmp log=imp.log full=y ignore=y

    4.  通过 toad或其他工具提取源数据库创建主键和索引的脚本,在目标数据库中创建主键和索引。使触发器生效。

 

    1.4  常见问题

    1.  字符集问题

    ORACLE多国语言设置是为了支持世界范围的语言与字符集,一般对语言提示, 货币形式,排序方式和  CHAR,VARCHAR2,C LOB,LONG  字段的数据的显示等有效。ORACLE  的多国语言设置最主要的两个特性就是国家语言设置与字符集设置,国家语 言设置决定了界面或提示使用的语言种类,字符集决定了数据库保存与字符集有关数据(如文本)时候的编码规则。

    ORACLE字符集设定,分为数据库字符集和客户端字符集环境设置。在数据库端,

    字符集在创建数据库的时候设定,并保存在数据库props$表中。

    在客户端的字符集环境比较简单,主要就是环境变量或注册表项 NLS_ LANG,注意 NLS_LANG的优先级别为:参数文件<注册表<环境变量<alter  session.如果客户端 字符集和服务器端字符集不一样,而且字符集的转换也不兼容,那么客户端的数据显示与导出/导入的与字符集有关的数据将都是乱码。

    使用一点点技巧,就可以使导出/导入在不同的字符集的数据库上转换数据。这里需要一个2进制文件编辑工具即可,如 uedit32.用编辑方式打开导出的dmp文件,获取 2 、3 字节 的内容 , 如  00  01 , 先把它转换 为 10 进制数,为1 ,使用函数

    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  01 换成03  54,即完成了把该 dmp文件字符集从us7ascii 到 zhs16gbk 的转化,这样,再把该dmp文件导入到 zhs16gbk 字符集的数据库就可以了。

    2.  版本问题

    Exp/Imp很多时候,可以跨版本使用,如在版本7与版本8之间导出导入数据,但这样做必须选择正确的版本,规则为:总是使用IMP的版本匹配数据库的版本,如果要导入到 816,则使用816的导入工具。总是使用 EXP 的版本匹配两个数据库中低的那个版本,如在815与816之间互导,则使用815的EXP 工具。

    imp和exp版本不能往上兼容: imp 可以导入低版本 exp生成的文件, 不能导入高版本 exp生成的文件。

你可能感兴趣的:(Oracle数据库备份与恢复之一:exp/imp(原文http://www.cnblogs.com/sungod/archive/2011/03/13/1983090.html))