Sometimes you have issues that you want to troubleshoot and other times you may choose to investigate/analyse/review your CRM 2011 environment. Often performing health checks is necessary and I suggest necessary if you haven’t already thought of this. One of the tools I promote for searching and crunching logs is Log Parser. This awesome tool is a powerful, versatile tool that provides universal query access to text-based data such as log files, XML files and CSV files, as well as key data sources on the Windows® operating system such as the Event Log, the Registry, the file system, and Active Directory®. If that doesn’t sound awesome enough for you how about if you could write a sql type query against the server’s Application Event Log to find where lock is found in the message attribute like so.
SELECT * FROM \\server1\APPLICATION where message like ‘%lock%’
or lets look at the Application and System Event Log entries for server1
SELECT * FROM \\server1\APPLICATION, \\server1\SYSTEM where message like ‘%lock%’
but wait there, what if I have 2 front end CRM servers, server1 and server2.
SELECT * FROM \\server1\APPLICATION, \\server1\SYSTEM, \\server2\APPLICATION, \\server2\SYSTEM where message like ‘%lock%’
This is just touching the surface of what this tool can do to dig through information held in your environment, this is also all from my own desktop machine, there is no need to log on to various servers to gather this information. So command line is so yesterday I hear you say, well there is also Log Parser Studio which presents a library of ready to go queries for various sources. You need to install Log Parser first and then you’re ready to go.
Here is a useful article from MS Support regarding some useful queries http://support.microsoft.com/kb/910447
So what about CRM Trace Files
SELECT top 2 * FROM C:\Temp\server1-w3wp-CRMWeb-20120210-1.log where Text like ‘%Error%’
As you can see this is fairly awesome stuff and there is so much more that you can use this tool for. Hopefully this has introduced you to something new and useful for your future discovery.
Filed under: Information, MS CRM, MS CRM 2011 Tagged: analyse, CRM 2011, Error, Log Parser, Log Parser Studio, Troubleshoot
