Oracle ORA-01031

Oracle ORA-01031 is due to insufficient permissions

Generally, the permissions we add to the table for different users are

 insert , select , update ,delete

These few are enough

However, there is a lack of permissions for the creation and deletion of user partition tables:

You can add all user permissions to this i table individually to a user, like this

grant all privileges on table name to user name;

This way you will not report an error when creating a partition.

Although it’s not very suitable, we are not a professional DBA.

Guess you like

Origin blog.csdn.net/ClearLoveQ/article/details/103509076