zoukankan      html  css  js  c++  java
  • oracle数据库表空间创建&导入&导出

    1、表空间创建

    --删除表空间

    drop tablespace EVPBDMGIS including contents and datafiles; 

    --删除用户

    drop user EVPBDMGIS cascade;

    --创建表空间

    create tablespace EVPBDMGIS datafile 'D:appAdministratororadataorclEVPBDMGIS.DBF' size 500m reuse autoextend on next 16m maxsize unlimited logging extent management local segment space management auto;

    --创建用户设置默认表空间
    create user EVPBDMGIS identified by EVPBDMGIS
    default tablespace EVPBDMGIS
    temporary tablespace temp;

    --设置用户权限
    grant connect,resource,exp_full_database,imp_full_database to EVPBDMGIS ;

    --查询当前连接用户
    --select username,sid,serial# from v$session

    --清除连接用户
    --alter system kill session '223,50256'

    2、导入、导出

    --导出表结构
    exp sjcg/sjcg@orcl owner=sjcg file=D:sjcg0727schema.dmp rows=n compress=n

    --导出命令:exp 用户名/密码@数据库 owner=用户名 file=文件存储路径(如:F:abcd.dmp)
    exp sjcg/sjcg@orcl file=D:sjcg_ev_20190124.dmp owner=sjcg

    --导入命令:imp 用户名/密码@数据库 fromuser=用户名 touser=用户名 file=d:cu.dmp ignore=y
    imp hzuhvproj/hzuhvproj@orcl fromuser=hzuhvproj touser=hzuhvproj file=D:Temp.dmp ignore=y

    --导入指定表
    imp sjcg/sjcg@orcl tables=(ev_t_bc_lineproperty,ev_t_bc_mapobject,ev_t_bc_mapobjectproperty,ev_t_bc_station) file=D:TempSJCG0122schema.dmp

    cu/mycu@db:导入的数据库登陆(用户名/密码@数据库)

    fromuser:文件的指定用户

    touser:指定导入到当前登录的数据库某个用户

    file:需要导入的数据文件

    ignore:是否忽略创建错误

    --登录不区分大小写
    alter system set sec_case_sensitive_logon=false

    --解锁用户
    ALTER USER username ACCOUNT UNLOCK;

  • 相关阅读:
    刚好遇见你——软件工程
    int main(int argc,char* argv[]) 简单理解
    奇偶数分离
    A+B Problem
    日期计算
    正三角形的外接圆面积
    数数小木块
    谁是最好的Coder
    水仙花数
    5个数求最值
  • 原文地址:https://www.cnblogs.com/xuedonghou/p/11329486.html
Copyright © 2011-2022 走看看