返回顶部
首页 > 资讯 > 数据库 >SQL性能的度量 - 利用Hints和dbms_sqltune进行SQL监控
  • 562
分享到

SQL性能的度量 - 利用Hints和dbms_sqltune进行SQL监控

2024-04-02 19:04:59 562人浏览 八月长安
摘要

可以使用Hints对某个sql开启实时监控 select count(*) from scott.emp where sal>2000; 使用dbms_

可以使用Hints对某个sql开启实时监控

select count(*) from scott.emp where sal>2000;


使用dbms_sqltune查看监控信息

set long 9999999

set lonGChunksize 9999999

set linesize 200

select dbms_sqltune.report_sql_monitor from dual;


REPORT_SQL_MONITOR

---------------------------------------------------------------------------------------------------------------------------

SQL Monitoring Report


SQL Text

------------------------------

select count(*) from scott.emp where sal>2000


Global InfORMation

------------------------------

 Status              :  DONE (ALL ROWS)

 Instance ID         :  1

 Session             :  SYS (9:15084)

 SQL ID              :  6k8qh0ubz4mnw

 SQL Execution ID    :  16777216

 Execution Started   :  05/27/2017 23:10:31

 First Refresh Time  :  05/27/2017 23:10:31

 Last Refresh Time   :  05/27/2017 23:10:31

 Duration            :  .0003s

 Module/Action       :  sqlplus.exe/-

 Service             :  SYS$USERS

 Program             :  sqlplus.exe

 Fetch Calls         :  1


Global Stats

==================================================

| Elapsed |    IO    |  Other   | Fetch | Buffer |

| Time(s) | Waits(s) | Waits(s) | Calls |  Gets  |

==================================================

|    0.00 |     0.00 |     0.00 |     1 |      7 |

==================================================


SQL Plan Monitoring Details (Plan Hash Value=2083865914)

==========================================================================================================================

| Id |      Operation       | Name |  Rows   | Cost |   Time    | Start  | Execs |   Rows   | Activity | Activity Detail |

|    |                      |      | (Estim) |      | Active(s) | Active |       | (Actual) |   (%)    |   (# samples)   |

==========================================================================================================================

|  0 | SELECT STATEMENT     |      |         |      |         1 |     +0 |     1 |        1 |          |                 |

|  1 |   SORT AGGREGATE     |      |       1 |      |         1 |     +0 |     1 |        1 |          |                 |

|  2 |    TABLE ACCESS FULL | EMP  |      10 |    3 |         1 |     +0 |     1 |        6 |          |                 |

==========================================================================================================================


监控信息始终指向最后一次监控的SQL语句,这些信息将会在数据库重启后清除。

您可能感兴趣的文档:

--结束END--

本文标题: SQL性能的度量 - 利用Hints和dbms_sqltune进行SQL监控

本文链接: https://lsjlt.com/news/47935.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作