实体权限:select, update, insert, alter, index, delete, all //all包括所有权限execute //执行存储过程权限user01:SQL> grant select, update, insert on product to user02;SQL> grant all on product to user02;user02:SQL> select * from user01.product; // 此时user02查user_tables,不包括user01.product这个表,但如果查all_tables则可以查到,因为他可以访问。将表的操作权限授予全体用户:SQL> grant all on product to public; // public表示是所有的用户,这里的all权限不包括drop。实体权限数据字典SQL> select owner, table_name from all_tables; // 用户可以查询的表SQL> select table_name from user_tables; // 用户创建的表SQL> select grantor, table_schema, table_name, privilege from all_tab_privs; // 获权可以存取的表(被授权的)SQL> select grantee, owner, table_name, privilege from user_tab_privs; // 授出权限的表(授出的权限)DBA用户可以操作全体用户的任意基表(无需授权,包括删除)