问题描述及解决方法:
SQL*Plus: Release 11.2.0.1.0 Production on 星期六 1月 10 14:31:44 2015
Copyright (c) 1982, 2010, Oracle. All rights reserved.
请输入用户名: scott 输入口令:
连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> set autotrace on;
SP2-0618: 无法找到会话标识符。启用检查 PLUSTRACE 角色
SP2-0611: 启用 STATISTICS 报告时出错
SQL> conn /as sysdba 已连接。
SQL> @E:\app\test\product\11.2.0\dbhome_1\sqlplus\admin\plustrce.sql;
SQL> drop role 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_$mystat to plustrace;
授权成功。
SQL> grant plustrace to dba with admin option;
授权成功。
SQL> set echo off
SQL> conn scott/scott 已连接。
SQL> set autotrace on;
SP2-0618: 无法找到会话标识符。启用检查 PLUSTRACE 角色
SP2-0611: 启用 STATISTICS 报告时出错
SQL> conn sys / as sysdba
输入口令: 已连接。
SQL> grant plustrace to public;
授权成功。
SQL> conn ec/ec 已连接。 SQL> set autotrace on;
----成功