博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle 创建普通用户,并赋予权限
阅读量:6519 次
发布时间:2019-06-24

本文共 1365 字,大约阅读时间需要 4 分钟。

 1.采用

  用户名:sys     密码:123456 (自己安装orcale时设置的)

  用户名:system    密码:123456 (自己安装orcale时设置的) 

 

 

  1. 创建普通用户konglin: create user kxc identified by 123456;

    删除用户, drop user kxc ;

  2. 授予用户登录数据库的权限: grant create session to kxc ;

  3. 授予用户操作表空间的权限:

    grant unlimited tablespace to kxc ;

    grant create tablespace to kxc ;

    grant alter tablespace to kxc ;

    grant drop tablespace to kxc ;

    grant manage tablespace to kxc ;

  4. 授予用户操作表的权限:

    grant create table to kxc ; (包含有create index权限, alter table, drop table权限)

  5. 授予用户操作视图的权限:

    grant create view to kxc ; (包含有alter view, drop view权限)

  6. 授予用户操作触发器的权限:

    grant create trigger to kxc ; (包含有alter trigger, drop trigger权限)

  7. 授予用户操作存储过程的权限:

    grant create procedure to kxc ;(包含有alter procedure, drop procedure 和function 以及 package权限)

  8. 授予用户操作序列的权限:

    grant create sequence to kxc ; (包含有创建、修改、删除以及选择序列)

  9. 授予用户回退段权限:

    grant create rollback segment to kxc ;

    grant alter rollback segment to kxc ;

    grant drop rollback segment to kxc ;

  10. 授予用户同义词权限:

    grant create synonym to kxc ;(包含drop synonym权限)

    grant create public synonym to kxc ;

    grant drop public synonym to kxc ;

  11. 授予用户关于用户的权限:

    grant create user to kxc ;

    grant alter user to kxc ;

    grant become user to kxc ;

    grant drop user to kxc ;

  12. 授予用户关于角色的权限:

    grant create role to kxc ;

  13. 授予用户操作概要文件的权限

    grant create profile to kxc ;

    grant alter profile to kxc ;

    grant drop profile to kxc ;

  14. 允许从sys用户所拥有的数据字典表中进行选择

    grant select any dictionary to kxc ;

转载地址:http://twrfo.baihongyu.com/

你可能感兴趣的文章
hihoCoder1690 (动态规划)
查看>>
Cap03_项目立项管理
查看>>
在archlinux上搭建twitter storm cluster
查看>>
mysql limit函数
查看>>
c++ 在windows下建立目录
查看>>
linux单独安装oracle客户端及exp/imp工具配置
查看>>
SQL修改表名称
查看>>
poj 1011
查看>>
Poj2752--Seek the Name, Seek the Fame(Kmp → → Next数组应用)
查看>>
[BEC][hujiang] Lesson02 Unit1:Working life ---Reading
查看>>
SQL Server 中 RAISERROR 的用法
查看>>
bupt summer training for 16 #5 ——数据结构
查看>>
Spring安装与入门
查看>>
(OS 64)指定的网络名不再可用,winnt_accept: Asynchronous AcceptEx failed.
查看>>
递归分析
查看>>
Api容器在应用架构演化中的用途
查看>>
java中一个引人深思的匿名内部类
查看>>
vue+ajax+bootstrap+python实现增删改
查看>>
Servlet中的Session
查看>>
React native 第三方组件 React native swiper
查看>>