zoukankan      html  css  js  c++  java
  • oracle快速创建用户、imp/exp导入导出dmp文件

    1.首先我们可以用管理员用户以sysdba的身份登录oracle

    sqlplus username/password as sysdba;
    

    2.然后我就可以来创建用户了.

    create user username identified by password;
    

    3.创建好用户我们接着就可以修改用户的密码.

    alter user username identified by password; 
    

    4.一般在开发情况下,我们不会使用用户的默认表空间,所以这时我们需要创建一个表空间.

    1)默认设置表空间自动扩展,且每次扩展空间大小为100M,不限制最大空间
    create tablespace tablespacename datafile 'f:	s_zzgzzg_data.dbf' size 2000M autoextend on next 100m maxsize unlimited; 
    
    2)默认设置表空间自动扩展,且每次扩展空间大小为100M,限制最大空间为5G,注:datafile后面是表空间的物理存储路径,文件名的后缀可以随便.
    create tablespace tablespacename datafile 'f:	s_zzgzzg_data.dbf' size 2000M autoextend on next 100m maxsize 5G; 
    

    5.创建好表空间,还需要将表空间分配给用户.

    alter user zzg default tablespace ts_zzg; 
    

    6.给用户分配DBA权限

    grant dba to zzg; 
    

    7.给用户分配了表空间,用户还不能登陆(没有登录权限),因此还需要为用户分配权限

    grant create session,create table,create view,create sequence,connect,resource,unlimited tablespace to zzg; 
    

    8.给用户分配了权限之后我们就可以登录了

    conn username/password; 
    

    9.登录之后我们也可以来查询用户所具有的权限

    select * from session_privs; 
    

    10.我们也可以删除用户及其相关对象,删除之前先断开相关链接

    drop user username cascade; 
    

    11.imp导入数据,cmd命令行执行以下imp脚本

    imp cqyyt/123456 file=C:db.dmp file=C:db.log full =y;
    imp username/123456 fromuser=fromusername touser=tousername file=F:DEBT_QKJ_0731.dmp log=F:DEBT_QKJ_0108.log ignore=y;
    

    12.exp导出数据,cmd命令行下按以下命令执行即可

    exp gd_base/11@192.168.13.211/oanet file=D:exportgd_base.dmp log=D:exportgd_base.log owner=gd_base;
    exp gd_base/11@oanet file=D:exportgd_base.dmp log=D:exportgd_base.log owner=gd_base;
  • 相关阅读:
    Large-Margin Softmax Loss for Convolutional Neural Networks
    Selective Kernel Network
    A Discriminative Feature Learning Approach for Deep Face Recognition
    recurrent model for visual attention
    rethinking imageNet pre-training
    字符串格式化输出
    HeatMap
    Numpy 多维数组简介
    浅谈JVM(下)
    java线程池总结
  • 原文地址:https://www.cnblogs.com/MicleZhou2020/p/12200622.html
Copyright © 2011-2022 走看看