SQL Server 2008 data collections in 5 minutes
Posted by
Jason on Friday, February 15, 2008 to
SQL Server 2008,
Data collection
450 Views |
1 Comments |
This will be a quick and dirty post on data collection in SQL Server 2008. The next two posts will cover creating custom data collection sets and integrating reporting services. For a deeper understanding of data collections, check out Bill Ramos's web cast. He talks about it in this post.
Data collection is basically a separate application that collects data about your SQL Server 2008 server, stores in SQL Server and provides reporting. It is like some of those 3rd party applications by vendors like Quest and Idera. It is fairly simple in design. This will allow you to easily get up to speed and extend. That is where it may excel over the 3rd party products.
The moving parts include an executable called dcexe.exe, a warehouse database, SSIS, SQL Agent jobs and your data sources. The sources can be perfmon counters, DMV's,SQL traces and even application data. It was designed to minimize the stress on the source system but the warehouse database should reside on a different system.
This feature comes with 3(as of right now) system collections.
- Disk usage - this one basically logs the info from a sp_spaceused for each db. They say that disk space related performance counters may end up in here as well.
- Query Statistics - These are "notable" queries from the procedure cache.
- Server Activity - This collects data from sql and OS perform counters as well as the SQLOS DMV's.
For a deeper discussion of this topic, please check out the web cast. The next post will demo setting up a custom collection. Part 3 will be on reporting off of the data collection.
Technorati Tags:
SQL Server 2008
email it! |
|
|
|
|
|
Click here to post a comment