在甲骨文...我怎么知道我的桌子' A'属于哪个用户!
答案 0 :(得分:1)
SELECT *
FROM All_Objects
WHERE object_name = 'Your_table'
AND object_type = 'TABLE';
你也可以查询all_tables
SELECT *
FROM all_tables
WHERE Table_name = 'Your_table'
All tables显示您的用户可以访问的表格。 DBA_tables显示数据库中的所有表,但需要通常与DBA角色关联的提升权限。
答案 1 :(得分:0)
试试这个
select owner from dba_tables where table_name ='TAB1'
答案 2 :(得分:0)
此查询与我合作
select table_name,owner from all_tables where table_name like '%CONTINENT%'