How to allow other users to operate their own user table

How to allow other users to operate their own user table?

Method one: to give other users permission to operate on the table

I used to use a method, but other methods require a user at the time of the operation table data in the previous table plus the schema, too much trouble.

The question is, how to allow other users to operate table data without the need to add the schema?

Method Two: Table owner to create a table of common synonym, and a synonym of the operating authority given to other users, that is, other users can operate on the data sheet. (Create public synonym syn_test for tablename;)

Table owner needs to have permission to create a public synonym, use the sys user to give permission to the administrator create public synonym of.

grant create public synonym to username;

 

Guess you like

Origin www.cnblogs.com/orcl-2018/p/11074897.html