• java 导入导出的 命令


    $exp lddba/ld_321@192.168.1.3/testora file=E:db_bakld20170219_1testora.dmp log=E:db_bakld20170219_1testora.log full=y;
    $imp lddba/ld_321@127.0.0.1/ldora file=E:ld20170225_1test.dmp log=E:ld20170225_1testimp.log fromuser=lddba touser=lddba statistics=none;
    /***********************************************************************

    Oracle11g 空表处理
    *************************************************************/
    statistics=none是为了不导入统计信息,如果表很大,导入统计信息会花很长时间;

    rows:表示导出数据行full( 全库导出): 导出除ORDSYS,MDSYS,CTXSYS,ORDPLUGINS,LBACSYS 这些系统用户之外的所有用户的数据.下面这个应该是imp时的参数,exp没有ignore=y 表示忽略创建错误,继续后面的操作

    show parameter deferred_segment_creation

    NAME TYPE VALUE
    ------------------------------------ ----------- ------------------------------
    deferred_segment_creation boolean TRUE
    SQL> alter system set deferred_segment_creation=false;

    系统已更改。

    SQL> show parameter deferred_segment_creation

    NAME TYPE VALUE
    ------------------------------------ ----------- ------------------------------
    deferred_segment_creation boolean FALSE

    处理后需要重启 才能生效

    select 'alter table '|| table_name|| ' allocate extent ; ' from user_tables where NUM_rows =0;


    /********************************************************************/

    ----创建数据库
    ----创建数据库表空间
    ----赋值对应的权限
    -- Create the user
    create user SCMDBA
    identified by "scm_321" --密码
    default tablespace USERS
    temporary tablespace TEMP
    profile DEFAULT
    password expire;
    -- Grant/Revoke object privileges
    grant select on DUAL to SCMDBA;
    grant select on PENDING_TRANS$ to SCMDBA;
    -- Grant/Revoke role privileges
    grant connect to SCMDBA;
    grant dba to SCMDBA with admin option;
    grant exp_full_database to SCMDBA;
    grant imp_full_database to SCMDBA;
    grant resource to SCMDBA;
    -- Grant/Revoke system privileges
    grant administer any sql tuning set to SCMDBA with admin option;
    grant alter user to SCMDBA;
    grant create any view to SCMDBA;
    grant create session to SCMDBA;
    grant create user to SCMDBA;
    grant drop any view to SCMDBA;
    grant drop user to SCMDBA;
    grant unlimited tablespace to SCMDBA with admin option;

  • 相关阅读:
    linux中mysql,mongodb,redis,hbase数据库操作
    hbase数据库操作
    hdfs基本操作
    linux及hadoop基本操作
    创建有关hbase数据库的项目时所遇到的问题
    数据科学与大数据
    《TCP/IP详解卷1:协议》——第2章:链路层(转载)
    《TCP/IP详解卷1:协议》——第1章:概述(转载)
    深入理解计算机操作系统——第9章:缓存,存储器管理
    深入理解计算机操作系统——第9章:物理和虚拟寻址,地址空间
  • 原文地址:https://www.cnblogs.com/yangpeng-jingjing/p/6474030.html
Copyright © 2020-2023  润新知