Home Database Mysql Tutorial dba_enabled_aggregations

dba_enabled_aggregations

Jun 07, 2016 pm 03:22 PM
dba e

DBA_ENABLED_AGGREGATIONS displays information about enabled on-demand statistic aggregation. Column Datatype NULL Description AGGREGATION_TYPE VARCHAR2(21) Type of the aggregation: CLIENT_ID SERVICE SERVICE_MODULE SERVICE_MODULE_ACTION PRI

DBA_ENABLED_AGGREGATIONS displays information about enabled on-demand statistic aggregation.

Column Datatype NULL Description
AGGREGATION_TYPE VARCHAR2(21) Type of the aggregation:

CLIENT_ID

SERVICE

SERVICE_MODULE

SERVICE_MODULE_ACTION

PRIMARY_ID VARCHAR2(64) Primary qualifier (specific client identifier or service name)
QUALIFIER_ID1 VARCHAR2(48) Secondary qualifier (specific module name)
QUALIFIER_ID2 VARCHAR2(32) Additional qualifier (specific action name)

通过DBA_ENABLED_AGGREGATIONS视图可以查询通过DBMS_MONITOR包开启的统计信息收集。通过dbms_monitor我们可以按照如下方式收集统计信息: 基于session client identfier收集基于service、module、action的组合收集 示例如下:
SQL> execute dbms_session.set_identifier('es');

PL/SQL 过程已成功完成。

SQL> exec dbms_monitor.client_id_stat_enable('es');

PL/SQL 过程已成功完成。

SQL> select aggregation_type from dba_enabled_aggregations;

AGGREGATION_TYPE
---------------------
CLIENT_ID

SQL> exec dbms_application_info.set_module(module_name=>'tm',action_name=>'ta');

PL/SQL 过程已成功完成。

SQL> select aggregation_type from dba_enabled_aggregations;

AGGREGATION_TYPE
---------------------
CLIENT_ID

SQL> exec dbms_monitor.serv_mod_act_stat_enable(service_name=>'easy');
BEGIN dbms_monitor.serv_mod_act_stat_enable(service_name=>'easy'); END;

      *
第 1 行出现错误:
ORA-06550: 第 1 行, 第 7 列:
PLS-00306: 调用 'SERV_MOD_ACT_STAT_ENABLE' 时参数个数或类型错误
ORA-06550: 第 1 行, 第 7 列:
PL/SQL: Statement ignored


SQL> exec dbms_monitor.serv_mod_act_stat_enable(service_name=>'easy',module_name=>'tm');

PL/SQL 过程已成功完成。

SQL> select aggregation_type from dba_enabled_aggregations;

AGGREGATION_TYPE
---------------------
CLIENT_ID
SERVICE_MODULE

SQL> exec dbms_monitor.serv_mod_act_stat_enable(service_name=>'easy',module_name=>'tm',action_name=>'ta');

PL/SQL 过程已成功完成。

SQL> select aggregation_type from dba_enabled_aggregations;

AGGREGATION_TYPE
---------------------
CLIENT_ID
SERVICE_MODULE
SERVICE_MODULE_ACTION
Copy after login

查看统计信息: 视图:v$serv_mod_act_stats
SQL> l
  1* select aggregation_type,service_name,module,action,stat_name,value from v$serv_mod_act_stats
SQL> /

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE	      easy	 tm				 user calls				 0
SERVICE_MODULE	      easy	 tm				 DB time				 0
SERVICE_MODULE	      easy	 tm				 DB CPU 				 0
SERVICE_MODULE	      easy	 tm				 parse count (total)			 0
SERVICE_MODULE	      easy	 tm				 parse time elapsed			 0
SERVICE_MODULE	      easy	 tm				 execute count				 0
SERVICE_MODULE	      easy	 tm				 sql execute elapsed time		 0
SERVICE_MODULE	      easy	 tm				 opened cursors cumulative		 0
SERVICE_MODULE	      easy	 tm				 session logical reads			 0
SERVICE_MODULE	      easy	 tm				 physical reads 			 0
SERVICE_MODULE	      easy	 tm				 physical writes			 0

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE	      easy	 tm				 redo size				 0
SERVICE_MODULE	      easy	 tm				 user commits				 0
SERVICE_MODULE	      easy	 tm				 workarea executions - optimal		 0
SERVICE_MODULE	      easy	 tm				 workarea executions - onepass		 0
SERVICE_MODULE	      easy	 tm				 workarea executions - multipas 	 0
								 s

SERVICE_MODULE	      easy	 tm				 session cursor cache hits		 0
SERVICE_MODULE	      easy	 tm				 user rollbacks 			 0
SERVICE_MODULE	      easy	 tm				 db block changes			 0
SERVICE_MODULE	      easy	 tm				 gc cr blocks received			 0

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE	      easy	 tm				 gc cr block receive time		 0
SERVICE_MODULE	      easy	 tm				 gc current blocks received		 0
SERVICE_MODULE	      easy	 tm				 gc current block receive time		 0
SERVICE_MODULE	      easy	 tm				 cluster wait time			 0
SERVICE_MODULE	      easy	 tm				 concurrency wait time			 0
SERVICE_MODULE	      easy	 tm				 application wait time			 0
SERVICE_MODULE	      easy	 tm				 user I/O wait time			 0

已选择27行。

SQL> l
  1* select aggregation_type,service_name,module,action,stat_name,value from v$serv_mod_act_stats
SQL> /

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE_ACTION easy	 tm	    ta			 user calls				 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 DB time				 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 DB CPU 				 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 parse count (total)			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 parse time elapsed			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 execute count				 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 sql execute elapsed time		 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 opened cursors cumulative		 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 session logical reads			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 physical reads 			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 physical writes			 0

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE_ACTION easy	 tm	    ta			 redo size				 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 user commits				 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 workarea executions - optimal		 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 workarea executions - onepass		 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 workarea executions - multipas 	 0
								 s

SERVICE_MODULE_ACTION easy	 tm	    ta			 session cursor cache hits		 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 user rollbacks 			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 db block changes			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 gc cr blocks received			 0

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE_ACTION easy	 tm	    ta			 gc cr block receive time		 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 gc current blocks received		 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 gc current block receive time		 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 cluster wait time			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 concurrency wait time			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 application wait time			 0
SERVICE_MODULE_ACTION easy	 tm	    ta			 user I/O wait time			 0
SERVICE_MODULE	      easy	 tm				 user calls				 0
SERVICE_MODULE	      easy	 tm				 DB time				 0
SERVICE_MODULE	      easy	 tm				 DB CPU 				 0
SERVICE_MODULE	      easy	 tm				 parse count (total)			 0

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE	      easy	 tm				 parse time elapsed			 0
SERVICE_MODULE	      easy	 tm				 execute count				 0
SERVICE_MODULE	      easy	 tm				 sql execute elapsed time		 0
SERVICE_MODULE	      easy	 tm				 opened cursors cumulative		 0
SERVICE_MODULE	      easy	 tm				 session logical reads			 0
SERVICE_MODULE	      easy	 tm				 physical reads 			 0
SERVICE_MODULE	      easy	 tm				 physical writes			 0
SERVICE_MODULE	      easy	 tm				 redo size				 0
SERVICE_MODULE	      easy	 tm				 user commits				 0
SERVICE_MODULE	      easy	 tm				 workarea executions - optimal		 0
SERVICE_MODULE	      easy	 tm				 workarea executions - onepass		 0

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE	      easy	 tm				 workarea executions - multipas 	 0
								 s

SERVICE_MODULE	      easy	 tm				 session cursor cache hits		 0
SERVICE_MODULE	      easy	 tm				 user rollbacks 			 0
SERVICE_MODULE	      easy	 tm				 db block changes			 0
SERVICE_MODULE	      easy	 tm				 gc cr blocks received			 0
SERVICE_MODULE	      easy	 tm				 gc cr block receive time		 0
SERVICE_MODULE	      easy	 tm				 gc current blocks received		 0
SERVICE_MODULE	      easy	 tm				 gc current block receive time		 0
SERVICE_MODULE	      easy	 tm				 cluster wait time			 0

AGGREGATION_TYPE      SERVICE_NA MODULE     ACTION		 STAT_NAME			     VALUE
--------------------- ---------- ---------- -------------------- ------------------------------ ----------
SERVICE_MODULE	      easy	 tm				 concurrency wait time			 0
SERVICE_MODULE	      easy	 tm				 application wait time			 0
SERVICE_MODULE	      easy	 tm				 user I/O wait time			 0

已选择54行。
Copy after login

视图:v$client_stats
SQL> l
  1* select client_identifier,stat_name,value from v$client_stats
SQL> /

CLIENT_IDE STAT_NAME			       VALUE
---------- ------------------------------ ----------
es	   user calls				  28
es	   DB time			       45170
es	   DB CPU			       20997
es	   parse count (total)			  15
es	   parse time elapsed		       13894
es	   execute count			  14
es	   sql execute elapsed time		8309
es	   opened cursors cumulative		  19
es	   session logical reads		  35
es	   physical reads			   0
es	   physical writes			   0

CLIENT_IDE STAT_NAME			       VALUE
---------- ------------------------------ ----------
es	   redo size				1976
es	   user commits 			   0
es	   workarea executions - optimal	   0
es	   workarea executions - onepass	   0
es	   workarea executions - multipas	   0
	   s

es	   session cursor cache hits		   6
es	   user rollbacks			   0
es	   db block changes			  12
es	   gc cr blocks received		   0

CLIENT_IDE STAT_NAME			       VALUE
---------- ------------------------------ ----------
es	   gc cr block receive time		   0
es	   gc current blocks received		   0
es	   gc current block receive time	   0
es	   cluster wait time			   0
es	   concurrency wait time		   0
es	   application wait time		   0
es	   user I/O wait time			   0

已选择27行。
Copy after login

注意:在service级别的统计信息总是开启的,例如
SQL> l
  1* select aggregation_type from dba_enabled_aggregations
SQL> /

AGGREGATION_TYPE
---------------------
CLIENT_ID
SERVICE_MODULE
SERVICE_MODULE_ACTION

SQL> select * from v$service_stats;

SERVICE_NAME_HASH SERVICE_NA	STAT_ID STAT_NAME			    VALUE
----------------- ---------- ---------- ------------------------------ ----------
       3427055676 SYS$USERS  2666645286 logons cumulative		       48
	165959219 SYS$BACKGR 2666645286 logons cumulative		       47
		  OUND

       3271786180 easy	     2666645286 logons cumulative		       19
       1671308587 jj	     2666645286 logons cumulative			0
       2349869997 pointXDB   2666645286 logons cumulative			0
       3427055676 SYS$USERS  2882015696 user calls			      244
       ......

       3271786180 easy	     3332107451 user I/O wait time		  1756694
       1671308587 jj	     3332107451 user I/O wait time			0
       2349869997 pointXDB   3332107451 user I/O wait time			0

已选择140行。
Copy after login



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the problem of mysql cannot open shared library How to solve the problem of mysql cannot open shared library Mar 04, 2025 pm 04:01 PM

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

Reduce the use of MySQL memory in Docker Reduce the use of MySQL memory in Docker Mar 04, 2025 pm 03:52 PM

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Run MySQl in Linux (with/without podman container with phpmyadmin) Run MySQl in Linux (with/without podman container with phpmyadmin) Mar 04, 2025 pm 03:54 PM

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

What is SQLite? Comprehensive overview What is SQLite? Comprehensive overview Mar 04, 2025 pm 03:55 PM

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Running multiple MySQL versions on MacOS: A step-by-step guide Running multiple MySQL versions on MacOS: A step-by-step guide Mar 04, 2025 pm 03:49 PM

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

See all articles