Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
169 views31 pages

Oracle Metrics

The document discusses selecting a unit of work based on the bottleneck. It provides guidance on identifying bottlenecks such as CPU, I/O read, I/O write, concurrency, network, and memory. It also provides statistics and metrics for evaluating CPU and I/O utilization and requirements to identify bottlenecks.

Uploaded by

eramitsaroha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
169 views31 pages

Oracle Metrics

The document discusses selecting a unit of work based on the bottleneck. It provides guidance on identifying bottlenecks such as CPU, I/O read, I/O write, concurrency, network, and memory. It also provides statistics and metrics for evaluating CPU and I/O utilization and requirements to identify bottlenecks.

Uploaded by

eramitsaroha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
You are on page 1/ 31

Selecting a unit of work based on the bottleneck

Bottleneck Focus Area


CPU Logical IO
CPU Latching
IO Read Physical IO
IO Write DML
Concurrency Locking
Commits
Network Transfers

Memory Activity

Load Profile & Instance


activity (v$sysstat) Transaction

Redo size (bytes)

CPU used by this session (centiseconds)

CPU seconds consumed per second

Logical IO
Physical IO

IO write bottleneck

v$osstat busy time (centiseconds)

CPU requirement Time model statistics


v$sysstat

IO requirement Oracle9iR2 and earlier versions

versions later than Oracle9iR2


CPU capacity

IO capacity

CPU utilization Oracle CPU


OS CPU

IO utilization
Instance Statistic
db block gets + consistent gets
v$latch gets, misses, sleeps
physical reads, physical read requests
db block changes, redo writes, redo bytes
enqueue requests, enqueue waits
user commits
SQL*Net roundtrips to/from client,
SQL*Net roundtrips to/from dblink
sorts (memory), sorts (rows),
v$system_event direct path write temp

user commits + user rollback


1993 (commit+rollback) / 149.97min (elapsed time) = 13.28932453trx/min
13.28932453trx/min / 60sec = 0.22148874trx/sec

1675794centi /100 = 16757sec


1675794centi /149.97min = 11174.19483897centi/min

11174.19483897/60sec = 186.23658065centi/sec
186.23658065/100 = 1.86236581CPU sec/sec
buffer gets + consistent gets
block reads
block requests
block gets
disk reads
physical reads

db block changes

"OS CPU" consumption, around 1-10% higher than "Oracle CPU"

DB CPU + background CPU time (microseconds - more accurate)


CPU used by this session (centiseconds)

Server process read IO operations


= sum(v$filestat.phyrds)
Server process read MBs
= sum(v$filestat.phyblkrd X block size) / (1024 X 1024)
Database writer and server process write IO ops
= sum(v$filestat.phywrts)
Database writer and server process write MBs
= sum(v$filestat.phyblkwrt X block size) / (1024 X 1024)
Log writer write IO operations
= v$sysstat.redo writes
Log writer write MBs
= (v$sysstat.redo size) / (1024 X 1024)

Server process read IO operations


= v$sysstat.physical read IO requests
Server process read MBs
= (v$sysstat.physical reads X block size) / (1024 X 1024)
Database writer and server process write IO ops
= v$sysstat.physical write IO requests
Database writer and server process write MBs
= (v$sysstat.physical writes X block size) / (1024 X 1024)
Log writer write IO operations
= v$sysstat.redo writes
Log writer write MBs
= (v$sysstat.redo size) / (1024 X 1024)

(50,300ops/149.97m) /60sec = 5.59IOPS

149.97mins (elapsed time) x 2 CPU cores (# of CPU cores) = 299.94min

get MB/s or IOPS


each disk is pegged to have 100IOPS, but will degrade according to RAID level

(DB CPU + background CPU time) / (elapsed time x # of cores)


(v$osstat.busytime/100) / (elapsed time x # of cores)

Utilization = Requirement/Capacity
5.59IOPS/250IOPS = 2.2%
DBMS_XPLAN DISPLAY -
( prediction information, accurate tuning
result can not be known.)

- PREPARE_RECORDS

- VALIDATE_FORMAT
SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY);

SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY(NULL, NULL, 'BASIC'));

SELECT * FROM TABLE( DBMS_XPLAN.DISPLAY(NULL, NULL, 'TYPICAL'));

SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY(NULL, NULL, 'ALL'));


SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY(NULL, NULL, 'ALL'));

SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY(NULL, NULL, 'OUTLINE'));


SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY(NULL, NULL, 'ADVANCED'));
division Item
PLAN information ID

Operation
Name
Additional Information N/A

division Item
PLAN information ID

Operation
Name
Rows
Bytes
Cost(% CPU)

Time
Additional Information Predicate

Information

division Item
PLAN information ID

Operation
Name
Rows
Bytes
Cost(% CPU)

Time
Additional Information Predicate
Additional Information

Information

Query

Block

Column

Projection
Information

division Item
PLAN information ID

Operation
Name
Rows
Bytes
Cost(% CPU)

Time
Additional Information Predicate

Information

Outline

Data
division Item
PLAN information ID

Operation
Name
Rows
Bytes
Cost(% CPU)

Time
Additional Information Predicate

Information
Query 

Block
Column
Projection
Information
Outline
Data
Explanation
The ID of each operation. If there is a *, the
information of the corresponding ID is displayed
in the additional information field.
Show row-level access information
Shows information of the object to access
N/A

Explanation
The ID of each operation. If there is a *, the
information of the corresponding ID is displayed
in the additional information field.
Show row-level access information
Shows information of the object to access
Expected Rows in Each Operation
Expected Byte in Each Operation
Expected Cost in each Oepration (The contents
in parentheses are estimates of CPU Cost)

Estimated execution time in each operation


The conditions used in the WHERE clause in
SQL show the information that applies to each
operation
It is the most necessary and most informative
information when tuning SQL.
Information that developers must know and
understand
10046 Information not shown in Trace

Explanation
The ID of each operation. If there is a *, the
information of the corresponding ID is displayed
in the additional information field.
Show row-level access information
Shows information of the object to access
Expected Rows in Each Operation
Expected Byte in Each Operation
Expected Cost in each Oepration (The contents
in parentheses are estimates of CPU Cost)

Estimated execution time in each operation


The conditions used in the WHERE clause in
SQL show the information that applies to each
operation
It is the most necessary and most informative
information when tuning SQL.
Information that developers must know and
understand
10046 Information not shown in Trace
In SQL, each set such as View and Inline View
is interpreted as a query block and given its
name
If the optimizer automatically gives you a name
and you want to give it a name, use the / * +
QB_NAME (name) * / hint
If Predicate Information shows only the
condition column used in the WHERE clause,
the Column Projection Information shows all the
columns used in the operation

Explanation
The ID of each operation. If there is a *, the
information of the corresponding ID is displayed
in the additional information field.
Show row-level access information
Shows information of the object to access
Expected Rows in Each Operation
Expected Byte in Each Operation
Expected Cost in each Oepration (The contents
in parentheses are estimates of CPU Cost)

Estimated execution time in each operation


The conditions used in the WHERE clause in
SQL show the information that applies to each
operation
It is the most necessary and most informative
information when tuning SQL.
Information that developers must know and
understand
10046 Information not shown in Trace
Providing the most powerful information when
tuning SQL
Hidden Hint that the optimizer refers to when
performing SQL
Most of the hints used here are based on the
query block name.
Until this information was available, tuning
could only be done with known hints, but using
it would allow the previously untunable parts.

Undocument Format, so it is still in use but it is


gradually expanding.
Explanation
The ID of each operation. If there is a *, the
information of the corresponding ID is displayed
in the additional information field.
Show row-level access information
Shows information of the object to access
Expected Rows in Each Operation
Expected Byte in Each Operation
Expected Cost in each Oepration (The contents
in parentheses are estimates of CPU Cost)

Estimated execution time in each operation


The conditions used in the WHERE clause in
SQL show the information that applies to each
operation
In SQL, each set such as View and Inline View
is interpreted as a query block and given its
name
Show all columns used in the operation

Hidden Hint that the optimizer refers to when


performing SQL
Oracle-IO related wait events
and their IO characteristics
Event Operation
db file sequential read Read
db file scattered read Read
db file parallel write Write
log file parallel write Write
log file sync Write
direct path write Write
direct path read Read
direct path write temp Write
direct path read temp Read

Key redo-related wait events


Wait Event Most Likely Posted
log buffer space By
Server process

latch free: redo allocation Server process

latch free: redo copy


Server process
log file sync Server process or
database writer
log file parallel write Log writer

log file switch (checkpoint Server process


incomplete)

log file switch (archive Server process


incomplete)
Blocks
Single
Multiple
Multiple
Multiple
N/A
Multiple
Multiple
Multiple
Multiple

Why Posted
The process is waiting to get space in the redo log buffer.
The process is sleeping while acquiring one of the redo allocation
latches.

The process is sleeping while acquiring one of the redo copy latches.
The process is waiting for its commit to complete or its trigger to the log
writer to write to complete.
The log writer is waiting for the operating system to complete its write
request.
The log writer cannot write into the next online redo log group because
the database writer has not finished a checkpoint that references redo in
the next redo log group.
The log writer cannot write into the next online redo log group because
the archive background process has not finished archiving the next redo
log group.
Numeric notations
Decimal Scientific
1000000 1.0x10(6)
0.000001 1.0x10(-6)

Units of time
Abbreviation Unit
hr Hour
min Minute
s, sec Second
ms Millisecond
µs Microsecond
ns Nanosecond

Units of binary capacity


Symbol Unit
b Bit
B Byte
KB Kilobyte
MB Megabyte
GB Gigabyte
TB Terabyte
PB Petabyte
EB Exabyte
ZB Zettabyte
YB Yottabyte

Forecasting Mathematical symbols


Symbol Represents
trx Transaction
λ Arrival rate
St Service time
Qt Queue time or wait time
Rt Response time
Q Queue length
U Utilization or percent busy
M Number of servers
m Number of servers per queue

DISK units
http://jamesmorle.wordpress
.com/2010/09/06/sane-
one 15k drive can sustain at least san2010-storage-arrays-
100MB/s of sequential I/O ready-aim-fire/
a single drive could support 200 random
writes per second
Floating Point
1000000
0.000001

Scientific Notation
3600 sec
60 sec
1.0 sec
1.0x10(-3) sec
1.0x10(-6) sec
1.0x10(-9) sec

Size Power of 2 Equivalent


1 or 0
8 bits
1000 2^10 bits
1000000 1024KB 2^20 bytes
1000000000 1024MB 2^30 bytes
1000000000000 1024GB 2^40 bytes
1,000,000,000,000,000 1024TB 2^50 bytes
1,000,000,000,000,000,000 1024PB 2^60 bytes
1,000,000,000,000,000,000,000 1024EB 2^70 bytes
1,000,000,000,000,000,000,000,000 1024ZB 2^80 bytes

Example
10 trx
10 trx/sec
1 sec/trx
0.120 sec/trx
1.12 sec/trx
0.24 trx
0.833 or 83.3%
12 CPU cores or 450 IO devices
12 CPU cores or 1 for IO subsystems
10.1 10.2
SAMPLE_ID SAMPLE_ID
WHEN SAMPLE_TIME SAMPLE_TIME

SESSION_ID SESSION_ID
SESSION_SERIAL# SESSION_SERIAL#
SESSION_TYPE SESSION_TYPE

USER_ID USER_ID
SESSION
SERVICE_HASH SERVICE_HASH
PROGRAM PROGRAM
MODULE MODULE
ACTION ACTION
CLIENT_ID CLIENT_ID
SQL_ID SQL_ID

SQL_CHILD_NUMBER SQL_CHILD_NUMBER
SQL_OPCODE SQL_OPCODE

FORCE_MATCHING_SIGNATURE

SQL_PLAN_HASH_VALUE SQL_PLAN_HASH_VALUE

SQL

QC_SESSION_ID QC_INSTANCE_ID
QC_INSTANCE_ID QC_SESSION_ID

EVENT EVENT
EVENT_ID EVENT_ID
EVENT# EVENT#
SEQ# SEQ#
P1TEXT
P1 P1
P2TEXT
P2 P2
P3TEXT
WAIT P3 P3
WAIT_CLASS
WAIT_CLASS_ID
CURRENT_OBJ# CURRENT_OBJ#
CURRENT_FILE# CURRENT_FILE#
CURRENT_BLOCK# CURRENT_BLOCK#
WAIT_TIME WAIT_TIME
STATE
SESSION_STATE SESSION_STATE
DURATION TIME_WAITED TIME_WAITED
BLOCKING_SESSION
BLOCKING_SESSION_STATUS
LOCK BLOCKING_SESSION_SERIAL#

XID
10.2.0.3 11.1
SAMPLE_ID SAMPLE_ID
SAMPLE_TIME SAMPLE_TIME

SESSION_ID SESSION_ID
SESSION_SERIAL# SESSION_SERIAL#
SESSION_TYPE SESSION_TYPE
FLAGS
USER_ID USER_ID
SERVICE_HASH SERVICE_HASH
PROGRAM PROGRAM
MODULE MODULE
ACTION ACTION
CLIENT_ID CLIENT_ID
SQL_ID SQL_ID

SQL_CHILD_NUMBER SQL_CHILD_NUMBER
SQL_OPCODE SQL_OPCODE

FORCE_MATCHING_SIGNATURE FORCE_MATCHING_SIGNATURE
TOP_LEVEL_SQL_ID
TOP_LEVEL_SQL_OPCODE
SQL_PLAN_HASH_VALUE SQL_PLAN_HASH_VALUE
SQL_PLAN_LINE_ID
SQL_PLAN_OPERATION
SQL_PLAN_OPTIONS
SQL_EXEC_ID
SQL_EXEC_START
PLSQL_ENTRY_OBJECT_ID PLSQL_ENTRY_OBJECT_ID
PLSQL_ENTRY_SUBPROGRAM_ID PLSQL_ENTRY_SUBPROGRAM_ID
PLSQL_OBJECT_ID PLSQL_OBJECT_ID
PLSQL_SUBPROGRAM_ID PLSQL_SUBPROGRAM_ID
QC_INSTANCE_ID QC_INSTANCE_ID
QC_SESSION_ID QC_SESSION_ID
QC_SESSION_SERIAL#
EVENT EVENT
EVENT_ID EVENT_ID
EVENT# EVENT#
SEQ# SEQ#
P1TEXT P1TEXT
P1 P1
P2TEXT P2TEXT
P2 P2
P3TEXT P3TEXT
P3 P3
WAIT_CLASS WAIT_CLASS
WAIT_CLASS_ID WAIT_CLASS_ID
CURRENT_OBJ# CURRENT_OBJ#
CURRENT_FILE# CURRENT_FILE#
CURRENT_BLOCK# CURRENT_BLOCK#
CURRENT_ROW#

CONSUMER_GROUP_ID
WAIT_TIME WAIT_TIME
SESSION_STATE SESSION_STATE
TIME_WAITED TIME_WAITED
BLOCKING_SESSION BLOCKING_SESSION_STATUS
BLOCKING_SESSION_STATUS BLOCKING_SESSION
BLOCKING_SESSION_SERIAL# BLOCKING_SESSION_SERIAL#

XID XID
REMOTE_INSTANCE#

IN_CONNECTION_MGMT
IN_PARSE
IN_HARD_PARSE
IN_SQL_EXECUTION
IN_PLSQL_EXECUTION
IN_PLSQL_RPC
IN_PLSQL_COMPILATION
IN_JAVA_EXECUTION
IN_BIND
IN_CURSOR_CLOSE
11.2.0
SAMPLE_ID
SAMPLE_TIME
IS_AWR_SAMPLE
SESSION_ID
SESSION_SERIAL#
SESSION_TYPE
FLAGS
USER_ID
SERVICE_HASH
PROGRAM
MODULE
ACTION
CLIENT_ID
SQL_ID
IS_SQLID_CURRENT
SQL_CHILD_NUMBER
SQL_OPCODE
SQL_OPNAME
FORCE_MATCHING_SIGNATURE
TOP_LEVEL_SQL_ID
TOP_LEVEL_SQL_OPCODE
SQL_PLAN_HASH_VALUE
SQL_PLAN_LINE_ID
SQL_PLAN_OPERATION
SQL_PLAN_OPTIONS
SQL_EXEC_ID
SQL_EXEC_START
PLSQL_ENTRY_OBJECT_ID
PLSQL_ENTRY_SUBPROGRAM_ID
PLSQL_OBJECT_ID
PLSQL_SUBPROGRAM_ID
QC_INSTANCE_ID
QC_SESSION_ID
QC_SESSION_SERIAL#
EVENT
EVENT_ID
EVENT#
SEQ#
P1TEXT
P1
P2TEXT
P2
P3TEXT
P3
WAIT_CLASS
WAIT_CLASS_ID
CURRENT_OBJ#
CURRENT_FILE#
CURRENT_BLOCK#
CURRENT_ROW#
TOP_LEVEL_CALL#
TOP_LEVEL_CALL_NAME
CONSUMER_GROUP_ID
WAIT_TIME
SESSION_STATE
TIME_WAITED
BLOCKING_SESSION_STATUS
BLOCKING_SESSION
BLOCKING_SESSION_SERIAL#
BLOCKING_INST_ID
BLOCKING_HANGCHAIN_INFO
XID
REMOTE_INSTANCE#
TIME_MODEL
IN_CONNECTION_MGMT
IN_PARSE
IN_HARD_PARSE
IN_SQL_EXECUTION
IN_PLSQL_EXECUTION
IN_PLSQL_RPC
IN_PLSQL_COMPILATION
IN_JAVA_EXECUTION
IN_BIND
IN_CURSOR_CLOSE
IN_SEQUENCE_LOAD
CAPTURE_OVERHEAD
REPLAY_OVERHEAD
IS_CAPTURED
IS_REPLAYED
MACHINE
PORT
ECID
TM_DELTA_TIME
TM_DELTA_CPU_TIME
TM_DELTA_DB_TIME
DELTA_TIME
DELTA_READ_IO_REQUESTS
DELTA_WRITE_IO_REQUESTS
DELTA_READ_IO_BYTES
DELTA_WRITE_IO_BYTES
DELTA_INTERCONNECT_IO_BYTES
PGA_ALLOCATED
TEMP_SPACE_ALLOCATE
10.1
67 Views
DBA_HIST_ACTIVE_SESS_HISTORY
DBA_HIST_BASELINE
DBA_HIST_BG_EVENT_SUMMARY
DBA_HIST_BUFFER_POOL_STAT
DBA_HIST_CR_BLOCK_SERVER
DBA_HIST_CURRENT_BLOCK_SERVER
DBA_HIST_DATABASE_INSTANCE
DBA_HIST_DATAFILE
DBA_HIST_DB_CACHE_ADVICE
DBA_HIST_DLM_MISC
DBA_HIST_ENQUEUE_STAT
DBA_HIST_EVENT_NAME
DBA_HIST_FILEMETRIC_HISTORY
DBA_HIST_FILESTATXS
DBA_HIST_INSTANCE_RECOVERY
DBA_HIST_JAVA_POOL_ADVICE
DBA_HIST_LATCH
DBA_HIST_LATCH_CHILDREN
DBA_HIST_LATCH_MISSES_SUMMARY
DBA_HIST_LATCH_NAME
DBA_HIST_LATCH_PARENT
DBA_HIST_LIBRARYCACHE
DBA_HIST_LOG
DBA_HIST_METRIC_NAME
DBA_HIST_MTTR_TARGET_ADVICE
DBA_HIST_OPTIMIZER_ENV
DBA_HIST_OSSTAT
DBA_HIST_OSSTAT_NAME
DBA_HIST_PARAMETER
DBA_HIST_PARAMETER_NAME
DBA_HIST_PGA_TARGET_ADVICE
DBA_HIST_PGASTAT
DBA_HIST_RESOURCE_LIMIT
DBA_HIST_ROLLSTAT
DBA_HIST_ROWCACHE_SUMMARY
DBA_HIST_SEG_STAT
DBA_HIST_SEG_STAT_OBJ
DBA_HIST_SERVICE_NAME
DBA_HIST_SERVICE_STAT
DBA_HIST_SERVICE_WAIT_CLASS
DBA_HIST_SESSMETRIC_HISTORY
DBA_HIST_SGA
DBA_HIST_SGASTAT
DBA_HIST_SHARED_POOL_ADVICE
DBA_HIST_SNAP_ERROR
DBA_HIST_SNAPSHOT
DBA_HIST_SQL_PLAN
DBA_HIST_SQL_SUMMARY
DBA_HIST_SQL_WORKAREA_HSTGRM
DBA_HIST_SQLBIND
DBA_HIST_SQLSTAT
DBA_HIST_SQLTEXT
DBA_HIST_STAT_NAME
DBA_HIST_SYS_TIME_MODEL
DBA_HIST_SYSMETRIC_HISTORY
DBA_HIST_SYSMETRIC_SUMMARY
DBA_HIST_SYSSTAT
DBA_HIST_SYSTEM_EVENT
DBA_HIST_TABLESPACE_STAT
DBA_HIST_TBSPC_SPACE_USAGE
DBA_HIST_TEMPFILE
DBA_HIST_TEMPSTATXS
DBA_HIST_THREAD
DBA_HIST_UNDOSTAT
DBA_HIST_WAITCLASSMET_HISTORY
DBA_HIST_WAITSTAT
DBA_HIST_WR_CONTROL
10.2 11.1
78 Views 99 Views
DBA_HIST_ACTIVE_SESS_HISTORY DBA_HIST_ACTIVE_SESS_HISTORY
DBA_HIST_BASELINE DBA_HIST_BASELINE
DBA_HIST_BG_EVENT_SUMMARY DBA_HIST_BASELINE_DETAILS
DBA_HIST_BUFFER_POOL_STAT DBA_HIST_BASELINE_METADATA
DBA_HIST_BUFFERED_QUEUES DBA_HIST_BASELINE_TEMPLATE
DBA_HIST_BUFFERED_SUBSCRIBERS DBA_HIST_BG_EVENT_SUMMARY
DBA_HIST_COMP_IOSTAT DBA_HIST_BUFFER_POOL_STAT
DBA_HIST_CR_BLOCK_SERVER DBA_HIST_BUFFERED_QUEUES
DBA_HIST_CURRENT_BLOCK_SERVER DBA_HIST_BUFFERED_SUBSCRIBERS
DBA_HIST_DATABASE_INSTANCE DBA_HIST_CLUSTER_INTERCON
DBA_HIST_DATAFILE DBA_HIST_COLORED_SQL
DBA_HIST_DB_CACHE_ADVICE DBA_HIST_COMP_IOSTAT
DBA_HIST_DLM_MISC DBA_HIST_CR_BLOCK_SERVER
DBA_HIST_ENQUEUE_STAT DBA_HIST_CURRENT_BLOCK_SERVER
DBA_HIST_EVENT_NAME DBA_HIST_DATABASE_INSTANCE
DBA_HIST_FILEMETRIC_HISTORY DBA_HIST_DATAFILE
DBA_HIST_FILESTATXS DBA_HIST_DB_CACHE_ADVICE
DBA_HIST_INST_CACHE_TRANSFER DBA_HIST_DLM_MISC
DBA_HIST_INSTANCE_RECOVERY DBA_HIST_ENQUEUE_STAT
DBA_HIST_JAVA_POOL_ADVICE DBA_HIST_EVENT_HISTOGRAM
DBA_HIST_LATCH DBA_HIST_EVENT_NAME
DBA_HIST_LATCH_CHILDREN DBA_HIST_FILEMETRIC_HISTORY
DBA_HIST_LATCH_MISSES_SUMMARY DBA_HIST_FILESTATXS
DBA_HIST_LATCH_NAME DBA_HIST_IC_CLIENT_STATS
DBA_HIST_LATCH_PARENT DBA_HIST_IC_DEVICE_STATS
DBA_HIST_LIBRARYCACHE DBA_HIST_INST_CACHE_TRANSFER
DBA_HIST_LOG DBA_HIST_INSTANCE_RECOVERY
DBA_HIST_METRIC_NAME DBA_HIST_INTERCONNECT_PINGS
DBA_HIST_MTTR_TARGET_ADVICE DBA_HIST_IOSTAT_FILETYPE
DBA_HIST_OPTIMIZER_ENV DBA_HIST_IOSTAT_FILETYPE_NAME
DBA_HIST_OSSTAT DBA_HIST_IOSTAT_FUNCTION
DBA_HIST_OSSTAT_NAME DBA_HIST_IOSTAT_FUNCTION_NAME
DBA_HIST_PARAMETER DBA_HIST_JAVA_POOL_ADVICE
DBA_HIST_PARAMETER_NAME DBA_HIST_LATCH
DBA_HIST_PGA_TARGET_ADVICE DBA_HIST_LATCH_CHILDREN
DBA_HIST_PGASTAT DBA_HIST_LATCH_MISSES_SUMMARY
DBA_HIST_PROCESS_MEM_SUMMARY DBA_HIST_LATCH_NAME
DBA_HIST_RESOURCE_LIMIT DBA_HIST_LATCH_PARENT
DBA_HIST_ROWCACHE_SUMMARY DBA_HIST_LIBRARYCACHE
DBA_HIST_RULE_SET DBA_HIST_LOG
DBA_HIST_SEG_STAT DBA_HIST_MEM_DYNAMIC_COMP
DBA_HIST_SEG_STAT_OBJ DBA_HIST_MEMORY_RESIZE_OPS
DBA_HIST_SERVICE_NAME DBA_HIST_MEMORY_TARGET_ADVICE
DBA_HIST_SERVICE_STAT DBA_HIST_METRIC_NAME
DBA_HIST_SERVICE_WAIT_CLASS DBA_HIST_MTTR_TARGET_ADVICE
DBA_HIST_SESS_TIME_STATS DBA_HIST_MUTEX_SLEEP
DBA_HIST_SESSMETRIC_HISTORY DBA_HIST_OPTIMIZER_ENV
DBA_HIST_SGA DBA_HIST_OSSTAT
DBA_HIST_SGA_TARGET_ADVICE DBA_HIST_OSSTAT_NAME
DBA_HIST_SGASTAT DBA_HIST_PARAMETER
DBA_HIST_SHARED_POOL_ADVICE DBA_HIST_PARAMETER_NAME
DBA_HIST_SNAP_ERROR DBA_HIST_PERSISTENT_QUEUES
DBA_HIST_SNAPSHOT DBA_HIST_PERSISTENT_SUBS
DBA_HIST_SQL_BIND_METADATA DBA_HIST_PGA_TARGET_ADVICE
DBA_HIST_SQL_PLAN DBA_HIST_PGASTAT
DBA_HIST_SQL_SUMMARY DBA_HIST_PROCESS_MEM_SUMMARY
DBA_HIST_SQL_WORKAREA_HSTGRM DBA_HIST_RESOURCE_LIMIT
DBA_HIST_SQLBIND DBA_HIST_ROWCACHE_SUMMARY
DBA_HIST_SQLSTAT DBA_HIST_RSRC_CONSUMER_GROUP
DBA_HIST_SQLTEXT DBA_HIST_RSRC_PLAN
DBA_HIST_STAT_NAME DBA_HIST_RULE_SET
DBA_HIST_STREAMS_APPLY_SUM DBA_HIST_SEG_STAT
DBA_HIST_STREAMS_CAPTURE DBA_HIST_SEG_STAT_OBJ
DBA_HIST_STREAMS_POOL_ADVICE DBA_HIST_SERVICE_NAME
DBA_HIST_SYS_TIME_MODEL DBA_HIST_SERVICE_STAT
DBA_HIST_SYSMETRIC_HISTORY DBA_HIST_SERVICE_WAIT_CLASS
DBA_HIST_SYSMETRIC_SUMMARY DBA_HIST_SESS_TIME_STATS
DBA_HIST_SYSSTAT DBA_HIST_SESSMETRIC_HISTORY
DBA_HIST_SYSTEM_EVENT DBA_HIST_SGA
DBA_HIST_TABLESPACE_STAT DBA_HIST_SGA_TARGET_ADVICE
DBA_HIST_TBSPC_SPACE_USAGE DBA_HIST_SGASTAT
DBA_HIST_TEMPFILE DBA_HIST_SHARED_POOL_ADVICE
DBA_HIST_TEMPSTATXS DBA_HIST_SNAP_ERROR
DBA_HIST_THREAD DBA_HIST_SNAPSHOT
DBA_HIST_UNDOSTAT DBA_HIST_SQL_BIND_METADATA
DBA_HIST_WAITCLASSMET_HISTORY DBA_HIST_SQL_PLAN
DBA_HIST_WAITSTAT DBA_HIST_SQL_SUMMARY
DBA_HIST_WR_CONTROL DBA_HIST_SQL_WORKAREA_HSTGRM
DBA_HIST_SQLBIND
DBA_HIST_SQLSTAT
DBA_HIST_SQLTEXT
DBA_HIST_STAT_NAME
DBA_HIST_STREAMS_APPLY_SUM
DBA_HIST_STREAMS_CAPTURE
DBA_HIST_STREAMS_POOL_ADVICE
DBA_HIST_SYS_TIME_MODEL
DBA_HIST_SYSMETRIC_HISTORY
DBA_HIST_SYSMETRIC_SUMMARY
DBA_HIST_SYSSTAT
DBA_HIST_SYSTEM_EVENT
DBA_HIST_TABLESPACE_STAT
DBA_HIST_TBSPC_SPACE_USAGE
DBA_HIST_TEMPFILE
DBA_HIST_TEMPSTATXS
DBA_HIST_THREAD
DBA_HIST_UNDOSTAT
DBA_HIST_WAITCLASSMET_HISTORY
DBA_HIST_WAITSTAT
DBA_HIST_WR_CONTROL
11.2.0
108 Views
DBA_HIST_ACTIVE_SESS_HISTORY
DBA_HIST_BASELINE
DBA_HIST_BASELINE_DETAILS
DBA_HIST_BASELINE_METADATA
DBA_HIST_BASELINE_TEMPLATE
DBA_HIST_BG_EVENT_SUMMARY
DBA_HIST_BUFFER_POOL_STAT
DBA_HIST_BUFFERED_QUEUES
DBA_HIST_BUFFERED_SUBSCRIBERS
DBA_HIST_CLUSTER_INTERCON
DBA_HIST_COLORED_SQL
DBA_HIST_COMP_IOSTAT
DBA_HIST_CR_BLOCK_SERVER
DBA_HIST_CURRENT_BLOCK_SERVER
DBA_HIST_DATABASE_INSTANCE
DBA_HIST_DATAFILE
DBA_HIST_DB_CACHE_ADVICE
DBA_HIST_DISPATCHER
DBA_HIST_DLM_MISC
DBA_HIST_DYN_REMASTER_STATS
DBA_HIST_ENQUEUE_STAT
DBA_HIST_EVENT_HISTOGRAM
DBA_HIST_EVENT_NAME
DBA_HIST_FILEMETRIC_HISTORY
DBA_HIST_FILESTATXS
DBA_HIST_IC_CLIENT_STATS
DBA_HIST_IC_DEVICE_STATS
DBA_HIST_INST_CACHE_TRANSFER
DBA_HIST_INSTANCE_RECOVERY
DBA_HIST_INTERCONNECT_PINGS
DBA_HIST_IOSTAT_DETAIL
DBA_HIST_IOSTAT_FILETYPE
DBA_HIST_IOSTAT_FILETYPE_NAME
DBA_HIST_IOSTAT_FUNCTION
DBA_HIST_IOSTAT_FUNCTION_NAME
DBA_HIST_JAVA_POOL_ADVICE
DBA_HIST_LATCH
DBA_HIST_LATCH_CHILDREN
DBA_HIST_LATCH_MISSES_SUMMARY
DBA_HIST_LATCH_NAME
DBA_HIST_LATCH_PARENT
DBA_HIST_LIBRARYCACHE
DBA_HIST_LOG
DBA_HIST_MEM_DYNAMIC_COMP
DBA_HIST_MEMORY_RESIZE_OPS
DBA_HIST_MEMORY_TARGET_ADVICE
DBA_HIST_METRIC_NAME
DBA_HIST_MTTR_TARGET_ADVICE
DBA_HIST_MUTEX_SLEEP
DBA_HIST_OPTIMIZER_ENV
DBA_HIST_OSSTAT
DBA_HIST_OSSTAT_NAME
DBA_HIST_PARAMETER
DBA_HIST_PARAMETER_NAME
DBA_HIST_PERSISTENT_QUEUES
DBA_HIST_PERSISTENT_SUBS
DBA_HIST_PGA_TARGET_ADVICE
DBA_HIST_PGASTAT
DBA_HIST_PLAN_OPERATION_NAME
DBA_HIST_PLAN_OPTION_NAME
DBA_HIST_PROCESS_MEM_SUMMARY
DBA_HIST_RESOURCE_LIMIT
DBA_HIST_ROWCACHE_SUMMARY
DBA_HIST_RSRC_CONSUMER_GROUP
DBA_HIST_RSRC_PLAN
DBA_HIST_RULE_SET
DBA_HIST_SEG_STAT
DBA_HIST_SEG_STAT_OBJ
DBA_HIST_SERVICE_NAME
DBA_HIST_SERVICE_STAT
DBA_HIST_SERVICE_WAIT_CLASS
DBA_HIST_SESS_TIME_STATS
DBA_HIST_SESSMETRIC_HISTORY
DBA_HIST_SGA
DBA_HIST_SGA_TARGET_ADVICE
DBA_HIST_SGASTAT
DBA_HIST_SHARED_POOL_ADVICE
DBA_HIST_SHARED_SERVER_SUMMARY
DBA_HIST_SNAP_ERROR
DBA_HIST_SNAPSHOT
DBA_HIST_SQL_BIND_METADATA
DBA_HIST_SQL_PLAN
DBA_HIST_SQL_SUMMARY
DBA_HIST_SQL_WORKAREA_HSTGRM
DBA_HIST_SQLBIND
DBA_HIST_SQLCOMMAND_NAME
DBA_HIST_SQLSTAT
DBA_HIST_SQLTEXT
DBA_HIST_STAT_NAME
DBA_HIST_STREAMS_APPLY_SUM
DBA_HIST_STREAMS_CAPTURE
DBA_HIST_STREAMS_POOL_ADVICE
DBA_HIST_SYS_TIME_MODEL
DBA_HIST_SYSMETRIC_HISTORY
DBA_HIST_SYSMETRIC_SUMMARY
DBA_HIST_SYSSTAT
DBA_HIST_SYSTEM_EVENT
DBA_HIST_TABLESPACE_STAT
DBA_HIST_TBSPC_SPACE_USAGE
DBA_HIST_TEMPFILE
DBA_HIST_TEMPSTATXS
DBA_HIST_THREAD
DBA_HIST_TOPLEVELCALL_NAME
DBA_HIST_UNDOSTAT
DBA_HIST_WAITCLASSMET_HISTORY
DBA_HIST_WAITSTAT
DBA_HIST_WR_CONTROL
DBA_HISTOGRAMS

You might also like