Insert 插入式ORA-01031

Insert 插入式ORA-01031,insert,ora-01031,Insert,Ora 01031,我在sql developer中对一个同义词ORA-01031运行了一个insert查询,我们几乎只通过同义词访问所有表,但只有模式中的这个表给出了ORA-0103错误。请导游 Error report: SQL Error: ORA-01031: insufficient privileges 01031. 00000 - "insufficient privileges" *Cause: An attempt was made to change the current userna

我在sql developer中对一个同义词ORA-01031运行了一个insert查询,我们几乎只通过同义词访问所有表,但只有模式中的这个表给出了ORA-0103错误。请导游

Error report: SQL Error: ORA-01031: insufficient privileges
01031. 00000 -  "insufficient privileges"
*Cause:    An attempt was made to change the current username or password
           without the appropriate privilege. This error also occurs if
           attempting to install a database without the necessary operating
           system privileges.
           When Trusted Oracle is configure in DBMS MAC, this error may occur
           if the user was granted the necessary privilege at a higher label
           than the current login.
*Action:   Ask the database administrator to perform the operation or grant
           the required privileges.
           For Trusted Oracle users getting this error although granted the
           the appropriate privilege at a higher label, ask the database
           administrator to regrant the privilege at the appropriate label.

看起来很像您对基础表或同义词的权限不足,或者您的密码已过期?

您是否执行了以下操作:

GRANT select, insert, update, delete on Table to your_synonym_user;

这一行应该由表所有者或具有该权限的用户执行。

我也有同样的问题,我忘记向我的用户授予insert any Table权限。