Oracle-(1)权限操作

–创建表空间

create tablespace itheima
datafile 'E:\oracle\workspace\itheima.dbf'
size 100m
autoextend on
next 10m;

–删除表空间

drop tablespace itheima;

–创建用户

create user itheima
identified by itheima
default tablespace itheima;

–给用户授权

–oracle数据库中常用角色

connect--连接角色,基本角色
resource--开发者角色
dba--超级管理员角色

–给itheima用户授予dba角色

grant dba to itheima;

持续更新中…

猜你喜欢

转载自blog.csdn.net/weixin_44325444/article/details/106361901