Microsoft SQL Server 2008 Analysis Services Unleashed Review Chapter 41
Conceptually, I consider this chapter similar to chapter 38 (on trace monitoring). This chapter introduces a new infrastructure for monitoring server resources called Dynamic Management Views (DMVs), and here are some resources:
- The MSDN Documentation has a comprehensive discussion on this topic
- See the presentation TechNet Webcast: Advanced Manageability for SQL Server 2008 Analysis Services (Level 300)
- Online help forum: SQL Server Manageability
The book provides a DMX query to start using the DMVs, and I will give that short script here:
select * from $system.discover_connections
goselect * from $system.dbschema_tables
goselect * from $system.dbschema_columns
go
However, in practical terms, though the book provides essential descriptive information on DMVs, the reality is that this area continues to be an active topic of discussion and practice. Continue reading “Resource Monitoring” »
Microsoft SQL Server 2008 Analysis Services Unleashed