2

I have started to use DMVs to identify the performance issues we have been encountering in our SQL Server.

Has anyone built a repository to capture this DMV data which can be then baselined and compared against the current data moving forward?

Regards

Martin Smith
  • 438,706
  • 87
  • 741
  • 845
Conrad Jagger
  • 2,223
  • 4
  • 19
  • 15

2 Answers2

1

What version of SQL Server? If 2008 you can take a look at the Management data warehouse. Otherwise you could have a look at the DMVStats project.

Martin Smith
  • 438,706
  • 87
  • 741
  • 845
0

Take a look at Creating a baseline for SQL Server to get some ideas

You can not just grab someone's baseline....your server is most likely completely different

SQLMenace
  • 132,095
  • 25
  • 206
  • 225
  • 1
    i think OP is looking for a schema that captures the baseline - so he can grab one from his own environment - then compare later.. – Randy Oct 07 '11 at 14:24