Tagged Questions
DMVs are Dynamic Management Views in SQL Server. DMVs stores metadata and important dtatistics related to sql server performance.This information is gets updated at run time so that user will be able to get most recent values so that He/She can analyse server performance and usage greatly. DMVs have great power to analyase system performance issues and also we can diagnose problems in SQL server at any time.
4
votes
2answers
262 views
MS SQL DMVs for UDF performance stats - how to find top 10 worst UDFs
I heard in Microsoft SQL Server there are multiple ways to find "worst" stored procedures: by number of executions, by CPU worker time, by queue wait time etc.
I am looking for a way to find worst ...
1
vote
2answers
105 views
rows processed statistics information in sql server 2005
In Oracle, there's a view called V$SQLAREA that lists statistics on shared SQL area and contains one row per SQL string. It provides statistics on SQL statements that are in memory, parsed, and ready ...
1
vote
2answers
270 views
DMF and DMV in SQL Server 2008
What are Dynamic Management Functions (DMF) and Views (DMV) in SQL Server 2005/2008 ?
0
votes
0answers
67 views
How to find the detail cpu high process name which occupying most resource in the SQL Server database?
I'm running into a problem when using the following SQL to identify CPU usage in the production SQL Server 2005 env.
DECLARE @ts_now bigint;
SELECT @ts_now = cpu_ticks / CONVERT(float, ...
0
votes
0answers
57 views
what is Reads and Writes in Sys.dm_exec_requests DMV of SQL Server
As per explaination given on MSDN at link http://msdn.microsoft.com/en-us/library/ms177648.aspx
I am not able to understand the meaning of Reads and Writes fully.whether it is physical or logical or ...
0
votes
1answer
48 views
Discovering partition names SSAS
Is there a way I can dynamically discover if a partition with a specific name already exists in my cube using DMV or XMLA?
Thanks
0
votes
0answers
29 views
How to know what index to create?
I queried the "index usage stats" DMV and got the following result
obj_id:789577851 tab_name:TableX index_id:0 index_name:HEAP user_seeks:0 user_scans:3139598 user_lookups:1237467 user_updates:0
...