当我有表名时如何获取模式名 - Oracle

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/37728528/
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-19 03:15:12  来源:igfitidea点击:

How to get the schema name when I have table name - Oracle

sqloracle

提问by bin

I have a table name but I am not sure in which schema that table exists. How to find the schema name?

我有一个表名,但我不确定该表存在于哪个模式中。如何找到模式名称?

回答by Aleksej

Select owner
from dba_tables
where table_name = 'YOUR_TABLE_NAME'

Hereyou can find something more.

在这里你可以找到更多的东西。

回答by zee

Something like this should get the name of the table and the the schema it belongs to .

这样的事情应该得到表的名称和它所属的架构。

select owner, table_name 
 from all_tables 
 where table_name like 'GL%';