SQLDeveloper displays no tables under connections where it says tables

僤鯓⒐⒋嵵緔 提交于 2019-12-17 20:02:28

问题


I am not sure why but I just installed SQLdeveloper 32 bit (3.0.0.4). When I click to expand the tables/views/indexes or etc it displays nothing at all!

But when I do the following:

SELECT owner, table_name   
FROM dba_tables 

I see the list of tables and I have read access to these tables since I can do a select * from anytable and data shows. Any thoughts?


回答1:


The SQL Developer tree shows you what objects you own, not what objects you have access to. If you want to see the objects that you have access to that are owned by other users, you would need to navigate to the "Other Users" branch of the tree, then the user that owns the table, then the "Tables" branch.




回答2:


Add select privilege to all_objects/user/ojects in the db user




回答3:


Launch SQL Developer as administrator



来源:https://stackoverflow.com/questions/6459145/sqldeveloper-displays-no-tables-under-connections-where-it-says-tables

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!