Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, Mukesh.
Asked: July 29, 2016 - 9:34 am UTC
Last updated: August 01, 2016 - 1:33 pm UTC
Version: Oracle 12c
Viewed 1000+ times
SELECT TOP 5 ObjectName = OBJECT_SCHEMA_NAME(qt.objectid,dbid) + '.' + OBJECT_NAME(qt.objectid, qt.dbid) ,TextData = qt.text ,DiskReads = qs.total_physical_reads -- The worst reads, disk reads ,MemoryReads = qs.total_logical_reads --Logical Reads are memory reads ,Executions = qs.execution_count ,TotalCPUTime = qs.total_worker_time ,AverageCPUTime = qs.total_worker_time/qs.execution_count ,DiskWaitAndCPUTime = qs.total_elapsed_time ,MemoryWrites = qs.max_logical_writes ,DateCached = qs.creation_time ,DatabaseName = DB_Name(qt.dbid) ,SQLHandle = CONVERT(VARCHAR(1000), qs.sql_handle, 2) ,LastExecutionTime = qs.last_execution_time FROM sys.dm_exec_query_stats AS qs CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt ORDER BY DiskReads DESC
A reader, August 01, 2016 - 10:35 am UTC
Rajeshwaran, Jeyabal, August 01, 2016 - 12:48 pm UTC
Get all the information about database performance in the Database Performance guide.