Getting ORA-01031: insufficient privileges while querying a table instead of ORA-00942: table or view does not exist

后端 未结 5 1355
粉色の甜心
粉色の甜心 2021-02-08 06:01

When I\'m querying a table in schema C from schema A, I\'m getting ORA-01031: insufficient privileges and when I\'m querying the same table from schema B, I\'m

5条回答
  •  遇见更好的自我
    2021-02-08 06:26

    ORA-01031: insufficient privileges Solution: Go to Your System User. then Write This Code:

    SQL> grant dba to UserName; //Put This username which user show this error message.

    Grant succeeded.

提交回复
热议问题