<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Wes Porter</title><subtitle type="html" /><id>http://blogs.neudesic.com/blogs/wes_porter/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.neudesic.com/blogs/wes_porter/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.neudesic.com/blogs/wes_porter/atom.aspx" /><generator uri="http://communityserver.org" version="2.0.60217.2664">Community Server</generator><updated>2005-11-29T17:35:00Z</updated><entry><title>How to Fix a SQL and Computer Name Mismatch</title><link rel="alternate" type="text/html" href="http://blogs.neudesic.com/blogs/wes_porter/archive/2006/07/26/201.aspx" /><id>http://blogs.neudesic.com/blogs/wes_porter/archive/2006/07/26/201.aspx</id><published>2006-07-26T22:30:00Z</published><updated>2006-07-26T22:30:00Z</updated><content type="html">&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;</content><author><name>Wes Porter</name><uri>http://blogs.neudesic.com/members/Wes+Porter.aspx</uri></author></entry><entry><title>Introduction - How to Enable HTTPS on a SharePoint Server</title><link rel="alternate" type="text/html" href="http://blogs.neudesic.com/blogs/wes_porter/archive/2005/11/29/3.aspx" /><id>http://blogs.neudesic.com/blogs/wes_porter/archive/2005/11/29/3.aspx</id><published>2005-11-29T17:35:00Z</published><updated>2005-11-29T17:35:00Z</updated><content type="html">&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;</content><author><name>Wes Porter</name><uri>http://blogs.neudesic.com/members/Wes+Porter.aspx</uri></author></entry></feed>