zoukankan      html  css  js  c++  java
  • Oracle 创建普通用户,并赋予权限

     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 ;

  • 相关阅读:
    go2基本类型
    go1
    android studio 使用
    ios34---GDC,dispatch_once
    ios33--线程通信
    ios33--线程安全
    ios32---线程的状态
    ios31--NSThread
    ios30---pthread, NSThread, GCD, NSOperation
    ios29--多线程
  • 原文地址:https://www.cnblogs.com/kongxc/p/8684542.html
Copyright © 2011-2022 走看看