 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL Server with Mr. Denny &#187; Tech support</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/sql-server/tag/tech-support/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/sql-server</link>
	<description></description>
	<lastBuildDate>Fri, 17 May 2013 17:04:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Steps to Troubleshoot Connections to your SQL Server</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/steps-to-troubleshoot-connections-to-your-sql-server/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/steps-to-troubleshoot-connections-to-your-sql-server/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 10:59:56 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[Connection Issues]]></category>
		<category><![CDATA[Forums]]></category>
		<category><![CDATA[Tech support]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/?p=412</guid>
		<description><![CDATA[People ask all the time why they can&#8217;t connect to their SQL Server. Here are some thoubleshooting steps that they should take in order to find out what the problem is. Please keep in mind that without knowledge of your specific problem I can only point you towards the right direction. Windows XP Running Service [...]]]></description>
				<content:encoded><![CDATA[<p>People ask all the time why they can&#8217;t connect to their SQL Server.  Here are some thoubleshooting steps that they should take in order to find out what the problem is.</p>
<p>Please keep in mind that without knowledge of your specific problem I can only point you towards the right direction.</p>
<p><span style="color: #ff0000">Windows XP Running Service Pack 2 and higher (This includes Vista and Windows 7)<br />
Windows XP SP 2 and higher by default turns on the Personal Firewall Component of Windows XP.  This will by default block your connection to your SQL Server.  You will need to open the firewall to allow this traffic, or turn off the firewall.</span></p>
<p>There are several steps that I am going to lay out here to attempt to find the problem.  We will be starting with the most basic, and working up to the more complex.  Some of the more complex will involve people from network security, network engineering and/or your ISP.</p>
<p>1. Can you ping the server?<br />
From a command prompt type:</p>
<pre class="brush: sql; title: ; notranslate">ping {servername}</pre>
<p>If you can not ping the server then you need to make sure that both you and the server are online.  (This may not mean that either you or the server are offline.  It may simply mean that someone has blocked ICMP packets from passing from you to the server for some reason.)</p>
<p>2. Can you telnet to the SQL Service port on the SQL Server?<br />
From a command prompt type:</p>
<pre class="brush: plain; title: ; notranslate">telnet {servername} 1433</pre>
<p>If you get a black window with a flashing cursor that means that you have connected to the SQL Server.  If you get an error message that means that something is blocking your connection to the SQL Server.  Check for firewalls running on both machines, or on the network between you and the server.  If the server is hosted by an ISP outside of your company&#8217;s control, check with them, and with your ISP to ensure that neither of them are blocking port 1433.  If they are blocking access to the SQL Server they will have another way for you to access the SQL Server, probably a web based version of Enterprise Manager.  There are several on the market, and they all work fairly well.</p>
<p>There are a couple of ways to check what port SQL Server is listening on.<br />
2a (SQL 2000). Log on to the servers console, and open Enterprise Manager.  Right click on the server and click properties.  Click Network Configuration.  Check the properties for TCP/IP.  It will tell you what TCP port the SQL Server is listening on.</p>
<p>2b (SQL 2005/2008). Log onto the servers console and open the SQL Server Configuration Manager.  Navigate to the SQL Server 200<em>n</em> Network Configuration and select the &#8220;Protocols for MSSQLSERVER (or YourInstanceName if a named instance).  Open the TCP/IP protocol in the right hand pane.  On the IP Addresses tab the port number that SQL Server should be listening on is shown.</p>
<p>2c. Check the Current SQL Server Log (the ERRORLOG if your looking at the actual file).  At the beginning of the log there should be one line for each IP on the server.  Something like:</p>
<pre class="brush: plain; title: ; notranslate">SQL server listening on 127.0.0.1: 1433.</pre>
<p>That&#8217;s the port that it&#8217;s listening on.</p>
<p>If these lines aren&#8217;t there, and you&#8217;ve checked the TCP/IP is turned on, then there is probably an error saying that the port couldn&#8217;t be opened.  This means that something else was using the port at startup.  Odds are what ever was using it no longer is, and a service restart will fix the problem.</p>
<p>3. Can you connect to the file share on the server?<br />
If this is being blocked that could also explain why you can not get connected.  By default SQL Server will use TCP/IP port 1433 as it&#8217;s default connection method, with named pipes as a backup.  If you can&#8217;t connect to the Windows file share you won&#8217;t be able to connect to the SQL Server over named pipes.</p>
<p>4. Can you connect to the SQL server from another machine on the same network as the workstation that isn&#8217;t working?  If so then the problem is probably with the nonworking workstation, or some setting on a router or firewall that is preventing this machines access.</p>
<p>5. Are there any firewalls or ACLs on your network preventing access?</p>
<p>At this point odds are you are either connected to the SQL Server or you know why you are not.  If you still can&#8217;t connect post a question in one of the SQL Server forums and someone will do there best to help you.  You will want to post the results of these questions so that they don&#8217;t ask you to try them again.</p>
<p><em>This post is a copy of an <a href="http://www.tek-tips.com/faqs.cfm?fid=5481" target="_blank">FAQ</a> that I posted on tek-tips.com a while back.</em></p>
<p>Denny</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/steps-to-troubleshoot-connections-to-your-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading the Error Messages is key</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/reading-the-error-messages-is-key/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/reading-the-error-messages-is-key/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 11:00:57 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[Error Message]]></category>
		<category><![CDATA[Tech support]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/?p=275</guid>
		<description><![CDATA[I have a gripe that I need to air. I can&#8217;t stress this enough.  Actually reading the error messages when there is a problem is key to solving the problems. Most of the time (I admit, not all the time) SQL Server will give you some very useful information about what to do next. Recently [...]]]></description>
				<content:encoded><![CDATA[<p>I have a gripe that I need to air.</p>
<p>I can&#8217;t stress this enough.  Actually reading the error messages when there is a problem is key to solving the problems.</p>
<p>Most of the time (I admit, not all the time) SQL Server will give you some very useful information about what to do next.</p>
<p><span id="more-275"></span>Recently someone posted the following error message and asked how to resolve it.</p>
<p><code>Msg 682, Level 22, State 148, Line 1<br />
Internal error. Buffer provided to read column value is too small. Run DBCC CHECKDB to check for any corruption.</code></p>
<p>Now just by reading this error figuring out the next step should be pretty easy.  Run DBCC CHECKDB and post that information, or better yet after it runs and tells you that there is corruption in your database, follow the instructions that it gives you.  Why should you do this?  Well because when you post this error message on a forum you will be told to go and run DBCC CHECKDB and report back.</p>
<p>Those that answer questions online don&#8217;t have any magical power to know what&#8217;s happening on your SQL Server.  If you don&#8217;t read the errors and follow what they tell you, we are not going to be able to help any beyond that.</p>
<p>My rant now ends.</p>
<p>Denny</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/reading-the-error-messages-is-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best way to get assistance on the messages boards.</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/best-way-to-get-assistance-on-the-messages-boards/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/best-way-to-get-assistance-on-the-messages-boards/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 08:00:37 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[Assistance]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Tech support]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/best-way-to-get-assistance-on-the-messages-boards/</guid>
		<description><![CDATA[There are literally thousands of different message boards on the Internet where you can find technical information from fellow IT professionals.  When asking questions on these boards there are some basic guidelines which most people like to have followed.  They are sometimes informal, but they are fairly common across most of the boards. Don&#8217;t use [...]]]></description>
				<content:encoded><![CDATA[<p>There are literally thousands of different message boards on the Internet where you can find technical information from fellow IT professionals.  When asking questions on these boards there are some basic guidelines which most people like to have followed.  They are sometimes informal, but they are fairly common across most of the boards.</p>
<ol>
<li>Don&#8217;t use topics like &#8220;Help!!!&#8221; or &#8220;It doesn&#8217;t work&#8221;.  Using a descriptive topic will make more people want to read your thread and help you out.</li>
<li>Be polite when talking to the people who are trying to help you.  They aren&#8217;t getting paid to do this, so be nice to them.  It&#8217;s always nice to get a thank you from the poster.</li>
<li>Check your spelling and grammar.  It doesn&#8217;t have to be perfect, but many people prefer proper spelling and grammar. (Mine isn&#8217;t the best, but I do try.)  If English isn&#8217;t your first language and people are giving you a hard time about your spelling or grammar some people will be a little more forgiving once they know that you are not a native English speaker.</li>
<li>If the message board is in English and you are posting an error message which is in another language, please translate it to English.  More people will be able to read it that way.  You may not get the translation perfect, but it&#8217;s usually close enough to get the point across.</li>
<li>Don&#8217;t post just the error number.  There are thousands of error messages and we need the entire error message.</li>
<li>Don&#8217;t just say that it&#8217;s broken.  Be specific about what isn&#8217;t working.</li>
<li>Let the readers know what you have done to try to fix the problem already.  That will save you time as the people trying to help won&#8217;t have to have you try stuff twice.</li>
<li>If you find the solution your self post it to the thread.  This will help the next person who has the same problem.  These forums are all about helping others and this is a great way to give back to the community.</li>
<li>Please remember that the people responding aren&#8217;t computers.  It may take time for someone to read your thread who knows the answer.</li>
</ol>
<p>Denny</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/best-way-to-get-assistance-on-the-messages-boards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
