当前位置:网站首页>Common authority query instructions in Oracle
Common authority query instructions in Oracle
2022-07-02 20:54:00 【Rigo, the community sends warmth】
Introduce :
-- Permissions are divided into system permissions and object permissions , A role is a collection of permissions . System permission is right Oracle Operation permission of , If connected , to grant authorization , establish create. Object permission is the operation permission of an object , Such as query . to update , Delete delete etc. .
-- View all users in the system , Both instructions work
select * from dba_users;
select * from all_users;
-- View the current user
select * from user_users;
-- View the roles of the current user
select * from user_role_privs;
-- Check the roles in the system
select * from dba_roles;
-- Check the roles of all users in the system
select * from dba_role_privs;
-- View with sysdba、sysoper、sysasm Users of roles
select * from v$pwfile_users;
-- Check what permissions each role has
select * from role_sys_privs where role='DBA';
-- View the permissions of the current user
select * from dba_sys_privs where grantee='SYS';
-- View the permissions of the current user in different objects ,grantee Fields represent objects , An object is a specific data table or database or a stored procedure , Both instructions can be used
select * from dba_tab_privs;
select * from all_tab_privs;
边栏推荐
- 股票开户要找谁?手机开户是安全么?
- Resunnet - tensorrt8.2 Speed and Display record Sheet on Jetson Xavier NX (continuously supplemented)
- Number of DP schemes
- Second hand housing data analysis and prediction system
- 在网上炒股开户安全吗?我是新手,还请指导
- Is it safe to buy funds on securities accounts? Where can I buy funds
- Who do you want to open a stock account? Is it safe to open a mobile account?
- 想请教一下,我在东莞,到哪里开户比较好?手机开户是安全么?
- Function, function, efficiency, function, utility, efficacy
- Wu Enda's machine learning mind mapping insists on clocking in for 23 days - building a knowledge context, reviewing, summarizing and replying
猜你喜欢
Summary of interview experience, escort your offer, full of knowledge points
【QT】QPushButton创建
Volvo's first MPV is exposed! Comfortable and safe, equipped with 2.0T plug-in mixing system, it is worth first-class
测试人员如何做不漏测?这7点就够了
Cs5268 perfectly replaces ag9321mcq typec multi in one docking station solution
[cloud native topic -50]:kubesphere cloud Governance - operation - step by step deployment of microservice based business applications - database middleware MySQL microservice deployment process
「 工业缺陷检测深度学习方法」最新2022研究综述
Redis sentinel cluster working principle and architecture deployment # yyds dry goods inventory #
I drew a Gu ailing with characters!
【Hot100】21. Merge two ordered linked lists
随机推荐
Select function
JS modularization
【Hot100】22. bracket-generating
台湾SSS鑫创SSS1700替代Cmedia CM6533 24bit 96KHZ USB音频编解码芯片
【QT】QPushButton创建
Interpretation of some papers published by Tencent multimedia laboratory in 2021
sense of security
Who do you want to open a stock account? Is it safe to open a mobile account?
How to realize the function of detecting browser type in Web System
Redis sentinel cluster working principle and architecture deployment # yyds dry goods inventory #
[cloud native topic -49]:kubesphere cloud Governance - operation - step by step deployment of microservice based business applications - basic processes and steps
Customized Huawei hg8546m restores Huawei's original interface
pytorch 模型保存的完整例子+pytorch 模型保存只保存可訓練參數嗎?是(+解决方案)
Longest public prefix of leetcode
【Hot100】21. 合并两个有序链表
BitSet complement
Wu Enda's machine learning mind mapping insists on clocking in for 23 days - building a knowledge context, reviewing, summarizing and replying
burp 安装 license key not recognized
数据库模式笔记 --- 如何在开发中选择合适的数据库+关系型数据库是谁发明的?
Implementing yolox from scratch: dataset class