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


    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> 
  • 相关阅读:
    requests模块
    爬虫基础
    forms组件
    分页器组件
    cookie与session组件
    Auth模块
    中间件组件
    git
    Ajax
    《Java程序设计》实验二 实验报告
  • 原文地址:https://www.cnblogs.com/yshyee/p/4294201.html
Copyright © 2020-2023  润新知