博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle 基础之数据库管理
阅读量:6838 次
发布时间:2019-06-26

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

hot3.png

Oracle数据库管理需要对应的权限,最好是DBA权限

用户管理:

--创建用户给其一个密码(必须给其一个密码)create user king IDENTIFIED by king;--创建的新用户要给其权限grant connect to king;grant resource to king;--给用户scott解锁alter user scott account unlock ;--把用户锁住alter user scott account lock;--给用户scott修改密码alter user scott IDENTIFIED by tarena123;

别名管理:

1. 定义同义词--定义一个公有的别名 scott.emp ----> emp create public synonym emp for scott.emp;

  

2.删除同义词:  drop public synonym table_name;

 

3.查看所有同义词:  select * from dba_synonyms

 权限管理:

    对表操作的权限:

grant select on emp to jsd1404;grant insert on emp to jsd1404;grant delete on emp to jsd1404;grant update on emp to jsd1404;grant alter on emp to jsd1404;grant update on emp to jsd1404 with grant option; 授权更新权限转移给xujin用户,许进用户可以继续授权;

   收回权限:

revoke  select on emp from jsd1404;revoke  insert on emp from jsd1404;revoke  update on emp from jsd1404;revoke  delete on emp from jsd1404;revoke  alter on emp from jsd1404;

    对用户操作的权限:

grant connect to king;--给用户授予连接的权限grant resource to king;--给用户king授予 所有资源的权限

    对存储过程的权限:

grant create procedure to jsd1404;--授予创建存储过程的权限grant execute procedure_name to jsd1404;--授予执行某个存储过程的权限

    对表空间操作的权限:

grant create tablespace to jsd1404; --授予可以创建tablespace 的权限grant alter tablespace to jsd1404;--授予可以修改tablespace 的权限

    其他:

select * from dba_users;-- 查询数据库中的所有用户select table_name,privilege from dba_tab_privs where grantee='jsd1404';-- 查询一个用户拥有的对象权限select * from dba_sys_privs where grantee='jsd1404';-- 查询一个用户拥有的系统权限select * from session_privs; --当钱会话有效的系统权限

grant update on table1 to jsd1404 with grant option; 授权更新权限转移给xujin用户,许进用户可以继续授权;

转载于:https://my.oschina.net/KingPan/blog/281122

你可能感兴趣的文章
Ant + Tomcat + Jenkins 实现自动化部署
查看>>
奥迪明年将在美推出汽车共享车队
查看>>
万达网络首席架构师:回复雷盈CEO,致敬区块链创业者!
查看>>
阿里达摩院布局“中国芯”,自研AI芯片性价比超同类40倍
查看>>
ShowDoc v2.4.10 发布,IT 团队的在线 API 文档工具
查看>>
Macaca入门篇(iOS)
查看>>
甲骨文宣布开源 GraphPipe,一种机器学习模型的新标准
查看>>
使用Eclipse开发Java应用并部署到SAP云平台SCP上去
查看>>
区块链:重新定义世界,崛起于草根的“颠覆性”技术
查看>>
为保证太空超级计算机可长期使用,惠普宣布已成功为其加电
查看>>
SqlMap 初尝试
查看>>
Python学习笔记-邮件模块SMTP
查看>>
限制优化时间和事件数的最佳方法
查看>>
金州勇士队采用可眼动追踪VR头显,检测球员的伤势情况
查看>>
Oracle 10g bigfile表空间、smallfile 表空间
查看>>
City of Angels
查看>>
React之配置组件的 props(两个实例)
查看>>
无线网络安全相关
查看>>
mybatis动态调用表名和字段名
查看>>
http与www服务基础概念详解
查看>>