<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Fix : Error : 40 &#8211; could not open a connection to SQL server.</title>
	<atom:link href="http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:12:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Anuroop</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-240567</link>
		<dc:creator><![CDATA[Anuroop]]></dc:creator>
		<pubDate>Thu, 19 Jan 2012 05:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-240567</guid>
		<description><![CDATA[A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server. this is the error with sql server 2008. what should i do for this?]]></description>
		<content:encoded><![CDATA[<p>A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 &#8211; Could not open a connection to SQL Server. this is the error with sql server 2008. what should i do for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abid Castaneda</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-235458</link>
		<dc:creator><![CDATA[Abid Castaneda]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 19:47:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-235458</guid>
		<description><![CDATA[You never sease to impress me, thanks man, you saved my life again, I wanna be like you when I grow up :P]]></description>
		<content:encoded><![CDATA[<p>You never sease to impress me, thanks man, you saved my life again, I wanna be like you when I grow up :P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dineshkumar</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-212781</link>
		<dc:creator><![CDATA[Dineshkumar]]></dc:creator>
		<pubDate>Wed, 07 Dec 2011 13:37:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-212781</guid>
		<description><![CDATA[Dineshkumar

Hi i&#039;m trying to built a datagridview in .net using c# as frontend and sql server 2008 as backend..in the event of doing it i got a error that &quot;A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)&quot; ....
i tried all the solutions given above pls help me to fix it as early as possible...
my code as follows

private void Form1_Load(object sender, EventArgs e)
        {
// TODO: This line of code loads data into the &#039;testDataSet1.Employee&#039; table. You can move, or remove it, as needed.
            this.employeeTableAdapter.Fill(this.testDataSet1.Employee);
            {
string strCon = &quot;Data Source=dbServer;Initial Catalog=testDB;Integrated Security=True&quot;;
string strSQL = &quot;select * from Employee&quot;;
 
SqlDataAdapter dataAdapter = new SqlDataAdapter(strSQL, strCon);
SqlCommandBuilder commandBuilder = new SqlCommandBuilder(dataAdapter);
 
// Populate a new data table and bind it to the BindingSource.
DataTable table = new DataTable();
table.Locale = System.Globalization.CultureInfo.InvariantCulture;
dataAdapter.Fill(table);
dbBindSource.DataSource = table;
 
// Resize the DataGridView columns to fit the newly loaded content.
dbGridView.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader);
// you can make it grid readonly.
dbGridView.ReadOnly = true; 
// finally bind the data to the grid
dbGridView.DataSource = dbBindSource;
}

thanks in advance..:)]]></description>
		<content:encoded><![CDATA[<p>Dineshkumar</p>
<p>Hi i&#8217;m trying to built a datagridview in .net using c# as frontend and sql server 2008 as backend..in the event of doing it i got a error that &#8220;A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 &#8211; Could not open a connection to SQL Server)&#8221; &#8230;.<br />
i tried all the solutions given above pls help me to fix it as early as possible&#8230;<br />
my code as follows</p>
<p>private void Form1_Load(object sender, EventArgs e)<br />
        {<br />
// TODO: This line of code loads data into the &#8216;testDataSet1.Employee&#8217; table. You can move, or remove it, as needed.<br />
            this.employeeTableAdapter.Fill(this.testDataSet1.Employee);<br />
            {<br />
string strCon = &#8220;Data Source=dbServer;Initial Catalog=testDB;Integrated Security=True&#8221;;<br />
string strSQL = &#8220;select * from Employee&#8221;;</p>
<p>SqlDataAdapter dataAdapter = new SqlDataAdapter(strSQL, strCon);<br />
SqlCommandBuilder commandBuilder = new SqlCommandBuilder(dataAdapter);</p>
<p>// Populate a new data table and bind it to the BindingSource.<br />
DataTable table = new DataTable();<br />
table.Locale = System.Globalization.CultureInfo.InvariantCulture;<br />
dataAdapter.Fill(table);<br />
dbBindSource.DataSource = table;</p>
<p>// Resize the DataGridView columns to fit the newly loaded content.<br />
dbGridView.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader);<br />
// you can make it grid readonly.<br />
dbGridView.ReadOnly = true;<br />
// finally bind the data to the grid<br />
dbGridView.DataSource = dbBindSource;<br />
}</p>
<p>thanks in advance..:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akram</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-186470</link>
		<dc:creator><![CDATA[Akram]]></dc:creator>
		<pubDate>Tue, 01 Nov 2011 16:49:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-186470</guid>
		<description><![CDATA[Thank you sooo much you made my day.i was just thinking to re-install.but u r answer super it works fine.thanks a lot again]]></description>
		<content:encoded><![CDATA[<p>Thank you sooo much you made my day.i was just thinking to re-install.but u r answer super it works fine.thanks a lot again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parveen Rathi</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-170808</link>
		<dc:creator><![CDATA[Parveen Rathi]]></dc:creator>
		<pubDate>Fri, 23 Sep 2011 03:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-170808</guid>
		<description><![CDATA[Sir, actually on TCP/IP propteties two tab Ptotocol &amp; IP Addres in IP Address tab  also to row TCP Dynamic Port and TCP Port which one I shuld set 1433]]></description>
		<content:encoded><![CDATA[<p>Sir, actually on TCP/IP propteties two tab Ptotocol &amp; IP Addres in IP Address tab  also to row TCP Dynamic Port and TCP Port which one I shuld set 1433</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sahu</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-163881</link>
		<dc:creator><![CDATA[Sahu]]></dc:creator>
		<pubDate>Wed, 31 Aug 2011 07:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-163881</guid>
		<description><![CDATA[No need to change this settings and all.Beore i faced same problem while Connecting with SQL Server.Finally i got Solution.Now i&#039;m getting output.So Everyone follow this Technique.
Simply chek your ConnectionString in Web.Config File.
Like This-----------&gt;
	                          
                            ]]></description>
		<content:encoded><![CDATA[<p>No need to change this settings and all.Beore i faced same problem while Connecting with SQL Server.Finally i got Solution.Now i&#8217;m getting output.So Everyone follow this Technique.<br />
Simply chek your ConnectionString in Web.Config File.<br />
Like This&#8212;&#8212;&#8212;&#8211;&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rehan Hussain</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-163496</link>
		<dc:creator><![CDATA[Rehan Hussain]]></dc:creator>
		<pubDate>Tue, 30 Aug 2011 06:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-163496</guid>
		<description><![CDATA[Thanks is Working 
1) CompMgmt.msc
         Services And Application
                   Sql Server Network Configuration 
                                   Protocol For Ms Sql Server
                                                Enable TCP/IP and Restart Engine Services
But Could u tell me what is the differennce between Conf. Manager TCP/IP and above TCP/IP. Is Both are not Same?]]></description>
		<content:encoded><![CDATA[<p>Thanks is Working<br />
1) CompMgmt.msc<br />
         Services And Application<br />
                   Sql Server Network Configuration<br />
                                   Protocol For Ms Sql Server<br />
                                                Enable TCP/IP and Restart Engine Services<br />
But Could u tell me what is the differennce between Conf. Manager TCP/IP and above TCP/IP. Is Both are not Same?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balu</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-160314</link>
		<dc:creator><![CDATA[Balu]]></dc:creator>
		<pubDate>Sun, 21 Aug 2011 18:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-160314</guid>
		<description><![CDATA[computer management is nothing but
&quot;start -&gt; All programs -&gt; Sql Server -&gt; Configuration Tolls -&gt;Sql Server Configuration manager&quot;


when u click on &quot;Sql Server Configuration manager&quot; , a window will open for u .In that window select &quot;Sql Server Network Configuration&quot;,there u will find &quot;protocals or sqlserver&quot;.click on it u will get list of protocals]]></description>
		<content:encoded><![CDATA[<p>computer management is nothing but<br />
&#8220;start -&gt; All programs -&gt; Sql Server -&gt; Configuration Tolls -&gt;Sql Server Configuration manager&#8221;</p>
<p>when u click on &#8220;Sql Server Configuration manager&#8221; , a window will open for u .In that window select &#8220;Sql Server Network Configuration&#8221;,there u will find &#8220;protocals or sqlserver&#8221;.click on it u will get list of protocals</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: meh</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-157906</link>
		<dc:creator><![CDATA[meh]]></dc:creator>
		<pubDate>Tue, 16 Aug 2011 19:51:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-157906</guid>
		<description><![CDATA[hi,

thanks for your help.]]></description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>thanks for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ruchir</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-156047</link>
		<dc:creator><![CDATA[Ruchir]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 06:17:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-156047</guid>
		<description><![CDATA[Thanks Pinal,

Here&#039;s what helped me get over this issue thanks to your pointers and those in this thread:

The SQL Server Configuration Manager already had TCP/IP and Named Pipes enabled on the node:  SQL Native Client 10.0 Configuration.  Despite this remote machine could not log on to the SQL server.

But Named Pipes and TCP/IP was disabled on the node:  Protocols for MSSQLExpress

Enabling both on the second node and adding the default port 1433 to the TCP/IP tab helped establish the connection.  The service requires a restart.

My SQL Browser service remains inactive and despite that remote terminals can connect.

The MS SQL Server Express 2008 was situated on an Windows XP machine and the terminals connecting to it were Vistas Utimate and Windows 7 Home Basic.

Ruchir]]></description>
		<content:encoded><![CDATA[<p>Thanks Pinal,</p>
<p>Here&#8217;s what helped me get over this issue thanks to your pointers and those in this thread:</p>
<p>The SQL Server Configuration Manager already had TCP/IP and Named Pipes enabled on the node:  SQL Native Client 10.0 Configuration.  Despite this remote machine could not log on to the SQL server.</p>
<p>But Named Pipes and TCP/IP was disabled on the node:  Protocols for MSSQLExpress</p>
<p>Enabling both on the second node and adding the default port 1433 to the TCP/IP tab helped establish the connection.  The service requires a restart.</p>
<p>My SQL Browser service remains inactive and despite that remote terminals can connect.</p>
<p>The MS SQL Server Express 2008 was situated on an Windows XP machine and the terminals connecting to it were Vistas Utimate and Windows 7 Home Basic.</p>
<p>Ruchir</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: praveen</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-138169</link>
		<dc:creator><![CDATA[praveen]]></dc:creator>
		<pubDate>Wed, 01 Jun 2011 10:05:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-138169</guid>
		<description><![CDATA[hello sir,
When i run asp.net application on IIS6.0, it shows Error 40[SQL Server does not allow remote connections.]
As per your assignment i gave all options and modifications(
I enabled tcp/ip in sql2005 configuration and modified sql exceptions in firewall, and i gave option local&amp;remote connections in sql2005 configuration.) But still im getting same problem
Please help me
Thank you]]></description>
		<content:encoded><![CDATA[<p>hello sir,<br />
When i run asp.net application on IIS6.0, it shows Error 40[SQL Server does not allow remote connections.]<br />
As per your assignment i gave all options and modifications(<br />
I enabled tcp/ip in sql2005 configuration and modified sql exceptions in firewall, and i gave option local&amp;remote connections in sql2005 configuration.) But still im getting same problem<br />
Please help me<br />
Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atul Kumar Singh</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-137143</link>
		<dc:creator><![CDATA[Atul Kumar Singh]]></dc:creator>
		<pubDate>Sat, 28 May 2011 04:54:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-137143</guid>
		<description><![CDATA[Hi All, 
I am facing the same problem, I can connect my remote SQL Server via SSMS, unable to connect through ASP.NET, it gives an error with details...

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 – Could not open a connection to SQL Server) (.Net SqlClient Data Provider)

Application is configured with user id &#039;sa&#039; having all rights.

when try to connect with a new login named &#039;test&#039; it successfully access database but provides error that respective Procedure does not exists in database, this is due to because user &#039;test&#039; is not dbowner, when assigning dbowner role and schema as dbo it again gives error : 40 
specified above.

I checked all the settings as per specified in this thread.

Please help .... 
Thanks in Advance.]]></description>
		<content:encoded><![CDATA[<p>Hi All,<br />
I am facing the same problem, I can connect my remote SQL Server via SSMS, unable to connect through ASP.NET, it gives an error with details&#8230;</p>
<p>A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 – Could not open a connection to SQL Server) (.Net SqlClient Data Provider)</p>
<p>Application is configured with user id &#8216;sa&#8217; having all rights.</p>
<p>when try to connect with a new login named &#8216;test&#8217; it successfully access database but provides error that respective Procedure does not exists in database, this is due to because user &#8216;test&#8217; is not dbowner, when assigning dbowner role and schema as dbo it again gives error : 40<br />
specified above.</p>
<p>I checked all the settings as per specified in this thread.</p>
<p>Please help &#8230;.<br />
Thanks in Advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sharma9187</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-134593</link>
		<dc:creator><![CDATA[Sharma9187]]></dc:creator>
		<pubDate>Mon, 16 May 2011 11:35:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-134593</guid>
		<description><![CDATA[Hi, I have resolved this issue. Try to disable VIA Protocol and then start the SQL Service in SQL Server configuration manager. It starts fine.
Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi, I have resolved this issue. Try to disable VIA Protocol and then start the SQL Service in SQL Server configuration manager. It starts fine.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oyewunmi</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-133048</link>
		<dc:creator><![CDATA[Oyewunmi]]></dc:creator>
		<pubDate>Thu, 05 May 2011 11:41:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-133048</guid>
		<description><![CDATA[===================================

Cannot connect to INFOSIGHT.

===================================

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)

------------------------------
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&amp;EvtSrc=MSSQLServer&amp;EvtID=2&amp;LinkId=20476

------------------------------
Error Number: 2
Severity: 20
State: 0


------------------------------
Program Location:]]></description>
		<content:encoded><![CDATA[<p>===================================</p>
<p>Cannot connect to INFOSIGHT.</p>
<p>===================================</p>
<p>A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 &#8211; Could not open a connection to SQL Server) (.Net SqlClient Data Provider)</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
For help, click: <a href="http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&#038;EvtSrc=MSSQLServer&#038;EvtID=2&#038;LinkId=20476" rel="nofollow">http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&#038;EvtSrc=MSSQLServer&#038;EvtID=2&#038;LinkId=20476</a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Error Number: 2<br />
Severity: 20<br />
State: 0</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Program Location:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-129528</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Mon, 18 Apr 2011 10:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-129528</guid>
		<description><![CDATA[Did you use the correct connection string?]]></description>
		<content:encoded><![CDATA[<p>Did you use the correct connection string?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anant</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-129030</link>
		<dc:creator><![CDATA[Anant]]></dc:creator>
		<pubDate>Fri, 15 Apr 2011 11:38:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-129030</guid>
		<description><![CDATA[Hi,
this anant from Mumbai. Am doing one project in Visual Studio 2008 and for back hand i had choosen SQL server 2005 Management Studio.
Am unable to connect database through the .net it giving an of &#039;sa login failed&#039;
What to do? please help me out.
Thank you.
Regards,
Anant.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
this anant from Mumbai. Am doing one project in Visual Studio 2008 and for back hand i had choosen SQL server 2005 Management Studio.<br />
Am unable to connect database through the .net it giving an of &#8216;sa login failed&#8217;<br />
What to do? please help me out.<br />
Thank you.<br />
Regards,<br />
Anant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Audi</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-123350</link>
		<dc:creator><![CDATA[Audi]]></dc:creator>
		<pubDate>Tue, 15 Mar 2011 16:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-123350</guid>
		<description><![CDATA[Control panel&gt;Administrative Tools&gt;Computer Management&gt;…]]></description>
		<content:encoded><![CDATA[<p>Control panel&gt;Administrative Tools&gt;Computer Management&gt;…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Audi</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-123348</link>
		<dc:creator><![CDATA[Audi]]></dc:creator>
		<pubDate>Tue, 15 Mar 2011 16:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-123348</guid>
		<description><![CDATA[hi,

I Guess during installation setup ask you select a server type whether 
1. Developer machine (minimal amt. of memory)
2. Server Machine (medium memory Usage)
3.Dedicated MySql Server Machine (Utilize up to all available memory) 

You can re configure this seting using MySql Server Instance Configuration Wizard.

Thanks and Tell if this info. is useful.]]></description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>I Guess during installation setup ask you select a server type whether<br />
1. Developer machine (minimal amt. of memory)<br />
2. Server Machine (medium memory Usage)<br />
3.Dedicated MySql Server Machine (Utilize up to all available memory) </p>
<p>You can re configure this seting using MySql Server Instance Configuration Wizard.</p>
<p>Thanks and Tell if this info. is useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Audi</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-123347</link>
		<dc:creator><![CDATA[Audi]]></dc:creator>
		<pubDate>Tue, 15 Mar 2011 16:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-123347</guid>
		<description><![CDATA[Control panel&gt;Administrative Tools&gt;Computer Management&gt;...]]></description>
		<content:encoded><![CDATA[<p>Control panel&gt;Administrative Tools&gt;Computer Management&gt;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giovani</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-108382</link>
		<dc:creator><![CDATA[Giovani]]></dc:creator>
		<pubDate>Tue, 28 Dec 2010 20:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-108382</guid>
		<description><![CDATA[You can find the right answer here: http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277

Regards]]></description>
		<content:encoded><![CDATA[<p>You can find the right answer here: <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277" rel="nofollow">http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277</a></p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arti</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-104265</link>
		<dc:creator><![CDATA[arti]]></dc:creator>
		<pubDate>Wed, 08 Dec 2010 07:12:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-104265</guid>
		<description><![CDATA[pls help me out..]]></description>
		<content:encoded><![CDATA[<p>pls help me out..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arti</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-104264</link>
		<dc:creator><![CDATA[arti]]></dc:creator>
		<pubDate>Wed, 08 Dec 2010 07:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-104264</guid>
		<description><![CDATA[An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 – Could not open a connection to SQL Server)]]></description>
		<content:encoded><![CDATA[<p>An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 – Could not open a connection to SQL Server)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kala</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-104131</link>
		<dc:creator><![CDATA[Kala]]></dc:creator>
		<pubDate>Tue, 07 Dec 2010 09:50:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-104131</guid>
		<description><![CDATA[hi,
did u get any solution for ur problem..now am facing same problem..could u pls tell me,how to rectify that error
(Os-Vista)

with sql 2000 its fine..when am running with sql-2005 am facing this error(Os-Vista,server=server/SQLEXPRESS)]]></description>
		<content:encoded><![CDATA[<p>hi,<br />
did u get any solution for ur problem..now am facing same problem..could u pls tell me,how to rectify that error<br />
(Os-Vista)</p>
<p>with sql 2000 its fine..when am running with sql-2005 am facing this error(Os-Vista,server=server/SQLEXPRESS)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kala</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-104130</link>
		<dc:creator><![CDATA[Kala]]></dc:creator>
		<pubDate>Tue, 07 Dec 2010 09:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-104130</guid>
		<description><![CDATA[hi,
did u get any solution for ur problem..now am facing same problem..could u pls tell me,how to rectify that error
(Os-Vista)]]></description>
		<content:encoded><![CDATA[<p>hi,<br />
did u get any solution for ur problem..now am facing same problem..could u pls tell me,how to rectify that error<br />
(Os-Vista)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Muhammad Waqas</title>
		<link>http://blog.sqlauthority.com/2007/04/23/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server/#comment-101970</link>
		<dc:creator><![CDATA[Muhammad Waqas]]></dc:creator>
		<pubDate>Thu, 25 Nov 2010 04:14:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/23/fix-error-40-could-not-open-a-connection-to-sql-server/#comment-101970</guid>
		<description><![CDATA[i have install oracle form builder 6i in my computer . It work well but when i change my computer name its turn error just like this 
ORA-12514: Message 12514 not found ; product = RDBM580; facility =ORA]]></description>
		<content:encoded><![CDATA[<p>i have install oracle form builder 6i in my computer . It work well but when i change my computer name its turn error just like this<br />
ORA-12514: Message 12514 not found ; product = RDBM580; facility =ORA</p>
]]></content:encoded>
	</item>
</channel>
</rss>

