oracle Oracle查询以获取当前用户具有读取权限的表列表
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/12314021/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-10 04:27:58 来源:igfitidea点击:
Oracle Query to get table list for which the current user has read access
提问by Manikandan
How do I query an Oracle database to list the tables where the current user has read privilege?
如何查询 Oracle 数据库以列出当前用户具有读取权限的表?
回答by Florin Ghita
user_tables
is users's tables. For all tables that user can read:
user_tables
是用户的表。对于用户可以读取的所有表:
select * from all_tables;