使用sys sysdba登录sqlplus
创建表空间
create tablespace histdb1datafile 'd:\oracle\product\10.2.0\oradata\orcl\histdb2.dbf'size 200mautoextend on next 10m maxsize unlimited;创建用户:
create user histdb3 identified by histdb4default tablespace histdb1temporary tablespace temp指定角色:
grant connect,resource,dba to histdb3注:
histdb1 为表空间histdb2 为表空间文件名histdb3为用户名histdb4为用户密码
删除:
步骤一: 删除userdrop user ×× cascade说明: 删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的。步骤二: 删除tablespaceDROP TABLESPACE tablespace_name INCLUDING CONTENTS AND DATAFILES;