oracle 用户创建赋权,oracle创建用户、表空间,并赋权

--创建表空间

create tablespace test_tps

datafile 'D:\app\Administrator\oradata\orcl\test_tps.dbf'

size 1500M

autoextend on next 5M;

--创建用户并制定表空间

create user test_tps identified by test_tps

default tablespace test_tps;

--赋权限

grant connect,resource to test_tps;

grant create any sequence to test_tps;

grant create any table to test_tps;

grant delete any table to test_tps;

grant insert any table to test_tps;

grant select any table to test_tps;

grant unlimited tablespace to test_tps;

grant execute any procedure to test_tps;

grant update any table to test_tps;

grant create any view to test_tps;

--赋权DBA

grant sysdba to test_tps;

--撤回dba权限

revoke dba from 用户

---------------------------------------------------------------

--授权命令:

--GRANT   {DBA|RESOURCE|CONNECT}   TO   {PUBLIC|user-list}

--PUBLIC|user-list:全部或指定的用户。

--三种权限居且仅居其一,事务处理过程中不要执行GRANT语句。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值