oracle创建表空间、用户、用户授权、删除表空间、删除用户

  • 创建临时表空间
    create temporary tablespace temp_test —temp_test表空间名称
    tempfile ‘C:\oracle\product\10.2.0\oradata\testserver\temp_test01.dbf’ —oracle文件路径
    size 32m —temp_test初始表空间值
    autoextend on
    next 32m maxsize 2048m —temp_test表空间最大值
    extent management local;

  • 创建数据表空间
    create tablespace data_test –data_test数据表空间名称
    logging
    datafile ‘C:\oracle\product\10.2.0\oradata\testserver\data_test01.dbf’–oracle文件路径
    size 32m
    autoextend on
    next 32m maxsize 2048m
    extent management local;

  • 修改表空间大小
    alter database datafile ‘C:\oracle\product\10.2.0\oradata\testserver\data_test01.dbf’ resize 4000m;

  • 增加表空间数据文件
    alter tablespace data_test add datafile ‘C:\oracle\product\10.2.0\oradata\testserver\data_test02.dbf’ size 4000m;

  • 创建用户并指定表空间
    create user user_name identified by user_password —user_name/user_password用户/和密码
    default tablespace data_test —默认用户数据表空间
    temporary tablespace temp_test; —默认临时表空间

  • 给用户授予权限
    grant connect,resource to user_name;
    grant dba to user_name

  • 删除空的表空间,但是不包含物理文件
    drop tablespace tablespace_name;

  • 删除非空表空间,但是不包含物理文件
    drop tablespace tablespace_name including contents;

  • 删除空表空间,包含物理文件
    drop tablespace tablespace_name including datafiles;

  • 删除非空表空间,包含物理文件
    drop tablespace tablespace_name including contents and datafiles;

  • 如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段,就要加上CASCADE CONSTRAINTS
    drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS;

  • 说明: 删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的
    drop user username cascade

发布了22 篇原创文章 · 获赞 35 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/sinat_27431397/article/details/88638263