码迷,mamicode.com
首页 > 数据库 > 详细

Oracle set autotrace 时提示:Cannot find the Session Identifier. Check PLUSTRACE role is enabled

时间:2015-02-16 16:51:09      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

SQL> set autotrace
Usage: SET AUTOT[RACE] {OFF | ON | TRACE[ONLY]} [EXP[LAIN]] [STAT[ISTICS]]
SQL> set autotrace on
SP2-0618: Cannot find the Session Identifier.  Check PLUSTRACE role is enabled
SP2-0611: Error enabling STATISTICS report
SQL> conn /as sysdba
Connected.
SQL> drop role plustrace;
drop role plustrace
          *
ERROR at line 1:
ORA-01919: role PLUSTRACE does not exist


SQL> create role plustrace;

Role created.

SQL> grant select on v_$sesstat to plustrace;

Grant succeeded.

SQL> grant select on v_$statname to plustrace;

Grant succeeded.
SQL> grant select on v_$mystat to plustrace;

Grant succeeded.


SQL> grant plustrace to dba with admin option;

Grant succeeded.

SQL> grant plustrace to scott;

Grant succeeded.

SQL> conn scott/tiger
Connected.

SQL> set autotrace on
SQL> select count(*) from emp;

  COUNT(*)
----------
    14


Execution Plan
----------------------------------------------------------
Plan hash value: 2937609675

-------------------------------------------------------------------
| Id  | Operation     | Name   | Rows  | Cost (%CPU)| Time      |
-------------------------------------------------------------------
|   0 | SELECT STATEMENT |      |    1 |    1   (0)| 00:00:01 |
|   1 |  SORT AGGREGATE  |      |    1 |           |      |
|   2 |   INDEX FULL SCAN| PK_EMP |    14 |    1   (0)| 00:00:01 |
-------------------------------------------------------------------


Statistics
----------------------------------------------------------
      1  recursive calls
      0  db block gets
      1  consistent gets
      1  physical reads
      0  redo size
    526  bytes sent via SQL*Net to client
    520  bytes received via SQL*Net from client
      2  SQL*Net roundtrips to/from client
      0  sorts (memory)
      0  sorts (disk)
      1  rows processed

SQL> 

 

Oracle set autotrace 时提示:Cannot find the Session Identifier. Check PLUSTRACE role is enabled

标签:

原文地址:http://www.cnblogs.com/yshyee/p/4294201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!