Why can't I see Tables/Sequences in Toad's Schema Browser?

你离开我真会死。 提交于 2020-01-02 07:33:33

问题


Using Toad 9.7.2 against a network Oracle DB (10g) I can't see any objects in the schema browser using the account information provided to me by my DBA. Using Oracle 10g installed locally, I see all objects in my local Oracle instance using the account I created which has all privileges. I believe this is an instance where the account provided to me by my DBA does not have sufficient privileges in the DB or to the Oracle catalog?

Is there a specific privilege I need to request of my DBA for this user account to be able to use Toad's schema browser against the shared DB?

Thanks in advance to any/all replies.


回答1:


Stupid me. There's a drop down on the Toad schema browser that allows you to change the view of tables you see for each owner. It defaults to the user you login as. When I change the owner to the actual table owner, I can see the tables fine.

Thanks for reading/replying.




回答2:


You need SELECT privilege on the tables in order to see them.

Log in to the database using the account you were provided. Issue the following select statement to see all the tables you have access to:

SELECT owner, table_name 
  FROM all_tables;

If you don't see any tables from the schema you think you should have access to, then you have a privilege issue.



来源:https://stackoverflow.com/questions/3548927/why-cant-i-see-tables-sequences-in-toads-schema-browser

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