SQL> connect sys as sysdba
请输入口令:
已连接。
SQL> @?\rdbms\admin\utlxplan (创建plan_table表)
表已创建。
SQL> create public synonym plan_table for plan_table;(创建全局同义词,不然用户看不见这个表,即使看的见,也是sys.plan_table)
同义词已创建。
SQL> grant all on plan_table to public ;(让所有用户可以访问这个表)
授权成功。
SQL> @?\sqlplus\admin\plustrce (给这个角色赋予权限)
SQL>
SQL> drop role plustrace;
drop role plustrace
*
ERROR 位于第 1 行:
ORA-01919: 角色'PLUSTRACE'不存在
SQL> create role plustrace;
角色已创建
SQL>
SQL> grant select on v_$sesstat to plustrace;
授权成功。
SQL> grant select on v_$statname to plustrace;
授权成功。
SQL> grant select on v_$session to plustrace;
授权成功。
SQL> grant plustrace to dba with admin option;
授权成功。
SQL>
SQL> set echo off
把(set autotrace )权限给用户
SQL> grant plustrace to u;