<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>UK Microsoft Dynamics Support Team Blog : CRM 3.0</title><link>http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+3.0/default.aspx</link><description>Tags: CRM 3.0</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Identify and kill SQL processes causing CPU shortage</title><link>http://blogs.msdn.com/ukdynsupport/archive/2009/05/08/identify-and-kill-sql-processes-causing-cpu-shortage.aspx</link><pubDate>Fri, 08 May 2009 12:58:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9596506</guid><dc:creator>ukdynsupport</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/ukdynsupport/comments/9596506.aspx</comments><wfw:commentRss>http://blogs.msdn.com/ukdynsupport/commentrss.aspx?PostID=9596506</wfw:commentRss><description>&lt;SPAN style="COLOR: #006600"&gt;&lt;FONT color=#000000 size=3 face=Calibri&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="mso-bidi-font-family: Calibri; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;There might be cases in which the SQL processes running against the MSCRM database, start using all available CPU resources causing bad performance&amp;nbsp;and downtimes. Using the following script it is easy to identify which processes are running in the SQL instance and, take reactive actions.&lt;/SPAN&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/SPAN&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: #006600"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;-- THIS SCRIPT HAS TO BE USED IN CASE THE SQL SERVER CPU REMAINS CONSTANTLY AT 100%&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: #006600"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;-- IT ALLOWS TO INTERCEPT (AND KILL IF NECESSARY) THE PROCESS CAUSING THE PROBLEM&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: #006600"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;-- CHANGE THE CONTEXT TO MASTER AND LIST ALL THE PROCESSES RUNNING &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: #006600"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;-- AGAINST THE CRM DATABASE SORTING BY CPU UTILIZATION.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: #006600"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;-- REMEMBER TO CHANGE THE DATABASE NAME ACCORDING TO THE NAME OF THE CRM DATABASE&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="COLOR: blue"&gt;USE&lt;/SPAN&gt; Master&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: blue"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: #006600"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;-- RETRIEVE THE DATABASE ID FOR THE MSCRM DATABASE&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="COLOR: blue"&gt;DECLARE&lt;/SPAN&gt; @DATABASE_ID &lt;SPAN style="COLOR: blue"&gt;INT&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="COLOR: blue"&gt;SET&lt;/SPAN&gt; @DATABASE_ID = &lt;SPAN style="COLOR: #ff33cc"&gt;DB_ID&lt;/SPAN&gt;(&lt;SPAN style="COLOR: red"&gt;N'OrganizationName_MSCRM'&lt;/SPAN&gt;);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="COLOR: blue"&gt;SELECT&lt;/SPAN&gt; ST.&lt;SPAN style="COLOR: blue"&gt;TEXT&lt;/SPAN&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3 face=Calibri&gt;SP.* &lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="COLOR: blue"&gt;FROM&lt;/SPAN&gt; DBO.&lt;SPAN style="COLOR: #006600"&gt;SYSPROCESSES&lt;/SPAN&gt; SP&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="COLOR: gray; mso-themecolor: background1; mso-themeshade: 128"&gt;CROSS APPLY&lt;/SPAN&gt; &lt;SPAN style="COLOR: #006600"&gt;SYS.DM_EXEC_SQL_TEXT&lt;/SPAN&gt;(SP.&lt;SPAN style="COLOR: blue"&gt;SQL_HANDLE&lt;/SPAN&gt;) ST&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="COLOR: blue"&gt;WHERE&lt;/SPAN&gt; SP.DBID = @DATABASE_ID &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="COLOR: blue"&gt;ORDER&lt;/SPAN&gt; &lt;SPAN style="COLOR: blue"&gt;BY&lt;/SPAN&gt; CPU &lt;SPAN style="COLOR: blue"&gt;DESC&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: blue"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT size=3 face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;SPAN style="COLOR: #006600"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: #006600"&gt;-- ONCE YOU IDENTIFY THE PROCESS, IF IS POSSIBLE, KILL IT. TO KILL THE PROCESS IDENTIFY ITS &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: #006600"&gt;-- SPID AND USE THE KILL COMMAND (REMEMBER TO REMOVE "&amp;lt;" AND "&amp;gt;")&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="COLOR: blue"&gt;KILL&lt;/SPAN&gt;&lt;FONT color=#000000&gt; &amp;lt;SPID&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT color=#000000&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: normal; MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Berlin Sans FB','sans-serif'; FONT-SIZE: 10pt; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-fareast-theme-font: minor-fareast; mso-fareast-language: EN-GB; mso-no-proof: yes" lang=EN-US&gt;&lt;FONT color=#000000&gt;Carlo Gallazzi&amp;nbsp;| Business Systems Architect |&amp;nbsp;Microsoft&amp;nbsp;Dynamics CRM&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9596506" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+3.0/default.aspx">CRM 3.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+4.0/default.aspx">CRM 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/SQL/default.aspx">SQL</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CPU/default.aspx">CPU</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/Process/default.aspx">Process</category></item><item><title>Compare XML Customization files tool</title><link>http://blogs.msdn.com/ukdynsupport/archive/2009/02/18/compare-xml-customization-files-tool.aspx</link><pubDate>Wed, 18 Feb 2009 18:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9431536</guid><dc:creator>ukdynsupport</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/ukdynsupport/comments/9431536.aspx</comments><wfw:commentRss>http://blogs.msdn.com/ukdynsupport/commentrss.aspx?PostID=9431536</wfw:commentRss><description>&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;Users&amp;nbsp;often wonder how to compare XML customization files.&lt;BR&gt;XML compare tools we can see are not specially targeted to compare our CRM XML Customization file.&lt;BR&gt;&lt;BR&gt;We now have a special tool to do this which can be downloaded from&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US; mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri"&gt;&amp;nbsp;&lt;A title=Here href="http://go.microsoft.com/fwlink/?LinkID=141482" target=_blank mce_href="http://go.microsoft.com/fwlink/?LinkID=141482"&gt;Here&lt;/A&gt; &lt;/SPAN&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2; mso-bidi-font-family: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;You can easily compare your&amp;nbsp;customizations against the&amp;nbsp;out of the box RTM Schema.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 12pt; COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2; mso-bidi-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;It will show you easily:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;- The changes attributes, entities&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;- The new attributes&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;- The attributes removed.&lt;BR&gt;- The differences within FormXML&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2; mso-bidi-font-family: Arial"&gt;In order to get the tool, you need to do this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2; mso-bidi-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;1°) Download the EXE, unpack it.&lt;BR&gt;2°) Inside the unzipped folders you’ll get a solution file (.SLN) double click on it, this will open the project in Visual Studio.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;3°) Build the project.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;4°) Go to %YouFolder%\microsoft.crm.isv.customizationcomparer.setup\Debug or Retail, there you will have SETUP.EXE.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;5°) Run the setup, it will install the tool by default here: C:\Program Files\Microsoft CRM Tools\CRM Customization Comparison Utility&lt;B&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;6°) Run CRM Customization Comparison Utility.exe from the above specified folder.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="COLOR: #1f497d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-ansi-language: EN-US; mso-themecolor: text2"&gt;More info:&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt; &lt;A href="http://msdn.microsoft.com/en-us/library/dd442453.aspx"&gt;&lt;FONT color=#0000ff&gt;http://msdn.microsoft.com/en-us/library/dd442453.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;A class="" title=_MailAutoSig name=_MailAutoSig&gt;&lt;/A&gt;&lt;SPAN style="COLOR: #17365d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-themecolor: text2; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB; mso-fareast-theme-font: minor-fareast; mso-no-proof: yes; mso-themeshade: 191"&gt;Kind regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN style="mso-bookmark: _MailAutoSig"&gt;&lt;SPAN style="COLOR: #17365d; FONT-FAMILY: 'Arial Narrow','sans-serif'; mso-themecolor: text2; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB; mso-fareast-theme-font: minor-fareast; mso-no-proof: yes; mso-themeshade: 191"&gt;Olga Beatty.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9431536" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+3.0/default.aspx">CRM 3.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+4.0/default.aspx">CRM 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/Support/default.aspx">Support</category></item><item><title>Standard Rate of VAT for Microsoft Dynamics Customers</title><link>http://blogs.msdn.com/ukdynsupport/archive/2008/11/27/standard-rate-of-vat-for-microsoft-dynamics-customers.aspx</link><pubDate>Thu, 27 Nov 2008 17:50:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9146782</guid><dc:creator>ukdynsupport</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/ukdynsupport/comments/9146782.aspx</comments><wfw:commentRss>http://blogs.msdn.com/ukdynsupport/commentrss.aspx?PostID=9146782</wfw:commentRss><description>&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;In November 2008 the Chancellor stated that the standard rate of UK VAT will drop from 17.5% to 15% on 1st December 2008, until end of Year 2009.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;The guidance documentation for partners and customers is now up and live and up on our public facing website. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;&lt;STRONG&gt;&lt;U&gt;The standard rate of VAT will affect customers using the following Microsoft software products:&lt;/U&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;&lt;SPAN&gt;Microsoft Dynamics AX, &lt;/SPAN&gt;&lt;SPAN&gt;Microsoft Dynamics GP, &lt;/SPAN&gt;&lt;SPAN&gt;Microsoft Dynamics NAV, &lt;/SPAN&gt;&lt;SPAN&gt;Microsoft Dynamics RMS&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Microsoft Dynamics CRM*1, &lt;/SPAN&gt;&lt;SPAN&gt;Microsoft Dynamics SL*2, &lt;/SPAN&gt;&lt;SPAN&gt;Older versions of Microsoft Axapta, Great Plains and Navision*3&lt;/SPAN&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;FONT face="Segoe UI"&gt;Please click this &lt;A class="" title=Link href="http://www.microsoft.com/uk/dynamics/vat.mspx" target=_blank mce_href="http://www.microsoft.com/uk/dynamics/vat.mspx"&gt;Link&lt;/A&gt;&amp;nbsp;for the page.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;FONT face="Segoe UI"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;o:p&gt;&lt;FONT face="Segoe UI"&gt;Best Regards&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;o:p&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 16pt; COLOR: black; FONT-FAMILY: 'Brush Script MT'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB; mso-fareast-theme-font: minor-fareast; mso-bidi-font-family: Aharoni; mso-no-proof: yes"&gt;Kevin Tunstall &lt;/SPAN&gt;&lt;/B&gt;&lt;FONT size=3&gt;&lt;B&gt;&lt;SPAN style="COLOR: black; FONT-FAMILY: 'Brush Script MT'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB; mso-fareast-theme-font: minor-fareast; mso-bidi-font-family: Aharoni; mso-no-proof: yes"&gt;BSc&lt;/SPAN&gt;&lt;/B&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 16pt; COLOR: black; FONT-FAMILY: 'Brush Script MT'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB; mso-fareast-theme-font: minor-fareast; mso-bidi-font-family: Aharoni; mso-no-proof: yes"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 7.5pt; COLOR: navy; FONT-FAMILY: 'Tahoma','sans-serif'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-GB; mso-fareast-theme-font: minor-fareast; mso-no-proof: yes"&gt;Microsoft Dynamics CRM&amp;nbsp;Support Engineer&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;/o:p&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9146782" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+3.0/default.aspx">CRM 3.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+4.0/default.aspx">CRM 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/AX+4.0/default.aspx">AX 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/NAV+5.0/default.aspx">NAV 5.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/GP+10.0/default.aspx">GP 10.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/NAV+4.0/default.aspx">NAV 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/GP+9.0/default.aspx">GP 9.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/GP+8.0/default.aspx">GP 8.0</category></item><item><title>Support for Microsoft Dynamics CRM 4.0 on Windows Server 2008</title><link>http://blogs.msdn.com/ukdynsupport/archive/2008/03/13/support-for-microsoft-dynamics-crm-4-0-on-windows-server-2008.aspx</link><pubDate>Thu, 13 Mar 2008 20:20:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8182249</guid><dc:creator>ukdynsupport</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/ukdynsupport/comments/8182249.aspx</comments><wfw:commentRss>http://blogs.msdn.com/ukdynsupport/commentrss.aspx?PostID=8182249</wfw:commentRss><description>&lt;p&gt;Microsoft Dynamics CRM 4.0 is compatible with Windows Server 2008 based computers, however there are some known issues at this stage.&lt;/p&gt;  &lt;p&gt;We have published a Knowledge Base article that detail all the issues, including any workarounds that might be available.&lt;/p&gt;  &lt;p&gt;This article can be accessed &lt;a href="http://support.microsoft.com/kb/950100" target="_blank"&gt;here&lt;/a&gt; or by searching for KB950100 on our support pages, and will be updated frequently with any new information.&lt;/p&gt;  &lt;p&gt;It is also worth mentioning that Microsoft Dynamics CRM 3.0 can be installed in a Windows 2008 domain, however the computer where you install Microsoft Dynamics CRM 3.0 must be running Windows Server 2003 or Windows Server 2000.&lt;/p&gt;  &lt;p&gt;Regards,&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Iain McDonald.&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Microsoft Dynamics CRM Technical Lead.&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;EMEA Customer Support &amp;amp; Services - SMS&amp;amp;P&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/ukdynsupport/WindowsLiveWriter/MicrosoftDynamicsCRM4.0AvailabilityDown_D22A/clip_image001_2.jpg"&gt;&lt;img height="47" alt="clip_image001" src="http://blogs.msdn.com/blogfiles/ukdynsupport/WindowsLiveWriter/MicrosoftDynamicsCRM4.0AvailabilityDown_D22A/clip_image001_thumb.jpg" width="244" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8182249" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+3.0/default.aspx">CRM 3.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+4.0/default.aspx">CRM 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/Support/default.aspx">Support</category></item><item><title>All you need to know about SQL Server build numbers:</title><link>http://blogs.msdn.com/ukdynsupport/archive/2008/01/22/all-you-need-to-know-about-sql-server-build-numbers.aspx</link><pubDate>Tue, 22 Jan 2008 20:04:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7199704</guid><dc:creator>ukdynsupport</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/ukdynsupport/comments/7199704.aspx</comments><wfw:commentRss>http://blogs.msdn.com/ukdynsupport/commentrss.aspx?PostID=7199704</wfw:commentRss><description>&lt;p&gt;If you are using the SQL Server database option with any of the Microsoft Dynamics products you will know that the SQL Server engine is a critical component of the overall Dynamics solution. Many of the issues we work on can be traced back to the behaviour of SQL Server rather than anything specific to the Dynamics product. Therefore, the version and build number of SQL Server deployed at your customer site can be just as important as the Dynamics product version details. The easiest way to establish the SQL Server build number is to simply run the following TSQL statement and include the result with any Service Request placed with Microsoft: SELECT @@VERSION. &lt;/p&gt;  &lt;p&gt;The result will look something like this: &lt;/p&gt;  &lt;p&gt;Microsoft SQL Server 2005 - &lt;b&gt;9.00.3200.00&lt;/b&gt; (Intel X86)&amp;#160;&amp;#160; Oct&amp;#160; 2 2007 11:33:27&amp;#160;&amp;#160; Copyright (c) 1988-2005 Microsoft Corporation&amp;#160; Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2)&lt;/p&gt;  &lt;p&gt;In fact, the only part we need to know from the above information is the number in bold, ie: &lt;b&gt;9.00.3200.00. &lt;/b&gt;Including this detail when opening a service request can expedite the response significantly. We can tell a lot from this build number; see below for the corresponding SQL version information for all major releases of SQL Server going back to version 7.0:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/ukdynsupport/WindowsLiveWriter/AllyouneedtoknowaboutSQLServerbuildnumbe_EE82/image_2.png"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="411" alt="image" src="http://blogs.msdn.com/blogfiles/ukdynsupport/WindowsLiveWriter/AllyouneedtoknowaboutSQLServerbuildnumbe_EE82/image_thumb.png" width="442" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Please note that the above is a simple list of all the major builds of SQL Server since version 7.0 and does not show what builds are supported for each Dynamics product and version. Such details will be the subject of future blogs and can be found in product documentation and Knowledge Base articles in the meantime. &lt;/p&gt;  &lt;p&gt;See the following KB article for more details about recent SQL Server version history: &lt;a href="http://support.microsoft.com/kb/937137/en-us"&gt;http://support.microsoft.com/kb/937137/en-us&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;See also: &lt;a href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?WTNTZSMNWUKNTMMYUTMZWVZSQTWWUNTTZXKQWXQXNTVSKNTTXMKRSOYRZRUZXVRV"&gt;https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?WTNTZSMNWUKNTMMYUTMZWVZSQTWWUNTTZXKQWXQXNTVSKNTTXMKRSOYRZRUZXVRV&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I hope you find the above information helpful.&lt;/p&gt;  &lt;p&gt;Best regards,&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Gerard Conroy      &lt;br /&gt;Microsoft Dynamics NAV Support Engineer&lt;/b&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7199704" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+3.0/default.aspx">CRM 3.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/CRM+4.0/default.aspx">CRM 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/AX+4.0/default.aspx">AX 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/NAV+5.0/default.aspx">NAV 5.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/GP+10.0/default.aspx">GP 10.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/NAV+4.0/default.aspx">NAV 4.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/Business+Analytics/default.aspx">Business Analytics</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/GP+9.0/default.aspx">GP 9.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/GP+8.0/default.aspx">GP 8.0</category><category domain="http://blogs.msdn.com/ukdynsupport/archive/tags/Support/default.aspx">Support</category></item></channel></rss>