<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.neudesic.com/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>Wes Porter</title><link>http://blogs.neudesic.com/blogs/wes_porter/default.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2.0 (Build: 60217.2664)</generator><item><title>How to Fix a SQL and Computer Name Mismatch</title><link>http://blogs.neudesic.com/blogs/wes_porter/archive/2006/07/26/201.aspx</link><pubDate>Thu, 27 Jul 2006 06:30:00 GMT</pubDate><guid isPermaLink="false">4de385cc-dd5e-41d6-9ee9-5129d7639371:201</guid><dc:creator>Wes Porter</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.neudesic.com/blogs/wes_porter/comments/201.aspx</comments><wfw:commentRss>http://blogs.neudesic.com/blogs/wes_porter/commentrss.aspx?PostID=201</wfw:commentRss><description>&lt;P class=MsoNormal&gt;&lt;FONT face=Tahoma size=2&gt;Have you ever had a problem connecting to a SQL Server instance or even the default instance? There could be a very simple answer to a problem that lies deep beneath the covers that may not be readily apparent. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT face=Tahoma size=2&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Tahoma size=2&gt;I ran into this scenario trying to install CRM 3.0 on a fresh install of SQL Server 2005. During the installation I was confronted with a nasty error that CRM could not connect to the SQL Server. I also was presented with another issue regarding SQL replication with a similar error about connecting to the SQL Server.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT face=Tahoma size=2&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Tahoma size=2&gt;The root cause in both instances was a SQL Server and machine name mismatch. In the first scenario the machine had been renamed and the second scenario was created using a VPC image that was renamed. &lt;SPAN&gt; &lt;/SPAN&gt;Looks like SQL holds onto the original name even if it is changed before SQL is installed. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT face=Tahoma size=2&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Tahoma size=2&gt;How do I fix it? It is really simple!&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT face=Tahoma size=2&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;From the Start Menu&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;Right click my computer, select properties and then the computer name tab and verify the machine name.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;FONT face=Tahoma&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;In SQL enterprise manager or sql studio open the query analyzer&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;FONT face=Tahoma&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;Execute this command &lt;B&gt;select @@servername&lt;/B&gt; this will return what SQL has for the machine name. If it does not match run the following commands:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;FONT face=Tahoma&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;EXEC sp_dropserver ''&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;go&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;            &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;EXEC sp_addserver '', 'local' &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;FONT face=Tahoma&gt;go&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;o:p&gt;&lt;FONT face=Tahoma size=2&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Tahoma size=2&gt;Reboot the server and you should be golden!&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face=Tahoma size=2&gt;&lt;/FONT&gt; &lt;/P&gt;&lt;FONT face=Tahoma size=2&gt;
&lt;P&gt;&lt;FONT face=Arial color=#000080 size=2&gt;Wes Porter&lt;BR&gt;Galatians 2:20&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial color=#000080 size=2&gt;It is Jesus who I give all glory and honor, for He has provided me with all that I am and all that I have!&lt;/FONT&gt;&lt;/P&gt;&lt;/FONT&gt;
&lt;P class=MsoNormal&gt; &lt;/P&gt;
Here is my personal blog site at http://www.theobjectivetruth.com&lt;img src="http://blogs.neudesic.com/aggbug.aspx?PostID=201" width="1" height="1"&gt;</description></item><item><title>Introduction - How to Enable HTTPS on a SharePoint Server</title><link>http://blogs.neudesic.com/blogs/wes_porter/archive/2005/11/29/3.aspx</link><pubDate>Wed, 30 Nov 2005 01:35:00 GMT</pubDate><guid isPermaLink="false">4de385cc-dd5e-41d6-9ee9-5129d7639371:3</guid><dc:creator>Wes Porter</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.neudesic.com/blogs/wes_porter/comments/3.aspx</comments><wfw:commentRss>http://blogs.neudesic.com/blogs/wes_porter/commentrss.aspx?PostID=3</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Tahoma&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Tahoma&gt;My name is Wes Porter and I have been working for Neudesic approximately 2 years. My specialties include a fairly wide depth of technology from network infrastructure all the way to graphic design and a little bit of everything in between. Currently I have been focusing on Microsoft SharePoint implementations. SharePoint&amp;nbsp;is one of Microsofts most intriguing software packages to date. The possibilities are absolutely endless. It has and will become the data repository&amp;nbsp;for companies.&amp;nbsp;When office 12 hits the product really takes off even though the existing product is already excellent.&amp;nbsp;I will continue to post best practices, helpful hints and even fun stuff like&amp;nbsp;how to&amp;nbsp;tweak&amp;nbsp;your&amp;nbsp;XBOX and possibly some XBOX 360 game reviews. However, technology is only&amp;nbsp;a part of my life. My life is really all about my children, wife and Jesus Christ. Enough about me! Here is my helpful hint for the day.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Tahoma&gt;For those of you who already have a 2003 SharePoint installation you can enable HTTPS for your site with a few easy steps. The information is provided my Microsoft. Here is the link to it &lt;/FONT&gt;&lt;A href="http://office.microsoft.com/en-us/assistance/CH011725171033.aspx"&gt;&lt;FONT face=Tahoma&gt;http://office.microsoft.com/en-us/assistance/CH011725171033.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Tahoma&gt;If you have any questions regarding this or any other SharePoint question please let me know. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial color=#000080 size=2&gt;Wes Porter&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial color=#000080 size=2&gt;It is Jesus who I give all glory and honor, for He has provided me with all that I am and all that I have!&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.neudesic.com/aggbug.aspx?PostID=3" width="1" height="1"&gt;</description></item></channel></rss>