Oracle表空间用户授权管理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle表空间用户授权管理相关的知识,希望对你有一定的参考价值。
1、查询表空间位置
select * from dba_data_files;
-->d:\app\administrator\oradata\orcl\***.dbf
2、查看临时表空间位置
select * from v$tempfile
-->d:\app\administrator\oradata\orcl\***_tmp.dbf
3、创建临时表空间
create temporary tablespace icmamp_temp
tempfile ‘d:\app\administrator\oradata\orcl\icmamp_temp.dbf‘
size 100m
autoextend on
next 100m maxsize 20480m
extent management local;
4、创建表空间
create tablespace icmamp
logging
datafile ‘d:\app\administrator\oradata\orcl\icmamp.dbf‘
size 200m
autoextend on
next 200m maxsize 20480m
extent management local;
5、删除表空间
drop tablespace icmamp_temp including contents and datafiles cascade constraints;
6、创建用户并指定表空间
create user icmamp identified by 123456 default tablespace icmamp temporary tablespace icmamp_temp;
7、用户授权
grant connect,resource,dba to icmamp;
以上是关于Oracle表空间用户授权管理的主要内容,如果未能解决你的问题,请参考以下文章