zoukankan      html  css  js  c++  java
  • Oracle数据泵

    EXPDP

    1、创建目录

    create directory EXPDP_DUMP as 'D:EXPDPDUMP';

    2、将目录的读写权限分配给用户

    grant read,write on directory EXPDP_DUMP to user_name;

    3、查询目录信息

    select * from  dba_directories;

    4、相关参数

    directory:

    dumpfile:

    content:CONTENT={ALL | DATA_ONLY | METADATA_ONLY}

    parallel:

    IMPDP

    1、创建目录

    create directory IMPDP_DUMP as 'D:IMPDPDUMP';

    2、创建用户(可以不建)

    create user test identified by test default tablespace system temporary tablespace temp;

    3、分配权限

    grant dba,connect to test;
  • 相关阅读:
    py 5.11
    py 5.10
    py 5.9
    py 5.8
    python 5.7
    python 5.4
    python 5.3
    python 5.2
    python 4.28
    python 4.27
  • 原文地址:https://www.cnblogs.com/Yuvee/p/5531709.html
Copyright © 2011-2022 走看看