SP2-0618: Cannot find the Session Identifier.Check PLUSTRACE role is enable

以前一直用SYS用户使用autotrace,今天用其它用户使用autotrace来获得执行计划报如下错误

SQL> set autotrace on

SP2-0618: Cannot find the Session Identifier.Check PLUSTRACE role is enabled

SP2-0611: Error enabling STATISTICS repor

第一反应是授予用用户plustrace角色

SQL> conn / as sysdba

Connected.

SQL>grant plustrace to oak;

grant plustrace to oak

*

ERROR at line 1:

ORA-01919: role 'PLUSTRACE' does not exist

报角色不存在错误

plustrace角色在数据库创建时并不会创建

这个角色可通过运行下面的sql来创建

$ORACLE_HOME/sqlplus/admin/plustrce.sql

授予用户plustrace角色

SQL> grant plustrace to oak;

Grant succeeded.

启用autotrace

SQL> set autotrace on

至此问题解决