zoukankan      html  css  js  c++  java
  • oracle创建表空间、用户、用户授权、删除表空间、删除用户

     1 --创建临时表空间 
     2 create temporary tablespace test_temp --test_temp表空间名称
     3 tempfile 'E:oracleproduct10.2.0oradata	estserver	est_temp01.dbf'--oracle文件路径
     4 size 32m 
     5 autoextend on 
     6 next 32m maxsize 2048m 
     7 extent management local; 
     8 
     9 --创建数据表空间 
    10 create tablespace test_data --test_data临时表空间名称
    11 logging 
    12 datafile 'E:oracleproduct10.2.0oradata	estserver	est_data01.dbf'--oracle文件路径
    13 size 32m 
    14 autoextend on 
    15 next 32m maxsize 2048m 
    16 extent management local; 
    17 
    18 --创建用户并指定表空间 
    19 create user username identified by password --username用户名称
    20 default tablespace test_data --默认用户表空间
    21 temporary tablespace test_temp; --默认临时表空间
    22 
    23 --给用户授予权限 
    24 grant connect,resource to username; 
    25 grant dba to username
    26 
    27 --删除空的表空间,但是不包含物理文件
    28 drop tablespace tablespace_name;
    29 --删除非空表空间,但是不包含物理文件
    30 drop tablespace tablespace_name including contents;
    31 --删除空表空间,包含物理文件
    32 drop tablespace tablespace_name including datafiles;
    33 --删除非空表空间,包含物理文件
    34 drop tablespace tablespace_name including contents and datafiles;
    35 --如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段,就要加上CASCADE CONSTRAINTS
    36 drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS;
    37 
    38 --说明: 删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的。
    39 drop user username cascade
  • 相关阅读:
    hdu5754_找规律+威佐夫博弈
    codeforce645C_尺取法
    hdu4336_容斥dp
    poj3071_概率dp
    codeforces148D_推论题
    poj2151_概率dp
    hdu3853_概率dp
    POJ 1410 判断线段与矩形交点或在矩形内
    POJ 1066 Treasure Hunt 线段相交判断
    POJ 2653 Pick-up sticks 判断线段相交
  • 原文地址:https://www.cnblogs.com/smallrock/p/3542278.html
Copyright © 2011-2022 走看看