温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Oracle SET AutoTrace ON 查看执行计划

发布时间:2020-07-19 13:34:19 来源:网络 阅读:1606 作者:archivelog 栏目:关系型数据库

其中Autotrace有如下选项

SET AUTOTRACE OFF
No AUTOTRACE report is generated. This is the default.

SET AUTOTRACE ON EXPLAIN
The AUTOTRACE report shows only the optimizer execution path.

SET AUTOTRACE ON STATISTICS
The AUTOTRACE report shows only the SQL statement execution statistics.

SET AUTOTRACE ON
The AUTOTRACE report includes both the optimizer execution path and the SQL statement execution statistics.

SET AUTOTRACE TRACEONLY
Similar to SET AUTOTRACE ON, but suppresses the printing of the user's query output, if any. If STATISTICS is enabled, query data is still fetched, but not printed.



SQL> select username, sid, serial#, server, paddr, status from v$session;

USERNAME                              SID    SERIAL# SERVER    PADDR            STATUS
------------------------------ ---------- ---------- --------- ---------------- --------
SYS                                  1631         19 DEDICATED 000000007E8D72D8 ACTIVE
SYS                                  1634          2 DEDICATED 000000007E8D9A60 INACTIVE
                                     1636          1 DEDICATED 000000007E8D9278 ACTIVE
                                     1639         12 DEDICATED 000000007E8D6AF0 ACTIVE
                                     1641          3 DEDICATED 000000007E8D8A90 ACTIVE
                                     1645          1 DEDICATED 000000007E8D5338 ACTIVE
                                     1646          1 DEDICATED 000000007E8D4B50 ACTIVE
                                     1647          1 DEDICATED 000000007E8D4368 ACTIVE
                                     1648          1 DEDICATED 000000007E8D3B80 ACTIVE
                                     1649          1 DEDICATED 000000007E8D3398 ACTIVE
                                     1650          1 DEDICATED 000000007E8D2BB0 ACTIVE
                                     1651          1 DEDICATED 000000007E8D23C8 ACTIVE
                                     1652          1 DEDICATED 000000007E8D1BE0 ACTIVE
                                     1653          1 DEDICATED 000000007E8D13F8 ACTIVE
                                     1654          1 DEDICATED 000000007E8D0C10 ACTIVE
                                     1655          1 DEDICATED 000000007E8D0428 ACTIVE

16 rows selected.

SQL> set autotrace on statistics
SQL> select username, sid, serial#, server, paddr, status from v$session where username='SYS';

USERNAME                              SID    SERIAL# SERVER    PADDR            STATUS
------------------------------ ---------- ---------- --------- ---------------- --------
SYS                                  1631         19 DEDICATED 000000007E8D72D8 ACTIVE
SYS                                  1633         33 DEDICATED 000000007E8D72D8 INACTIVE
SYS                                  1634          2 DEDICATED 000000007E8D9A60 INACTIVE


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

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI