問題描述及解決方法:
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;
----成功