1

The application that I have customized and continue to support for my client is seeing dramatic performance problems in the field. Simple queries on rather small datasets take over a minute when I would expect them to complete with sub-second times.

My current theory is that SQL Server Express 2005 is too limited for the rather non-trivial demands being made of it, but I am not sure how to get about gathering data that I can use to either prove my point or allow me to move on to finding another cause.

Can anyone point me toward some tools that would allow me to analyze the load on this database? Information such as simultaneous connections, execution times of individual queries, memory usage, heck just any profiling data at all would be a help.

Many thanks.

2 Answers2

1

perfmon and dmv stats

See this MSDN blog by Jimmy May.

Glorfindel
  • 1,213
  • 3
  • 15
  • 22
tony roth
  • 3,844
  • 17
  • 14
0

Perfmon for sure. This link to Brent Ozar's blog gives details on setting up the counters and such.

Holocryptic
  • 5,665
  • 2
  • 28
  • 37