oracle权限分配

创建临时表空间
create temporary tablespace ACCIDENTCASE_TEMP //临时表空间名字
tempfile'D:\oracle\product\10.1.0\oradata\orcl\ACCIDENTCASE_TEMP01.dbf'
size 300M
autoextend on
next 20M maxsize 2048M
extent management local;


创建数据库表空间
create tablespace SOFT_QDRISE_ACCIDENTCASE
logging
datafile'D:\oracle\product\10.1.0\oradata\orcl\SOFT_QDRISE_ACCIDENTCASE.dbf'
size 300M
autoextend on
next 20M maxsize 2048M
extent management local;

创建用户并制定表空间
create user db_accidentcase identified by netstars //用户名db_accidentcase 密码netstars
default tablespace SOFT_QDRISE_ACCIDENTCASE //表空间名字
temporary tablespace ACCIDENTCASE_TEMP;

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

改变用户默认表空间
alter user username default tablespace SOFT_QDRISE_ACCIDENTCASE;

查询该用户下面的所有表空间
select * from sys.dba_tablespaces;

select * from dba_tables where tablespace_name='SOFT_QDRISE_ACCIDENTCASE';

你可能感兴趣的:(oracle)