<?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 &#8211; Cannot connect to . Login failed. The login is from an untrusted domain and cannot be used with Windows authentication. (Microsoft SQL Server, Error: 18452)</title>
	<atom:link href="http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: MW</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-468277</link>
		<dc:creator><![CDATA[MW]]></dc:creator>
		<pubDate>Fri, 03 May 2013 08:50:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-468277</guid>
		<description><![CDATA[Iwas having this problem when connected to VPN.  I wanted to use a local copy of a network DB for development and permissions in the DB were domain controlled, so I needed the VPN connection.  Adding the local host entries suggested resolved the issue.

127.0.0.1       localhost
127.0.0.1       mycomputername                        
127.0.0.1       mycomputername localhost

strangely I was only having this prioblem with SSMS 2012, 2008 worked fine?]]></description>
		<content:encoded><![CDATA[<p>Iwas having this problem when connected to VPN.  I wanted to use a local copy of a network DB for development and permissions in the DB were domain controlled, so I needed the VPN connection.  Adding the local host entries suggested resolved the issue.</p>
<p>127.0.0.1       localhost<br />
127.0.0.1       mycomputername<br />
127.0.0.1       mycomputername localhost</p>
<p>strangely I was only having this prioblem with SSMS 2012, 2008 worked fine?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-415331</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Wed, 30 Jan 2013 16:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-415331</guid>
		<description><![CDATA[The local host was already in the host file and adding the machine name to the host file did not help either.  In my case I found out that VPN software was causing the issue.  Since it was a local database and a local excel file I was uploading, I simply closed the VPN connection and it worked.]]></description>
		<content:encoded><![CDATA[<p>The local host was already in the host file and adding the machine name to the host file did not help either.  In my case I found out that VPN software was causing the issue.  Since it was a local database and a local excel file I was uploading, I simply closed the VPN connection and it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: German Masis</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-406605</link>
		<dc:creator><![CDATA[German Masis]]></dc:creator>
		<pubDate>Fri, 11 Jan 2013 20:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-406605</guid>
		<description><![CDATA[TThe error message, at least, suggest two things
i. A name resoultion trouble.
ii. lock out account. I had this issue with some
jobs and the problem was the account was lock out.]]></description>
		<content:encoded><![CDATA[<p>TThe error message, at least, suggest two things<br />
i. A name resoultion trouble.<br />
ii. lock out account. I had this issue with some<br />
jobs and the problem was the account was lock out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MapleMale</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-405811</link>
		<dc:creator><![CDATA[MapleMale]]></dc:creator>
		<pubDate>Wed, 09 Jan 2013 19:11:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-405811</guid>
		<description><![CDATA[I figured this out...

I was connecting to another name specified in my hosts file as 127.0.0.1

The reason being, I work in a dev enviroment where our SQL Connection strings are all setup as something like my_dev_sqlbox. The entry looked like this:

 127.0.0.1 localhost
 127.0.0.1 my_dev_sqlbox

my_dev_sqlbox was giving me the error. However, if I enter it like this it works:

 127.0.0.1 localhost
 127.0.0.1 my_dev_sqlbox localhost]]></description>
		<content:encoded><![CDATA[<p>I figured this out&#8230;</p>
<p>I was connecting to another name specified in my hosts file as 127.0.0.1</p>
<p>The reason being, I work in a dev enviroment where our SQL Connection strings are all setup as something like my_dev_sqlbox. The entry looked like this:</p>
<p> 127.0.0.1 localhost<br />
 127.0.0.1 my_dev_sqlbox</p>
<p>my_dev_sqlbox was giving me the error. However, if I enter it like this it works:</p>
<p> 127.0.0.1 localhost<br />
 127.0.0.1 my_dev_sqlbox localhost</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MapleMale</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-405805</link>
		<dc:creator><![CDATA[MapleMale]]></dc:creator>
		<pubDate>Wed, 09 Jan 2013 18:55:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-405805</guid>
		<description><![CDATA[Same error here as well. Solution did not work.]]></description>
		<content:encoded><![CDATA[<p>Same error here as well. Solution did not work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jija Dahifale</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-346510</link>
		<dc:creator><![CDATA[Jija Dahifale]]></dc:creator>
		<pubDate>Fri, 14 Sep 2012 18:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-346510</guid>
		<description><![CDATA[Dear Sir, I followed your instructions but not resolved. I am getting same error which you have mensioned.
Example, I have 3 machines; windows7, and two machines of windows server 2003. I can connect SQL server from windows server2003 to another windows server 2003 machine and windows7 machine. But problem is I unable to connect  SQL Server from windows 7 machine. what should I do??]]></description>
		<content:encoded><![CDATA[<p>Dear Sir, I followed your instructions but not resolved. I am getting same error which you have mensioned.<br />
Example, I have 3 machines; windows7, and two machines of windows server 2003. I can connect SQL server from windows server2003 to another windows server 2003 machine and windows7 machine. But problem is I unable to connect  SQL Server from windows 7 machine. what should I do??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rohit</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-342676</link>
		<dc:creator><![CDATA[Rohit]]></dc:creator>
		<pubDate>Tue, 11 Sep 2012 00:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-342676</guid>
		<description><![CDATA[Hi Pinal
 
I do not think doing an entry into hostfile is a solution. 127.0.0.1 is loopback IP, it must work without an host file entry. It is working for me on many server.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal</p>
<p>I do not think doing an entry into hostfile is a solution. 127.0.0.1 is loopback IP, it must work without an host file entry. It is working for me on many server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lil_kid</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-342665</link>
		<dc:creator><![CDATA[lil_kid]]></dc:creator>
		<pubDate>Tue, 11 Sep 2012 00:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-342665</guid>
		<description><![CDATA[You can keep laughing but there is nothing wrong with using loopback IP (for localhost) in the host file.]]></description>
		<content:encoded><![CDATA[<p>You can keep laughing but there is nothing wrong with using loopback IP (for localhost) in the host file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.sqlauthority.com/2012/09/06/sql-server-fix-error-cannot-connect-to-login-failed-the-login-is-from-an-untrusted-domain-and-cannot-be-used-with-windows-authentication-microsoft-sql-server-error-18452/#comment-341537</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Thu, 06 Sep 2012 15:18:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20606#comment-341537</guid>
		<description><![CDATA[I was laughing because you put in the loop back IP as your IP. Probably you should do a IPCONFIG and put in that IP as your IP.]]></description>
		<content:encoded><![CDATA[<p>I was laughing because you put in the loop back IP as your IP. Probably you should do a IPCONFIG and put in that IP as your IP.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
