博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
查看用户角色和用户权限
阅读量:3906 次
发布时间:2019-05-23

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

--查看用户和默认表空间的关系

select username,default_tablespace from dba_users;
--查看当前用户能访问的表
select * from user_tables; 
--查看用户角色
SELECT * FROM USER_ROLE_PRIVS;
--查看当前用户权限
select * from session_privs;
 

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

你可能感兴趣的文章
Python sort and sorted
查看>>
Python List Operation
查看>>
python auto-increment
查看>>
Python List Comprehensions
查看>>
Python 递归 list不正确
查看>>
Python copy a list
查看>>
Iteration Vs Recursion Java
查看>>
What are some of the differences between using recursion to solve a problem versus using iteration?
查看>>
subsets
查看>>
Python Nested List Operation
查看>>
Python Binary Search
查看>>
How to append list to second list
查看>>
Write a program to print all permutations of a given string
查看>>
递归回溯
查看>>
穷举递归和回溯算法终结篇
查看>>
Exhaustive recursion and backtracking
查看>>
递归算法的时间复杂度终结篇
查看>>
全排列算法的递归与非递归实现
查看>>
Python Division and Remainders
查看>>
Python Division //
查看>>